/*==================================================
                UZAYO SHOP.CSS
                PART 1
==================================================*/


/*======================================
                SHOP HERO
======================================*/

.shop-hero{

    padding:140px 0 90px;

    background:linear-gradient(
        180deg,
        #faf9f7 0%,
        #ffffff 100%
    );

    text-align:center;

}

.shop-tag{

    display:inline-block;

    color:var(--color-gold);

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:.85rem;

    font-weight:600;

    margin-bottom:20px;

}

.shop-hero h1{

    font-family:var(--font-heading);

    font-size:clamp(3.5rem,6vw,5.5rem);

    line-height:1;

    margin-bottom:28px;

    color:var(--color-black);

}

.shop-hero p{

    max-width:720px;

    margin:auto;

    color:var(--color-grey-600);

    line-height:1.9;

    font-size:1.05rem;

}



/*======================================
            TOOLBAR
======================================*/

.shop-toolbar{

    background:white;

    padding:35px 0;

    border-top:1px solid rgba(0,0,0,.06);

    border-bottom:1px solid rgba(0,0,0,.06);

}

.toolbar-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;

    flex-wrap:wrap;

}



/*======================================
            FILTERS
======================================*/

.shop-filters{

    display:flex;

    gap:16px;

    flex-wrap:wrap;

}

.filter-btn{

    padding:14px 28px;

    border:none;

    border-radius:50px;

    background:#f5f5f5;

    color:#222;

    cursor:pointer;

    font-size:.9rem;

    font-weight:600;

    transition:.35s ease;

}

.filter-btn:hover{

    background:var(--color-black);

    color:white;

}



/*======================================
            SORT
======================================*/

.shop-sort{

    display:flex;

    align-items:center;

    gap:15px;

}

.shop-sort label{

    font-weight:600;

    color:#444;

}

.shop-sort select{

    padding:12px 18px;

    border-radius:50px;

    border:1px solid rgba(0,0,0,.12);

    background:white;

    font-size:.95rem;

    cursor:pointer;

    transition:.35s ease;

}

.shop-sort select:focus{

    outline:none;

    border-color:var(--color-gold);

}
/*==================================================
                UZAYO SHOP.CSS
                PART 2
==================================================*/


/*======================================
            PRODUCT SECTION
======================================*/

.shop-products{

    padding:90px 0 140px;

    background:var(--color-light);

}



/*======================================
            PRODUCT GRID
======================================*/

.product-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:40px;

}



/*======================================
            PRODUCT CARD
======================================*/

.product-card{

    background:white;

    border-radius:28px;

    overflow:hidden;

    box-shadow:0 18px 45px rgba(0,0,0,.05);

    transition:.4s ease;

    position:relative;

}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 35px 80px rgba(0,0,0,.10);

}



/*======================================
            IMAGE
======================================*/

.product-image{

    position:relative;

    overflow:hidden;

    aspect-ratio:1/1.15;

    background:#f8f8f8;

}

.product-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .6s ease;

}

.product-card:hover img{

    transform:scale(1.08);

}



/*======================================
            BADGE
======================================*/

.product-badge{

    position:absolute;

    top:20px;

    left:20px;

    padding:8px 16px;

    background:var(--color-gold);

    color:white;

    border-radius:50px;

    font-size:.72rem;

    font-weight:700;

    letter-spacing:1px;

}



/*======================================
            OVERLAY
======================================*/

.product-overlay{

    position:absolute;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:flex-end;

    padding:25px;

    background:linear-gradient(

        transparent,

        rgba(0,0,0,.45)

    );

    opacity:0;

    transition:.35s ease;

}

.product-card:hover .product-overlay{

    opacity:1;

}



/*======================================
        QUICK VIEW BUTTON
======================================*/

.quick-view{

    width:100%;

    text-align:center;

    text-decoration:none;

    padding:14px;

    background:white;

    color:var(--color-black);

    border-radius:50px;

    font-weight:600;

    transition:.35s ease;

}

.quick-view:hover{

    background:var(--color-gold);

    color:white;

}
/*==================================================
                UZAYO SHOP.CSS
                PART 3
==================================================*/


/*======================================
            PRODUCT INFO
======================================*/

.product-info{

    padding:30px;

    display:flex;

    flex-direction:column;

    gap:18px;

}

