.section.product .h2 {
    margin-bottom: 20px;
    display: block;
    width: 100%;
}

.section.product .price {
    font-size: 22px;
    color: #394445;
    margin-bottom: 20px;
    display: block;
    width: 100%;    
    display: none;
}

.product-gallery {
    width: 40%;
    float: left;
    overflow: hidden;
}

.product-gallery .absolute.product-gallery {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}

.product-gallery .absolute.product-gallery.active {
    visibility: visible;
    opacity: 1;
}



.product-gallery.active a {
    display: block;
}

.product-gallery .img-wrapper {
    float: left;
    width: 100%;
}


.product-gallery .img-container {
    aspect-ratio: 4/3;
    background-color: white;
    border: 1px solid #d8c9ba;
    overflow: hidden;
}

.product-gallery .img-container a, .product-gallery .img-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.product-gallery .img-container img {
    object-fit: contain;
}

.section.product .gallery-nav {
    width: 100%;
    display: flex;
    clear: both;
    float: left;
    border: 1px solid #d8c9ba;
    background-color: white;
    overflow-x: auto;
    margin-top: 20px;
}


.section.product .gallery-nav li {
    width: 100%;
    min-width: 33.333%;
    display: block;
    float: left;
    border-right: 1px solid #d8c9ba;
}

.section.product .gallery-nav li:last-child {
    border-right: none;
}

.section.product .gallery-nav li a {
    float: left;
    width: 100%;
    aspect-ratio: 4/3;
    background-color: white;
    position: relative;
    
}

.section.product .gallery-nav li a img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: contain;
}

.product-info {
    width: 60%;
    float: left;
    padding-left: 48px;
}

.section.product .tab-nav, .section.product .avibility {
    display: none;
}