/* =========================================================
   PRODUCT PAGE
========================================================= */

.product-page{

    max-width:1400px;

    margin:70px auto;

    padding:0 24px;

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:70px;

    align-items:start;
}



/* =========================================================
   GALLERY
========================================================= */

.product-gallery{

    position:sticky;

    top:120px;
}

.main-product-image{

    width:100%;

    background:transparent !important;

    border:1px solid #ece8df;

    border-radius:0px;

    overflow:hidden;



    padding:40px;
}

.main-product-image img{

    width:100%;

    height:620px;

    object-fit:contain;

    transition:.35s ease;
}



/* =========================================================
   THUMBNAILS
========================================================= */

.product-thumbnails{

    margin-top:22px;

    display:flex;

    gap:14px;

    flex-wrap:wrap;
}

.thumb-btn{

    width:92px;
    height:92px;

    border:none;

    border-radius:0px;

    overflow:hidden;

    cursor:pointer;

    background:#fff;

    border:2px solid transparent;

    transition:.25s ease;

    padding:8px;

    box-shadow:0 4px 15px rgba(0,0,0,.04);
}

.thumb-btn:hover{

    transform:translateY(-4px);

    border-color:var(--color-primary);
}

.thumb-btn img{

    width:100%;
    height:100%;

    object-fit:cover;

    border-radius:0px;
}



/* =========================================================
   INFO
========================================================= */

.product-info{

    padding-top:20px;
}

.product-info h1{

    font-size:42px;

    font-weight:800;

    line-height:1.6;

    margin-bottom:24px;

    color:#1d1d1d;
}

.product-description{

    color:#777;

    line-height:2.3;

    font-size:16px;

    margin-bottom:45px;
}



/* =========================================================
   SECTION TITLE
========================================================= */

.product-colors h5,
.product-variants h5{

    font-size:17px;

    font-weight:700;

    margin-bottom:18px;

    color:#111;
}



/* =========================================================
   COLOR OPTIONS
========================================================= */

.color-options{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

    margin-bottom:45px;
}

.color-option{

    border:none;

    background:#fff;

    border:1px solid #ece8df;

    border-radius:0PX;

    padding:12px;

    cursor:pointer;

    transition:.25s ease;

    display:flex;

    align-items:center;

    gap:12px;

    min-width:150px;

    box-shadow:0 4px 14px rgba(0,0,0,.03);
}

.color-option:hover{

    transform:translateY(-3px);

    border-color:var(--color-primary);
}

.color-option.active{

    border-color:var(--color-primary);

    background:#faf6ef;

    box-shadow:0 8px 24px rgba(0,0,0,.07);
}

.color-option img{

    width:58px;
    height:58px;

    object-fit:cover;

    border-radius:0px;

    flex-shrink:0;
}

.color-option span{

    font-size:14px;

    font-weight:700;

    color:#222;
}



/* =========================================================
   VARIANT OPTIONS
========================================================= */

.product-variants{

    margin-bottom:45px;
}

.variant-options{

    display:flex;

    flex-wrap:wrap;

    gap:14px;
}

.variant-option{

    border:none;

    background:#fff;

    border:1px solid #ece8df;

    border-radius:0px;

    padding:16px 22px;

    cursor:pointer;

    transition:.25s ease;

    font-size:15px;

    font-weight:700;

    min-width:140px;

    text-align:center;

    box-shadow:0 4px 14px rgba(0,0,0,.03);
}

.variant-option:hover{

    transform:translateY(-3px);

    border-color:var(--color-primary);
}

.variant-option.active{

    background:var(--color-primary);

    color:#fff;

    border-color:var(--color-primary);

    box-shadow:0 10px 25px rgba(0,0,0,.08);
}



/* =========================================================
   PRICE
========================================================= */

.product-price-box{

    background:#faf7f1;

    border:1px solid #eee4d6;

    border-radius:0px;

    padding:28px 32px;

    margin-bottom:28px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;
}