.product-info h3{

    font-family:var(--font-heading);

    font-size:1.4rem;

    color:var(--color-black);

    line-height:1.3;

    transition:.3s ease;

}

.product-card:hover .product-info h3{

    color:var(--color-gold);

}



/*======================================
            PRICE
======================================*/

.product-price{

    font-size:1.2rem;

    font-weight:700;

    color:var(--color-black);

    margin-top:-6px;

}



/*======================================
        ADD TO CART
======================================*/

.add-cart-btn{

    display:flex;

    justify-content:center;

    align-items:center;

    height:52px;

    border-radius:50px;

    text-decoration:none;

    background:var(--color-black);

    color:white;

    font-weight:600;

    letter-spacing:.5px;

    transition:.35s ease;

}

.add-cart-btn:hover{

    background:var(--color-gold);

    transform:translateY(-2px);

}



/*======================================
        CARD SHINE
======================================*/

.product-card::before{

    content:"";

    position:absolute;

    top:0;

    left:-130%;

    width:60%;

    height:100%;

    background:

        linear-gradient(

            90deg,

            transparent,

            rgba(255,255,255,.35),

            transparent

        );

    transform:skewX(-20deg);

    transition:.8s ease;

}

.product-card:hover::before{

    left:160%;

}



/*======================================
        IMAGE SHADOW
======================================*/

.product-image::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        transparent 60%,

        rgba(0,0,0,.06)

    );

    pointer-events:none;

}



/*======================================
        RESPONSIVE
======================================*/

@media(max-width:1200px){

.product-grid{

grid-template-columns:repeat(3,1fr);

}

}



@media(max-width:900px){

.product-grid{

grid-template-columns:repeat(2,1fr);

gap:30px;

}

}



@media(max-width:600px){

.product-grid{

grid-template-columns:1fr;

}

.product-info{

padding:24px;

}

.product-info h3{

font-size:1.2rem;

}

.product-price{

font-size:1.05rem;

}

.add-cart-btn{

height:48px;

}

}



/*======================================
        ACCESSIBILITY
======================================*/

.quick-view:focus-visible,

.add-cart-btn:focus-visible{

outline:3px solid var(--color-gold);

outline-offset:4px;

}



/*======================================
        PERFORMANCE
======================================*/

.product-card,

.product-image img{

will-change:transform;

}



/*======================================
        FINAL POLISH
======================================*/

.product-card{

isolation:isolate;

}

.product-card>*{

position:relative;

z-index:2;

}

/* ==================================================
   UZAYO TRIO — £49.99 COMBO OFFER
================================================== */

.combo-offer {
    width: min(1400px, 92%);
    margin: 70px auto 80px;
    padding: 55px;
    box-sizing: border-box;

    display: grid;
    grid-template-columns: 1fr 1.15fr;
    align-items: center;
    gap: 60px;

    background: #111111;
    border-radius: 28px;

    position: relative;
    overflow: hidden;

    color: #ffffff;
}


/* GOLD GLOW */

.combo-offer::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -300px;
    right: -150px;

    border-radius: 50%;

    background: rgba(184, 155, 94, 0.16);

    filter: blur(80px);

    pointer-events: none;
}


/* LEFT CONTENT */

.combo-content {
    position: relative;
    z-index: 2;
}


.combo-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 18px;

    color: #c5a15c;

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 3px;
}


.combo-eyebrow::before {
    content: "";

    width: 35px;
    height: 1px;

    background: #c5a15c;
}


.combo-content h2 {
    margin: 0 0 18px;

    font-family: var(--font-heading);

    font-size: clamp(2.8rem, 5vw, 4.5rem);

    line-height: 0.95;

    letter-spacing: -2px;

    color: #ffffff;
}


.combo-description {
    max-width: 500px;

    margin: 0 0 25px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 0.95rem;

    line-height: 1.8;
}


.combo-description strong {
    color: #ffffff;
}


/* ==================================================
   PRICE
================================================== */

.combo-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 30px;
}


.combo-old-price {
    color: rgba(255, 255, 255, 0.4);

    font-size: 1rem;

    text-decoration: line-through;
}


.combo-new-price {
    color: #c5a15c;

    font-family: var(--font-heading);

    font-size: 2rem;

    font-weight: 700;
}


