/* ==========================================================
   MH EVO - Single Product
   ========================================================== */

.mh-single-product{
    padding:40px 0;
}

.mh-container{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

.mh-product{
    display:grid;
    grid-template-columns:58% 42%;
    gap:48px;
    align-items:start;
}

.mh-product__gallery,
.mh-product__summary{
    min-width:0;
}

/* ==========================================================
   WooCommerce Gallery
   ========================================================== */

.mh-product .woocommerce-product-gallery{
    width:100%;
    float:none;
    margin:0;

    padding:8px;
    background:#fff;
    border:1px solid rgba(108,77,230,.18);
    border-radius:20px;
    box-shadow:0 8px 24px rgba(108,77,230,.08);
}

.mh-product .summary{
    width:100%;
    float:none;
    margin:0;
}

/* ==========================================================
   Gallery Main Image
   ========================================================== */

.mh-product .woocommerce-product-gallery__wrapper img{
    display:block;
    width:100%;
    height:auto;
    border-radius:16px;
}

/* ==========================================================
   Gallery Thumbnails
   ========================================================== */

.mh-product .flex-control-thumbs{
    display:flex;
    flex-wrap:nowrap;
    justify-content:space-between;
    align-items:center;
    gap:10px;
    margin:16px 0 0;
    padding:0;
    list-style:none;
}

.mh-product .flex-control-thumbs li{
    flex:1;
    min-width:0;
    margin:0;
}

.mh-product .flex-control-thumbs img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    display:block;
    border-radius:12px;
    cursor:pointer;
    transition:all .25s ease;
}

.mh-product .flex-control-thumbs img:hover{
    opacity:.9;
    transform:translateY(-2px);
}

.mh-product .flex-control-thumbs img.flex-active{
    border:2px solid #6C4DE6;
    border-radius:12px;
    box-sizing:border-box;
    box-shadow:0 6px 18px rgba(108,77,230,.18);
}

/* ==========================================================
   Responsive
   ========================================================== */

@media (max-width:768px){

    .mh-single-product{
        padding:24px 0;
    }

    .mh-product{
        grid-template-columns:1fr;
        gap:32px;
    }

}