.product-price-box span{

    color:#777;

    font-size:15px;
}

.product-price-box strong{

    font-size:34px;

    color:var(--color-primary);

    font-weight:800;
}



/* =========================================================
   CTA BUTTON
========================================================= */

.contact-order-btn{

    width:100%;

    height:62px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:0px;

    background:var(--color-primary);

    color:#fff;

    font-size:17px;

    font-weight:700;

    transition:.3s ease;

    margin-bottom:38px;

    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.contact-order-btn:hover{

    background:var(--color-primary-dark);

    transform:translateY(-3px);
}



/* =========================================================
   FEATURES
========================================================= */

.product-features{

    display:flex;

    flex-direction:column;

    gap:14px;
}

.feature-item{

    background:#fff;

    border:1px solid #efefef;

    border-radius:0px;

    padding:18px 22px;

    color:#666;

    font-size:14px;

    box-shadow:0 4px 14px rgba(0,0,0,.03);
}



/* =========================================================
   MOBILE
========================================================= */

@media(max-width:1100px){

    .product-page{

        grid-template-columns:1fr;

        gap:50px;
    }

    .product-gallery{

        position:relative;

        top:auto;
    }

    .main-product-image img{

        height:480px;
    }
}

@media(max-width:768px){

    .product-page{

        margin:40px auto;

        padding:0 16px;
    }

    .main-product-image{

        padding:20px;

        border-radius:0px;
    }

    .main-product-image img{

        height:320px;
    }

    .product-info h1{

        font-size:28px;
    }

    .product-price-box{

        flex-direction:column;

        align-items:flex-start;
    }

    .product-price-box strong{

        font-size:28px;
    }

    .variant-option{

        width:100%;
    }

    .color-option{

        width:100%;
    }

    .thumb-btn{

        width:74px;
        height:74px;
    }
    .main-product-image{
        padding-left: 0;
        padding-right: 0;
    }
}



/* =========================================================
   GALLERY
========================================================= */

.product-gallery{
    display:flex;
    flex-direction:column;
    gap:20px;
    width:100%;
}

/* =========================================================
   MAIN IMAGE
========================================================= */

.main-product-image{
    position:relative;
    width:100%;
    height:550px;
    background:#fff;
    border-radius:0px;
    overflow:hidden;
    border:1px solid #eee;

    display:flex;
    align-items:center;
    justify-content:center;
}

.main-product-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:.3s;
}

/* =========================================================
   NAV BUTTONS
========================================================= */

.gallery-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);

    width:45px;
    height:45px;

    border:none;
    border-radius:0px;

    background:rgba(255,255,255,.9);

    box-shadow:0 4px 12px rgba(0,0,0,.1);

    font-size:28px;
    cursor:pointer;

    z-index:10;

    transition:.2s;
}

.gallery-nav:hover{
    background:#111;
    color:#fff;
}

.prev-btn{
    left:15px;
}

.next-btn{
    right:15px;
}

/* =========================================================
   THUMBNAILS
========================================================= */

.product-thumbnails{
    display:flex;
    gap:12px;

    overflow-x:auto;
    padding-bottom:5px;

    scrollbar-width:none;
}

.product-thumbnails::-webkit-scrollbar{
    display:none;
}

/* =========================================================
   THUMB BUTTON
========================================================= */

.thumb-btn{
    min-width:90px;
    width:90px;
    height:90px;

    border-radius:0px;
    overflow:hidden;

    border:2px solid transparent;

    background:#fff;

    cursor:pointer;

    transition:.25s;

    padding:0;

    flex-shrink:0;
}

.thumb-btn img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.thumb-btn:hover{
    transform:translateY(-3px);
    border-color:#ddd;
}

.thumb-btn.active{
    border-color:#111;
}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

    .main-product-image{
        height:380px;
        border-radius:0px;
    }

    .gallery-nav{
        width:38px;
        height:38px;
        font-size:22px;
    }

    .thumb-btn{
        min-width:75px;
        width:75px;
        height:75px;
    }

}