.combo-saving {
    padding: 7px 12px;

    border: 1px solid rgba(197, 161, 92, 0.4);

    border-radius: 999px;

    color: #c5a15c;

    font-size: 0.65rem;

    font-weight: 700;

    letter-spacing: 1px;
}


/* ==================================================
   BUTTON
================================================== */

.combo-button {
    display: inline-flex;
    align-items: center;

    gap: 15px;

    padding: 16px 28px;

    border-radius: 999px;

    background: #ffffff;

    color: #111111;

    text-decoration: none;

    font-size: 0.72rem;

    font-weight: 700;

    letter-spacing: 1.5px;

    transition: 0.35s ease;
}


.combo-button span {
    font-size: 1.1rem;

    transition: 0.35s ease;
}


.combo-button:hover {
    background: #c5a15c;

    color: #ffffff;

    transform: translateY(-3px);
}


.combo-button:hover span {
    transform: translateX(5px);
}


/* ==================================================
   THREE PRODUCT IMAGES
================================================== */

.combo-products {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 16px;

    position: relative;

    z-index: 2;
}


.combo-product {
    position: relative;

    overflow: hidden;

    border-radius: 18px;

    background: #222222;
}


.combo-product img {
    display: block;

    width: 100%;

    aspect-ratio: 3 / 4;

    object-fit: cover;

    transition: 0.6s ease;
}


.combo-product:hover img {
    transform: scale(1.05);
}


.combo-product span {
    position: absolute;

    left: 15px;
    bottom: 15px;

    color: #ffffff;

    font-size: 0.62rem;

    font-weight: 700;

    letter-spacing: 1.2px;

    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1000px) {

    .combo-offer {
        grid-template-columns: 1fr;

        gap: 40px;

        padding: 45px;
    }

    .combo-description {
        max-width: 650px;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

    .combo-offer {
        width: calc(100% - 30px);

        margin: 45px auto 55px;

        padding: 30px 22px;

        border-radius: 22px;
    }


    .combo-content h2 {
        font-size: 3rem;
    }


    .combo-products {
        gap: 8px;
    }


    .combo-product {
        border-radius: 12px;
    }


    .combo-product span {
        left: 8px;

        bottom: 8px;

        font-size: 0.5rem;
    }


    .combo-price {
        gap: 10px;
    }

}

/* ==================================================
   COMPACT SIZE GUIDE
================================================== */

.size-guide-link {
    padding: 15px 0 5px;
}

.size-guide-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 20px 25px;

    background: #f7f6f3;

    border: 1px solid rgba(0, 0, 0, 0.07);

    border-radius: 14px;
}

.size-guide-text span {
    display: block;

    margin-bottom: 5px;

    color: #b89b5e;

    font-size: 0.6rem;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.size-guide-text h2 {
    margin: 0 0 4px;

    font-family: var(--font-heading);

    font-size: 1.3rem;

    color: var(--color-black);
}

.size-guide-text p {
    margin: 0;

    color: var(--color-grey-600);

    font-size: 0.8rem;

    line-height: 1.4;
}

.size-guide-button {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    flex-shrink: 0;

    padding: 11px 18px;

    border-radius: 999px;

    background: #111;

    color: #fff;

    text-decoration: none;

    font-size: 0.62rem;

    font-weight: 700;

    letter-spacing: 1.2px;

    transition: 0.3s ease;
}

.size-guide-button span {
    font-size: 0.9rem;

    transition: 0.3s ease;
}

.size-guide-button:hover {
    background: #b89b5e;

    transform: translateY(-2px);
}

.size-guide-button:hover span {
    transform: translateX(4px);
}


/* MOBILE */

@media (max-width: 700px) {

    .size-guide-box {
        padding: 18px 20px;

        gap: 15px;
    }

    .size-guide-text h2 {
        font-size: 1.15rem;
    }

    .size-guide-text p {
        font-size: 0.75rem;
    }

    .size-guide-button {
        padding: 10px 15px;
    }

}

/* =========================================
   QUICK VIEW MODAL
========================================= */

.quick-view-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    visibility: hidden;
    opacity: 0;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.quick-view-modal.active {
    visibility: visible;
    opacity: 1;
}


/* BACKDROP */

.quick-view-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.65);

    backdrop-filter: blur(5px);
}


/* MODAL */

.quick-view-content {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 1fr;

    width: min(850px, 100%);
    max-height: 90vh;

    overflow: auto;

    background: #ffffff;

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.25);

    transform:
        translateY(20px)
        scale(0.98);

    transition:
        transform 0.3s ease;
}

.quick-view-modal.active .quick-view-content {
    transform:
        translateY(0)
        scale(1);
}


/* CLOSE BUTTON */

.quick-view-close {
    position: absolute;

    top: 15px;
    right: 15px;

    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.95);

    color: #111111;

    cursor: pointer;

    font-size: 25px;
    line-height: 1;

    transition: 0.2s ease;
}

.quick-view-close:hover {
    background: #111111;
    color: #ffffff;
}


/* PRODUCT IMAGE */

.quick-view-image {
    min-height: 500px;

    background: #f5f5f3;

    overflow: hidden;
}

.quick-view-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* PRODUCT DETAILS */

.quick-view-details {
    display: flex;

    flex-direction: column;
    justify-content: center;

    padding: 55px 45px;
}

.quick-view-eyebrow {
    display: block;

    margin-bottom: 12px;

    color: #b89b5e;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}

.quick-view-details h2 {
    margin: 0 0 12px;

    color: #111111;

    font-family: "Playfair Display", serif;

    font-size: 32px;
    font-weight: 500;

    line-height: 1.2;
}

.quick-view-price {
    margin: 0 0 22px;

    color: #555555;

    font-size: 16px;
    font-weight: 500;
}

.quick-view-description {
    margin: 0 0 30px;

    color: #777777;

    font-size: 13px;

    line-height: 1.8;
}


/* SIZE */

.quick-view-size {
    margin-bottom: 25px;
}

.quick-view-size-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 9px;
}

.quick-view-size-header label {
    color: #555555;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.quick-view-size-header a {
    color: #888888;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 1px;

    text-decoration: underline;
}

.quick-view-size select {
    width: 100%;
    height: 48px;

    box-sizing: border-box;

    padding: 0 14px;

    border: 1px solid #ddddda;

    outline: none;

    background: #fafaf8;

    color: #222222;

    cursor: pointer;

    font-family: inherit;

    font-size: 13px;
}

.quick-view-size select:focus {
    border-color: #111111;
}


/* ADD TO BAG */

.quick-view-add {
    display: flex;

    align-items: center;
    justify-content: space-between;

    width: 100%;

    box-sizing: border-box;

    padding: 16px 20px;

    background: #111111;

    color: #ffffff;

    text-decoration: none;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;

    transition: 0.3s ease;
}

.quick-view-add span {
    transition: transform 0.3s ease;
}

.quick-view-add:hover {
    background: #b89b5e;
}

.quick-view-add:hover span {
    transform: translateX(5px);
}


/* FULL PRODUCT */

.quick-view-full-product {
    display: block;

    margin-top: 15px;

    color: #777777;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.2px;

    text-align: center;

    text-decoration: underline;

    transition: 0.2s ease;
}

.quick-view-full-product:hover {
    color: #111111;
}


/* PREVENT PAGE SCROLL WHEN OPEN */

body.quick-view-open {
    overflow: hidden;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .quick-view-modal {
        padding: 15px;
    }

    .quick-view-content {
        grid-template-columns: 1fr;

        max-height: 92vh;

        overflow-y: auto;
    }

    .quick-view-image {
        min-height: 300px;
        height: 300px;
    }

    .quick-view-details {
        padding: 30px 25px 35px;
    }

    .quick-view-details h2 {
        font-size: 27px;
    }

    .quick-view-close {
        top: 10px;
        right: 10px;
    }

}

/* =========================================
   VIEW FULL PRODUCT LINK
========================================= */

.view-full-product {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 12px;

    color: #111111;

    font-size: 0.68rem;
    font-weight: 700;

    letter-spacing: 1.2px;
    text-transform: uppercase;

    text-decoration: none;

    transition: 0.25s ease;
}

.view-full-product span {
    transition: 0.25s ease;
}

.view-full-product:hover {
    color: #b89b5e;
}

.view-full-product:hover span {
    transform: translateX(5px);
}