/*=====================================
        BONDOK LUXURY WEBSITE
======================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#0B0B0B;
    color:#fff;
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    animation:fadeBody .8s ease;
}
:root{
    --site-scale: .88;
}

body{
    zoom: var(--site-scale);
}
img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:#fff;
}

button{
    cursor:pointer;
    border:none;
    transition:.35s;
}

/*=====================================
            NAVBAR
======================================*/

.navbar{
    width:100%;
    height:90px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 8%;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    background:rgba(11,11,11,.88);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,.05);
    gap:30px;
}

/*=====================================
            PREMIUM LOGO
======================================*/

.logo{
    display:flex;
    flex-direction:column;
    justify-content:center;
    text-decoration:none;
    user-select:none;
}

.logo-main{
    font-family:'Cinzel',serif;
    font-size:40px;
    font-weight:600;
    letter-spacing:12px;
    text-transform:uppercase;
    color:#f5f5f5;
    line-height:1;
    transition:.35s;
}

.logo-main::first-letter{
    color:#C9A227;
    font-size:48px;
}

.logo-sub{
    margin-top:2px;
    margin-left:6px;
    font-family:'Poppins',sans-serif;
    font-size:13px;
    font-weight:500;
    letter-spacing:5px;
    text-transform:uppercase;
    color:#C9A227;
    transition:.35s;
}

.logo:hover .logo-main{
    color:#C9A227;
}

.logo:hover .logo-sub{
    color:#d8d8d8;
}

/*=====================================
        PREMIUM NAVIGATION
======================================*/

nav{
    display:flex;
    justify-content:center;
    align-items:center;
    flex:1;
    gap:28px;
}

nav a{
    position:relative;
    color:#e6e6e6;
    font-family:'Poppins',sans-serif;
    font-size:14px;      /* كانت 16px */
    font-weight:500;
    letter-spacing:1px;  /* كانت 2px */
    text-transform:uppercase;
    padding:10px 0;
    transition:.35s;
}

nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:2px;
    background:#C9A227;
    transition:.35s;
}

nav a:hover{
    color:#C9A227;
}

nav a:hover::after{
    width:100%;
}

/*=====================================
        PREMIUM HEADER SOCIALS
======================================*/

.social-links{
    display:flex;
    align-items:center;
    gap:18px;
}

.social-links a{
    width:42px;
    height:42px;
    display:flex;
    justify-content:center;
    align-items:center;
    border:1px solid rgba(201,162,39,.5);
    border-radius:50%;
    color:#C9A227;
    font-size:19px;
    background:rgba(255,255,255,.02);
    transition:.4s;
}

.social-links a:hover{
    background:#C9A227;
    color:#000;
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(201,162,39,.35);
}

/*=====================================
            HERO
======================================*/

.hero{
    min-height:75vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:120px 8% 50px;
    background-image:url("../assets/images/hero-bg.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    position:relative;
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to bottom,
        rgba(0,0,0,.25),
        rgba(0,0,0,.60)
    );
}

.hero-text{
    width:100%;
    max-width:850px;
    margin:auto;
    position:relative;
    z-index:2;
}

.hero-text span{
    color:#C9A227;
    letter-spacing:5px;
    text-transform:uppercase;
    font-size:15px;
}

.hero-text h1{
    font-family:'Cinzel',serif;
    font-size:88px;
    line-height:1.1;
    letter-spacing:8px;
    margin:25px 0;
}

.hero-text p{
    max-width:650px;
    margin:25px auto;
    color:#ddd;
    font-size:18px;
    line-height:1.9;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:45px;
    position:relative;
    z-index:2;
}

.hero-buttons button{
    padding:18px 42px;
    border-radius:50px;
    background:#C9A227;
    color:#000;
    font-size:16px;
    font-weight:600;
}

.hero-buttons button:hover{
    transform:translateY(-5px);
}

.outline{
    background:transparent !important;
    border:1px solid #C9A227;
    color:#C9A227 !important;
}
/*=====================================
        SECTION TITLE
======================================*/

.section-title{
    text-align:center;
    margin-bottom:35px;
}

.section-title span{
    color:#C9A227;
    letter-spacing:3px;
    text-transform:uppercase;
}

.section-title h2{
    font-family:'Cinzel',serif;
    font-size:48px;
    margin-top:15px;
}

/*=====================================
        COLLECTION
======================================*/

.collection{
    padding:40px 8% 40px;
}

.filter-buttons{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
    margin-bottom:30px;
}

.filter-btn{
    padding:12px 28px;
    border-radius:50px;
    background:transparent;
    border:1px solid #C9A227;
    color:#C9A227;
    font-size:15px;
    font-weight:600;
    transition:.35s;
}

.filter-btn:hover{
    background:#C9A227;
    color:#000;
}

.filter-btn.active{
    background:#C9A227;
    color:#000;
}

.collection-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.perfume-card{
    background:rgba(15,15,15,.75);
    backdrop-filter:blur(10px);
    border:1px solid rgba(201,162,39,.18);
    border-radius:24px;
    padding:30px;
    text-align:center;
    transition:.4s;
}

.perfume-card:hover{
    transform:translateY(-12px);
    border-color:#C9A227;
    box-shadow:0 20px 50px rgba(201,162,39,.15);
}

.perfume-card img{
    height:260px;
    margin:auto;
    object-fit:contain;
    filter:drop-shadow(0 20px 30px rgba(0,0,0,.6));
}

.perfume-card:hover img{
    transform:scale(1.08);
}

.perfume-category{
    display:inline-block;
    padding:6px 14px;
    margin-bottom:12px;
    border-radius:30px;
    background:#C9A227;
    color:#111;
    font-size:12px;
    font-weight:600;
    letter-spacing:.5px;
    text-transform:uppercase;
}

.perfume-card h3{
    font-family:'Cinzel',serif;
    font-size:24px;
    margin:18px 0 8px;
}

.perfume-card p{
    color:#aaa;
    margin-bottom:18px;
    line-height:1.6;
}

.perfume-card button{
    background:#C9A227;
    color:#000;
    padding:14px 28px;
    border-radius:40px;
    font-weight:600;
}
/*=====================================
            STORY
======================================*/

.story{
    padding:70px 8%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.story-content{
    max-width:900px;
}

.story-content span{
    color:#C9A227;
    letter-spacing:3px;
    text-transform:uppercase;
}

.story-content h2{
    font-family:'Cinzel',serif;
    font-size:52px;
    line-height:1.3;
    margin:25px 0;
}

.story-content p{
    color:#bdbdbd;
    font-size:18px;
    line-height:2;
}

/*=====================================
            GALLERY SLIDER
======================================*/

.gallery-section{
    padding:70px 8%;
    background:#080808;
}

.gallery-section h2{
    text-align:center;
    font-family:'Cinzel',serif;
    font-size:48px;
    color:#C9A227;
    margin-bottom:40px;
}

.gallery-slider{
    position:relative;
    width:100%;
    display:flex;
    align-items:center;
    padding:0 20px;
}

.gallery-grid{
    width:100%;
    display:flex;
    gap:25px;
    overflow-x:auto;
    overflow-y:hidden;
    scroll-behavior:smooth;
    scrollbar-width:none;
}

.gallery-grid::-webkit-scrollbar{
    display:none;
}

.gallery-card{
    flex:0 0 calc(25% - 19px);
    height:350px;
}

.gallery-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:20px;
    border:1px solid rgba(201,162,39,.25);
    transition:.4s;
}

.gallery-card img:hover{
    transform:scale(1.05);
    border-color:#C9A227;
}

.gallery-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:50px;
    height:50px;
    border-radius:50%;
    background:#C9A227;
    color:#000;
    border:none;
    font-size:30px;
    font-weight:bold;
    z-index:20;
    display:flex;
    align-items:center;
    justify-content:center;
}

.gallery-btn.prev{
    left:-5px;
}

.gallery-btn.next{
    right:-5px;
}

.gallery-btn:hover{
    background:#fff;
    transform:translateY(-50%) scale(1.1);
}

@media(max-width:768px){

    .gallery-slider{
        padding:0 45px;
    }

    .gallery-card{
        flex:0 0 100%;
        height:320px;
    }

    .gallery-btn{
        width:40px;
        height:40px;
        font-size:22px;
    }

    .gallery-btn.prev{
        left:0;
    }

    .gallery-btn.next{
        right:0;
    }
}
/*=====================================
            CONTACT
======================================*/

.contact{
    padding:70px 8%;
}

.contact-box{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
}

.contact-card{
    background:#151515;
    border:1px solid #262626;
    border-radius:20px;
    padding:40px;
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    transition:.35s;
}

.contact-card:hover{
    transform:translateY(-8px);
    border-color:#C9A227;
}

.contact-card h3{
    color:#C9A227;
    font-size:24px;
    margin-bottom:15px;
}

.contact-card p{
    color:#d4d4d4;
    line-height:1.8;
}

/*=====================================
            FOOTER
======================================*/

footer{
    padding:70px 8%;
    text-align:center;
    border-top:1px solid #1f1f1f;
    background:#090909;
}

footer h2{
    font-family:'Cinzel',serif;
    color:#C9A227;
    font-size:40px;
    letter-spacing:5px;
    margin-bottom:15px;
}

footer p{
    color:#bdbdbd;
    margin-bottom:12px;
}

footer span{
    color:#777;
    font-size:14px;
}

/*=====================================
        SCROLL ANIMATION
======================================*/

.hidden{
    opacity:0;
    transform:translateY(60px);
    transition:all .8s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}

/*=====================================
        BUTTON EFFECT
======================================*/

button{
    transition:.35s;
}

button:hover{
    transform:translateY(-4px);
}

button:active{
    transform:scale(.97);
}

/*=====================================
        PAGE LOADER
======================================*/

@keyframes fadeBody{
    from{
        opacity:0;
    }

    to{
        opacity:1;
    }
}

/*=====================================
            RESPONSIVE
======================================*/

@media(max-width:1200px){

    .hero-text h1{
        font-size:72px;
        letter-spacing:6px;
    }

}

@media(max-width:992px){

    .navbar{
        padding:0 5%;
    }

    nav{
        display:none;
    }

    .social-links{
        display:none;
    }

    .hero{
        padding:140px 6% 90px;
    }

    .hero-text{
        max-width:700px;
    }

    .hero-text h1{
        font-size:60px;
        letter-spacing:5px;
    }

    .collection-grid{
        grid-template-columns:1fr;
    }

    .gallery-card{
        flex:0 0 calc(33.33% - 17px);
    }

    .contact-box{
        flex-direction:column;
    }

}

@media(max-width:768px){

    /* ================= HEADER ================= */

    .navbar{
        height:72px;
        padding:0 18px;
    }

    .logo{
        transform:scale(.90);
        transform-origin:left center;
    }

    .logo-main{
        font-size:30px;
        letter-spacing:5px;
    }

    .logo-main::first-letter{
        font-size:36px;
    }

    .logo-sub{
        font-size:9px;
        letter-spacing:3px;
        margin-left:3px;
    }

    nav,
    .social-links{
        display:none;
    }

    /* ================= HERO ================= */

    .hero{

        min-height:75vh;

        padding:110px 20px 60px;

        background-position:center center;

    }

    .hero-text{

        max-width:100%;

    }

    .hero-text span{

        font-size:12px;

        letter-spacing:3px;

    }

    .hero-text h1{

        font-size:42px;

        letter-spacing:3px;

        margin:18px 0;

    }

    .hero-text p{

        font-size:16px;

        line-height:1.8;

        max-width:320px;

        margin:0 auto 28px;

    }

    .hero-buttons{

        flex-direction:column;

        align-items:center;

        gap:14px;

    }

    .hero-btn,
    .hero-buttons button{

        width:240px;

        padding:15px 0;

        font-size:15px;

    }

    /* ================= COLLECTION ================= */

    .collection{

        padding:70px 20px;

    }

    .filter-buttons{

        display:flex;

        justify-content:center;

        flex-wrap:wrap;

        gap:10px;

        margin-bottom:30px;

    }

    .filter-btn{

        padding:10px 18px;

        font-size:13px;

    }

    .collection-grid{

        gap:22px;

    }

    /* ================= SECTIONS ================= */

    .section-title h2{

        font-size:30px;

    }

    .story-content h2{

        font-size:30px;

    }

    .contact-card{

        padding:24px;

    }

}

    /* ================= HEADER ================= */

    .navbar{
        height:72px;
        padding:0 18px;
    }

    .logo{
        transform:scale(.90);
        transform-origin:left center;
    }

    .logo-main{
        font-size:30px;
        letter-spacing:5px;
    }

    .logo-main::first-letter{
        font-size:36px;
    }

    .logo-sub{
        font-size:9px;
        letter-spacing:3px;
        margin-left:3px;
    }

    nav,
    .social-links{
        display:none;
    }

    /* ================= HERO ================= */

    .hero{

        min-height:75vh;

        padding:110px 20px 60px;

        background-position:65% center;

    }

    .hero-text{

        max-width:100%;

    }

    .hero-text span{

        font-size:12px;

        letter-spacing:3px;

    }

    .hero-text h1{

        font-size:42px;

        letter-spacing:3px;

        margin:18px 0;

    }

    .hero-text p{

        font-size:16px;

        line-height:1.8;

        max-width:320px;

        margin:0 auto 28px;

    }

    .hero-buttons{

        flex-direction:column;

        align-items:center;

        gap:14px;

    }

    .hero-btn,
    .hero-buttons button{

        width:240px;

        padding:15px 0;

        font-size:15px;

    }

    /* ================= SECTIONS ================= */

    .section-title h2{

        font-size:30px;

    }

    .story-content h2{

        font-size:30px;

    }

    .contact-card{

        padding:24px;

    }

}
/*=====================================
        PREMIUM FINISH
======================================*/

/* Scrollbar */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#0B0B0B;
}

::-webkit-scrollbar-thumb{
    background:#C9A227;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#e0bc45;
}

/* Text Selection */

::selection{
    background:#C9A227;
    color:#000;
}

/* Smooth Transitions */

a,
button,
.perfume-card,
.contact-card,
.gallery-grid img,
.filter-btn,
.social-links a{
    transition:all .35s ease;
}

/* Glass Effect */

.perfume-card,
.contact-card{
    backdrop-filter:blur(8px);
}

/* Hover Glow */

.perfume-card:hover,
.contact-card:hover{
    box-shadow:0 15px 35px rgba(201,162,39,.12);
}

.hero-buttons button{
    box-shadow:0 10px 30px rgba(201,162,39,.18);
}

.hero-buttons button:hover{
    box-shadow:0 15px 40px rgba(201,162,39,.30);
}

/* Navbar */

.navbar{
    transition:.35s;
}

/* Titles */

.section-title h2,
.story-content h2,
.hero-text h1{
    text-rendering:optimizeLegibility;
}

/* Images */

.gallery-grid img,
.perfume-card img{
    will-change:transform;
}

.gallery-card,
.gallery-card img{
    opacity:1 !important;
    transform:none !important;
}

/*=====================================
        INNER SECTIONS BACKGROUND
======================================*/

.collection,
.story,
.gallery,
.contact{
    position:relative;
    background-image:
        linear-gradient(
            rgba(8,8,8,.88),
            rgba(8,8,8,.88)
        ),
        url("../assets/images/sections-bg.jpg");
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

/*=====================================
            HERO BUTTONS
======================================*/

.hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 42px;
    border-radius:50px;
    background:#C9A227;
    color:#000;
    font-size:16px;
    font-weight:600;
}

.hero-btn:hover{
    transform:translateY(-5px);
}

.hero-btn.outline{
    background:transparent;
    border:1px solid #C9A227;
    color:#C9A227;
}

/*=====================================
        PREMIUM SCROLL ANIMATION
======================================*/

.fade-up:not(.gallery-card),
.hidden:not(.gallery-card){
    opacity:0;
    transform:translateY(50px);
    transition:
        opacity .9s ease,
        transform .9s ease;
}

.fade-up.show{
    opacity:1;
    transform:translateY(0);
}

.fade-left{
    opacity:0;
    transform:translateX(-50px);
    transition:
        opacity .9s ease,
        transform .9s ease;
}

.fade-left.show{
    opacity:1;
    transform:translateX(0);
}

.fade-right{
    opacity:0;
    transform:translateX(50px);
    transition:
        opacity .9s ease,
        transform .9s ease;
}

.fade-right.show{
    opacity:1;
    transform:translateX(0);
}

/* Product Cards */

.perfume-card{
    opacity:0;
    transform:translateY(40px);
    transition:.8s ease;
}

.perfume-card.show{
    opacity:1;
    transform:translateY(0);
}
/*=====================================
            ORDER BUTTON
======================================*/

.order-btn{
    display:inline-block;
    margin-top:20px;
    padding:12px 28px;
    background:#C9A24D;
    color:#000;
    text-decoration:none;
    font-size:14px;
    letter-spacing:1px;
    border-radius:30px;
    transition:.3s;
}

.order-btn:hover{
    background:#fff;
    transform:translateY(-3px);
}

/*=====================================
        PERFUME SIZE BUTTONS
======================================*/

.perfume-sizes{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:20px;
}

.size-price{
    display:block;
    width:100%;
    text-align:center;
    padding:12px 20px;
    border:1px solid #C9A227;
    color:#C9A227;
    text-decoration:none;
    font-size:14px;
    letter-spacing:1px;
    border-radius:30px;
    background:transparent;
    transition:.3s;
}

.size-price:hover{
    background:#C9A227;
    color:#000;
    transform:translateY(-3px);
}

/*=====================================
        CONTACT SOCIALS
======================================*/

.contact-socials{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:25px;
    margin-top:20px;
}

.contact-socials a{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #C9A227;
    border-radius:50%;
    color:#C9A227;
    text-decoration:none;
    font-size:22px;
    transition:.3s;
}

.contact-socials a:hover{
    background:#C9A227;
    color:#000;
}

/*=====================================
        COLLECTION CARDS V2
======================================*/

.collection-grid{
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.perfume-card{
    min-height:620px;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:center;
    position:relative;
    overflow:hidden;
}

.perfume-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        transparent,
        rgba(201,162,39,.05)
    );
    opacity:0;
    transition:.4s;
}

.perfume-card:hover::after{
    opacity:1;
}

.perfume-card img{
    width:100%;
    height:330px;
    margin-bottom:20px;
    object-fit:contain;
    z-index:2;
}

.perfume-card h3{
    margin:20px 0 12px;
    font-size:30px;
    z-index:2;
}

.perfume-card p{
    height:55px;
    overflow:hidden;
    z-index:2;
}

.perfume-sizes{
    width:100%;
    margin-top:auto;
    z-index:3;
}

.size-price{
    margin-bottom:12px;
}

.perfume-card .perfume-category{
    padding:8px 18px;
    letter-spacing:2px;
}

.perfume-card:hover{
    transform:translateY(-18px);
}

@media(max-width:992px){

    .collection-grid{
        grid-template-columns:1fr;
    }

    .perfume-card{
        min-height:auto;
    }

}

/*=====================================
        FILTER FIX
======================================*/

.filter-buttons{
    position:relative;
    z-index:100;
}

.filter-btn{
    position:relative;
    z-index:101;
    pointer-events:auto;
}
/*=====================================
        PRODUCT PAGE
======================================*/

.product-page{

    min-height:100vh;

    padding:150px 8% 80px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:80px;

    background:#0B0B0B;

    position:relative;

    overflow:hidden;

}

.product-page::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    top:50%;
    left:25%;

    transform:translate(-50%,-50%);

    background:radial-gradient(
        circle,
        rgba(201,162,39,.15),
        transparent 70%
    );

    pointer-events:none;

}

.back-collection{

    position:absolute;

    top:120px;
    left:8%;

    color:#C9A227;

    text-decoration:none;

    font-size:15px;

    transition:.3s;

}

.back-collection:hover{

    color:#fff;

    transform:translateX(-6px);

}

/* IMAGE */

.product-image{

    width:420px;

    display:flex;

    justify-content:center;

    align-items:center;

}

.product-image img{

    width:100%;

    max-width:420px;

    object-fit:contain;

    filter:drop-shadow(0 30px 40px rgba(0,0,0,.6));

    animation:productFloat 5s ease-in-out infinite;

}

/* INFO */

.product-info{

    width:100%;

    max-width:520px;

}

#productCategory{

    display:inline-block;

    padding:8px 18px;

    border:1px solid rgba(201,162,39,.5);

    border-radius:30px;

    color:#C9A227;

    font-size:13px;

    letter-spacing:3px;

    text-transform:uppercase;

}

#productName{

    margin:22px 0;

    font-family:'Cinzel',serif;

    font-size:54px;

    color:#fff;

}

#productDescription{

    color:#aaa;

    line-height:1.8;

    margin-bottom:35px;

}

/*=====================================
        SIZES
======================================*/

#productSizes{

    display:flex;

    flex-direction:column;

    gap:16px;

    width:100%;

}

.size-row{

    display:flex;

    align-items:center;

    gap:16px;

    width:100%;

}

.size-price{

    flex:1;

    height:58px;

    border:none;

    border-radius:14px;

    background:#1B1B1B;

    color:#fff;

    font-size:15px;

    font-weight:600;

    display:flex;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    transition:.3s;

}

.size-price:hover{

    background:#2A2A2A;

}

.add-cart-btn{

    width:180px;

    height:58px;

    flex-shrink:0;

    border:none;

    border-radius:14px;

    background:#C9A227;

    color:#111;

    font-size:15px;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    cursor:pointer;

    transition:.3s;

}

.add-cart-btn:hover{

    background:#E0BC3A;

    transform:translateY(-2px);

}

.add-cart-btn i{

    font-size:18px;

}

/*=====================================
        ANIMATIONS
======================================*/

@keyframes productFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0);

    }

}

/*=====================================
        RESPONSIVE
======================================*/

@media (max-width:900px){

    .product-page{

        flex-direction:column;

        text-align:center;

        gap:50px;

        padding-top:130px;

    }

    .product-image{

        width:300px;

    }

    .product-image img{

        max-width:300px;

    }

    #productName{

        font-size:40px;

    }

    .size-row{

        flex-direction:column;

    }

    .size-price,

    .add-cart-btn{

        width:100%;

    }

    .add-cart-btn{

        min-width:100%;

    }

    .back-collection{

        left:30px;

    }

}
/*=====================================
        HOME PERFUME SLIDER
======================================*/

.home-slider{
    position:relative;
    display:flex;
    align-items:center;
    gap:20px;
    max-width:1400px;
    margin:0 auto 40px;
    overflow:hidden;
}

.home-slider .collection-grid{
    display:flex;
    gap:35px;
    overflow:hidden;
    scroll-behavior:smooth;
}

.home-slider .perfume-card{
    min-width:320px;
    max-width:320px;
    min-height:520px;
    padding:30px;
    border-radius:28px;
}

.home-slider .perfume-card:hover{
    transform:translateY(-8px);
}

.home-slider .perfume-card img{
    height:260px;
}

.home-slider .perfume-card h3{
    margin-top:20px;
    font-size:26px;
}

.home-slider .perfume-card p{
    display:none;
}

.home-slider .perfume-card .perfume-category{
    padding:8px 18px;
    font-size:13px;
}

.home-slider .perfume-sizes{
    display:none;
}

.slider-btn{
    width:55px;
    height:55px;
    border:1px solid #C9A227;
    border-radius:50%;
    background:#111;
    color:#C9A227;
    font-size:35px;
    cursor:pointer;
    z-index:5;
}

.slider-btn:hover{
    background:#C9A227;
    color:#000;
}

.home-collection{
    padding-top:70px;
    padding-bottom:80px;
}

/*=====================================
        FILTER BUTTONS
======================================*/

.filter-buttons{
    gap:25px;
    margin-top:35px;
    margin-bottom:45px;
}

.filter-btn{
    padding:16px 38px;
    font-size:17px;
    letter-spacing:1px;
    border-radius:50px;
}

.filter-btn:hover{
    transform:translateY(-5px);
}

/*=====================================
        GALLERY WRAPPER
======================================*/

.gallery{
    padding-top:40px;
}

.gallery-wrapper{
    position:relative;
    overflow:hidden;
}

.gallery-grid{
    display:flex;
    gap:25px;
    overflow:hidden;
    scroll-behavior:smooth;
}

.gallery-card{
    min-width:calc(25% - 20px);
    height:350px;
}

.gallery-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:18px;
}

.gallery-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:#C9A227;
    color:#000;
    font-size:30px;
    cursor:pointer;
    z-index:5;
}

.gallery-btn.prev{
    left:10px;
}

.gallery-btn.next{
    right:10px;
}

/*=====================================
        RESPONSIVE
======================================*/

@media(max-width:992px){

    .home-slider .perfume-card{
        min-width:280px;
    }

    .filter-btn{
        padding:14px 28px;
    }

    .gallery-card{
        min-width:calc(33.33% - 20px);
    }

}

@media(max-width:600px){

    .home-slider .perfume-card{
        min-width:240px;
        min-height:430px;
    }

    .home-slider .perfume-card img{
        height:200px;
    }

    .filter-btn{
        padding:12px 22px;
        font-size:14px;
    }

    .gallery-card{
        min-width:calc(50% - 15px);
    }

}
/*=====================================
        GALLERY PAGE
======================================*/

.gallery-page{
    min-height:100vh;
    padding:150px 8% 80px;
    background:#0B0B0B;
}

.gallery-page .gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.gallery-page .gallery-card{
    height:350px;
    border-radius:20px;
    overflow:hidden;
    border:1px solid rgba(201,162,39,.25);
}

.gallery-page .gallery-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
    cursor:pointer;
}

.gallery-page .gallery-card img:hover{
    transform:scale(1.08);
}

@media(max-width:992px){

    .gallery-page .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:600px){

    .gallery-page .gallery-grid{
        grid-template-columns:1fr;
    }

}

/*=====================================
        GALLERY IMAGE POPUP
======================================*/

.image-popup{
    position:fixed;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px;
    background:rgba(0,0,0,.88);
    z-index:99999;
}

.popup-box{
    position:relative;
    width:90%;
    max-width:900px;
}

.popup-box img{
    width:100%;
    max-height:85vh;
    object-fit:contain;
    border:2px solid #C9A227;
    border-radius:20px;
    box-shadow:0 0 50px rgba(201,162,39,.4);
}

.close-popup{
    position:absolute;
    top:-45px;
    right:0;
    color:#C9A227;
    font-size:45px;
    font-weight:bold;
    cursor:pointer;
}

.gallery-prev,
.gallery-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#C9A227;
    color:#000;
    font-size:30px;
    cursor:pointer;
    z-index:5;
}

.gallery-prev{
    left:-70px;
}

.gallery-next{
    right:-70px;
}

.gallery-prev:hover,
.gallery-next:hover{
    background:#fff;
}

@media(max-width:600px){

    .gallery-prev{
        left:10px;
    }

    .gallery-next{
        right:10px;
    }

}

/*=====================================
        WHATSAPP
======================================*/

.social-links a.whatsapp,
#whatsappLink{
    color:#25D366;
}

#whatsappLink:hover{
    transform:translateY(-5px);
    text-shadow:0 0 15px rgba(37,211,102,.6);
}
/*=====================================
        REVIEWS
======================================*/

.reviews{

    padding:100px 8%;

    background:#0B0B0B;

}

.reviews-slider{

    position:relative;

    display:flex;

    align-items:center;

    gap:25px;

}

.reviews-grid{

    display:flex;

    flex:1;

    gap:28px;

    overflow:hidden;

    scroll-behavior:smooth;

}

/*========== REVIEW CARD ==========*/

.review-card{

    flex:0 0 300px;

    height:560px;

    background:#111;

    border:1px solid rgba(201,162,39,.25);

    border-radius:20px;

    padding:0;

    overflow:hidden;

    cursor:pointer;

    transition:.4s;

    box-shadow:
    0 20px 45px rgba(0,0,0,.45);

}

.review-card:hover{

    transform:translateY(-10px);

    border-color:#C9A227;

    box-shadow:
    0 20px 60px rgba(201,162,39,.18);

}

.review-card img{

    display:block;

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

    margin:0;

    padding:0;

    background:transparent;

    border:none;

    border-radius:0;

    box-shadow:none;

    transition:.4s;

}

.review-card:hover img{

    transform:scale(1.02);

}
/*========== BUTTONS ==========*/

.reviews-btn{

    width:58px;

    height:58px;

    border:none;

    border-radius:50%;

    background:#C9A227;

    color:#000;

    font-size:30px;

    font-weight:bold;

    cursor:pointer;

    flex-shrink:0;

    transition:.35s;

    box-shadow:
    0 10px 25px rgba(201,162,39,.35);

}

.reviews-btn:hover{

    background:#fff;

    transform:scale(1.12);

}

/*=====================================
        REVIEW MODAL
======================================*/

.review-modal{

    position:fixed;

    inset:0;

    display:none;

    justify-content:center;

    align-items:center;

    padding:20px;

    background:rgba(0,0,0,.88);

    z-index:9999;

}

.review-modal-box{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    max-width:700px;

    max-height:90vh;

}

.review-modal-box img{

    width:100%;

    max-height:85vh;

    object-fit:contain;

    border:2px solid #C9A227;

    border-radius:24px;

    box-shadow:
    0 0 50px rgba(201,162,39,.25);

}

.review-close{

    position:absolute;

    top:-20px;

    right:-20px;

    width:45px;

    height:45px;

    border:none;

    border-radius:50%;

    background:#C9A227;

    color:#000;

    font-size:30px;

    cursor:pointer;

}

.review-prev,
.review-next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:rgba(0,0,0,.6);

    color:#fff;

    font-size:28px;

    cursor:pointer;

    z-index:1000;

    transition:.3s;

}

.review-prev{

    left:-80px;

}

.review-next{

    right:-80px;

}

.review-prev:hover,
.review-next:hover{

    background:#C9A227;

    color:#000;

}
/*=====================================
        COLLECTION PAGE
======================================*/

.collection-page{
    padding-top:140px;
}

/*=====================================
        ADMIN LINK
======================================*/

.admin-link{
    color:inherit;
    text-decoration:none;
    cursor:pointer;
}

.admin-link:hover{
    color:#D4AF37;
    transition:.3s;
}

/*=====================================
        CONTENT VISIBILITY
======================================*/

section:not(.hero){
    content-visibility:auto;
    contain-intrinsic-size:800px;
}
/*=====================================
        PRODUCT PAGE ANIMATION
=====================================*/

.product-page{
    animation:fadeIn 1s ease;
}

.product-image{
    animation:slideLeft 1s ease;
}

.product-info{
    animation:slideRight 1s ease;
}

/* IMAGE EFFECT */

.product-image img{
    transition:.5s ease;
}

.product-image img:hover{
    transform:scale(1.05);
}

/* BACK COLLECTION */

.back-collection{
    display:inline-block;
    margin-top:35px;
    color:#c9a227;
    text-decoration:none;
    font-size:14px;
    letter-spacing:2px;
    transition:.3s ease;
}

.back-collection:hover{
    transform:translateX(-8px);
}

.back-collection{
    display:inline-block;
    margin-bottom:30px;
    color:#C9A227;
    text-decoration:none;
    font-family:'Poppins',sans-serif;
    font-size:15px;
    transition:.3s;
}

.back-collection:hover{
    color:#fff;
    transform:translateX(-5px);
}

/*=====================================
        PRODUCT PAGE
=====================================*/

.product-page{
    min-height:100vh;
    padding:150px 8% 80px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:80px;
    background:#0B0B0B;
    position:relative;
}

.back-collection{
    position:absolute;
    top:120px;
    left:8%;
    color:#C9A227;
    text-decoration:none;
    font-family:'Poppins',sans-serif;
    font-size:15px;
    transition:.3s;
}

.back-collection:hover{
    color:#fff;
    transform:translateX(-6px);
}

/* IMAGE */

.product-image{
    width:420px;
    height:520px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.product-image img{
    max-width:100%;
    max-height:500px;
    object-fit:contain;
    filter:drop-shadow(0 30px 40px rgba(0,0,0,.7));
    animation:productFloat 5s ease-in-out infinite;
}

/* INFO */

.product-info{
    max-width:500px;
}

#productCategory{
    color:#C9A227;
    letter-spacing:3px;
    font-size:14px;
    text-transform:uppercase;
}

.product-info h1{
    font-family:'Cinzel',serif;
    font-size:55px;
    margin:20px 0;
    color:#fff;
}

.product-info p{
    color:#aaa;
    line-height:1.8;
    font-size:16px;
    margin-bottom:35px;
}

/* SIZES */

#productSizes{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.size-price{
    display:inline-block;
    padding:14px 25px;
    border:1px solid #C9A227;
    color:#C9A227;
    text-decoration:none;
    transition:.35s;
    font-family:'Poppins',sans-serif;
}

.size-price:hover{
    background:#C9A227;
    color:#000;
    transform:translateY(-5px);
}
/* ANIMATION */

@keyframes productFloat{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0);
    }

}

/* MOBILE */

@media(max-width:900px){

    .product-page{
        flex-direction:column;
        gap:40px;
        padding-top:130px;
    }

    .product-image{
        width:300px;
        height:380px;
    }

    .product-info{
        text-align:center;
    }

    .product-info h1{
        font-size:38px;
    }

    #productSizes{
        justify-content:center;
    }

    .back-collection{
        left:30px;
    }

}

/*=====================================
        PRODUCT LUXURY EFFECTS
=====================================*/

.product-page{
    overflow:hidden;
}

.product-page::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    background:radial-gradient(
        circle,
        rgba(201,162,39,.15),
        transparent 70%
    );

    top:50%;
    left:25%;

    transform:translate(-50%,-50%);

    pointer-events:none;

}

/* IMAGE FRAME */

.product-image{
    position:relative;
}

.product-image::after{

    content:"";

    position:absolute;

    inset:20px;

    border:1px solid rgba(201,162,39,.35);

    transform:rotate(5deg);

    z-index:0;

}

.product-image img{
    position:relative;
    z-index:1;
}

/* PRODUCT INFO ANIMATION */

.product-info{
    animation:productInfoShow 1s ease;
}

@keyframes productInfoShow{

    from{
        opacity:0;
        transform:translateX(60px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }

}

/* CATEGORY STYLE */

#productCategory{

    display:inline-block;

    padding:8px 18px;

    border:1px solid rgba(201,162,39,.5);

    border-radius:30px;

    margin-bottom:15px;

}

/* TITLE GOLD TOUCH */

.product-info h1{

    background:linear-gradient(
        90deg,
        #fff,
        #C9A227
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

}

/* DESCRIPTION BOX */

.product-info p{

    border-left:2px solid #C9A227;

    padding-left:20px;

}

/* PRICE BUTTON SHINE */

.size-price{

    position:relative;

    overflow:hidden;

}

.size-price::before{

    content:"";

    position:absolute;

    top:0;
    left:-100%;

    width:60%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );

    transition:.5s;

}

.size-price:hover::before{
    left:120%;
}
/*=====================================
        HOME PERFUME SLIDER
=====================================*/

.home-slider{

    position:relative;

    display:flex;

    align-items:center;

    gap:20px;

    overflow:hidden;

}

.home-slider .collection-grid{

    display:flex;

    gap:25px;

    overflow:hidden;

    scroll-behavior:smooth;

}

.home-slider .perfume-card{

    min-width:330px;
    max-width:330px;

    min-height:520px;

    padding:30px;

}

.home-slider .perfume-sizes{
    display:none;
}

.home-slider .perfume-card p{
    margin-bottom:10px;
}

.home-slider .perfume-card:hover{
    transform:translateY(-8px);
}

.home-slider .perfume-card img{
    height:260px;
}

.home-slider .perfume-card h3{
    font-size:26px;
}

.home-slider .perfume-card p{
    font-size:13px;
    height:45px;
    overflow:hidden;
}

.slider-btn{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:45px;

    height:45px;

    border-radius:50%;

    border:1px solid #C9A227;

    background:#111;

    color:#C9A227;

    font-size:30px;

    cursor:pointer;

    z-index:20;

}

.slider-btn:first-child{

    left:10px;

}

.slider-btn:last-child{

    right:10px;

}

.slider-btn:hover{

    background:#C9A227;

    color:#000;

}

/*=====================================
        HOME COLLECTION FIX
=====================================*/

.home-slider .perfume-card{
    min-height:420px;
}

.home-slider .perfume-card img{
    height:190px;
}

.home-slider .perfume-card p{
    display:none;
}

.home-slider .perfume-sizes{
    display:none;
}

.home-slider{
    margin-bottom:40px;
}

.home-collection{
    padding-bottom:50px;
}

/*=====================================
        SECTION SPACING FIX
=====================================*/

.hero{
    min-height:75vh;
}

.collection{
    padding-top:40px;
    padding-bottom:40px;
}

.story{
    padding:70px 8%;
}

.gallery{
    padding-top:40px;
}

.gallery-wrapper{

    position:relative;

    overflow:hidden;

}

.gallery-grid{

    display:flex;

    gap:25px;

    overflow:hidden;

    scroll-behavior:smooth;

}

.gallery-card{

    min-width:calc(25% - 20px);

    height:350px;

}

.gallery-card img{

    width:100%;
    height:100%;

    object-fit:cover;

    border-radius:18px;

}

.gallery-btn{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:45px;
    height:45px;

    border-radius:50%;

    background:#C9A227;

    color:#000;

    border:none;

    font-size:30px;

    cursor:pointer;

    z-index:5;

}

.gallery-btn.prev{
    left:10px;
}

.gallery-btn.next{
    right:10px;
}
@media(max-width:992px){

    .gallery-card{
        min-width:calc(33.33% - 20px);
    }

}

@media(max-width:600px){

    .gallery-card{
        min-width:calc(50% - 15px);
    }
.slider-btn:first-child{

    left:5px;

}

.slider-btn:last-child{

    right:5px;

}
}

/*=====================================
        HOME COLLECTION BIGGER
=====================================*/

.home-collection{

    padding-top:70px;
    padding-bottom:80px;

}

.home-slider{

    max-width:1400px;
    margin:auto;

}

.home-slider .collection-grid{
    gap:35px;
}

.home-slider .perfume-card{

    min-width:320px;
    max-width:320px;

    min-height:520px;

    padding:30px;

    border-radius:28px;

}

.home-slider .perfume-card img{
    height:260px;
}

.home-slider .perfume-card h3{

    font-size:26px;

    margin-top:20px;

}

.home-slider .perfume-card .perfume-category{

    font-size:13px;

    padding:8px 18px;

}

/*=====================================
        BIGGER FILTER BUTTONS
=====================================*/

.filter-buttons{

    gap:25px;

    margin-top:35px;

    margin-bottom:45px;

}

.filter-btn{

    padding:16px 38px;

    font-size:17px;

    letter-spacing:1px;

    border-radius:50px;

}

.filter-btn:hover{
    transform:translateY(-5px);
}

/*=====================================
        HOME SLIDER ARROWS
=====================================*/

.slider-btn{

    width:55px;
    height:55px;

    font-size:35px;

}

/*=====================================
        TABLET
=====================================*/

@media(max-width:992px){

    .home-slider .perfume-card{
        min-width:280px;
    }

    .filter-btn{
        padding:14px 28px;
    }

}

/*=====================================
        MOBILE
=====================================*/

@media(max-width:600px){

    .home-slider{

        padding:0 10px;

    }

    .home-slider .perfume-card{

        min-width:220px;

        max-width:220px;

        min-height:390px;

        border-radius:18px;

    }

    .home-slider .perfume-card img{

        height:180px;

        object-fit:cover;

    }

    .home-slider .perfume-card h3{

        font-size:18px;

    }

    .home-slider .perfume-card p{

        font-size:13px;

        line-height:1.6;

    }

    .filter-buttons{

        gap:8px;

        margin-bottom:25px;

    }

    .filter-btn{

        padding:10px 18px;

        font-size:13px;

    }

    .slider-btn{

        width:42px;

        height:42px;

        font-size:18px;

    }

}
/*=====================================
        GALLERY PAGE
=====================================*/

.gallery-page{

    min-height:100vh;

    padding:150px 8% 80px;

    background:#0B0B0B;

}

.gallery-page .gallery-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.gallery-page .gallery-card{

    height:350px;

    border-radius:20px;

    overflow:hidden;

    border:1px solid rgba(201,162,39,.25);

}

.gallery-page .gallery-card img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.4s;

}

.gallery-page .gallery-card img:hover{
    transform:scale(1.08);
}

@media(max-width:992px){

    .gallery-page .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:600px){

    .gallery-page .gallery-grid{
        grid-template-columns:1fr;
    }

}

/*=====================================
        GALLERY IMAGE VIEWER
=====================================*/

.gallery-card img{
    cursor:pointer;
}

.image-viewer{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.85);

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:9999;

}

.viewer-box{

    position:relative;

    max-width:85%;

    max-height:85%;

}

.viewer-box img{

    max-width:100%;

    max-height:80vh;

    border-radius:20px;

    border:2px solid #C9A227;

    box-shadow:0 0 40px rgba(201,162,39,.4);

}

.close-viewer{

    position:absolute;

    top:-25px;

    right:-25px;

    width:45px;
    height:45px;

    border-radius:50%;

    background:#C9A227;

    color:#000;

    font-size:30px;

    font-weight:bold;

    cursor:pointer;

    border:none;

}
/* =========================
      GALLERY IMAGE POPUP
========================= */

.gallery-card img{
    cursor:pointer;
}

.image-popup{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.85);

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:9999;

}

.popup-box{

    position:relative;

    max-width:85%;

    max-height:85%;

}

.popup-box img{

    max-width:100%;

    max-height:85vh;

    border-radius:20px;

    border:2px solid #C9A227;

}

.close-popup{

    position:absolute;

    top:-55px;

    right:0;

    width:45px;
    height:45px;

    border-radius:50%;

    background:#C9A227;

    color:#000;

    border:1px solid #C9A227;

    font-size:32px;

    font-weight:600;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    transition:.3s;

}

.close-popup:hover{

    background:#fff;

    color:#000;

    transform:rotate(90deg);

}

/*=====================================
        GALLERY IMAGE POPUP FIX
=====================================*/

.gallery-card img{
    cursor:pointer;
}

.image-popup{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.88);

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

    padding:40px;

}

.popup-box{

    position:relative;

    max-width:900px;

    width:90%;

}

.popup-box img{

    width:100%;

    max-height:85vh;

    object-fit:contain;

    border-radius:20px;

    border:2px solid #C9A227;

    box-shadow:0 0 50px rgba(201,162,39,.4);

}

.close-popup{

    position:absolute;

    top:-45px;

    right:0;

    color:#C9A227;

    font-size:45px;

    cursor:pointer;

    font-weight:bold;

}
.gallery-next,
.gallery-prev{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:50px;
    height:50px;

    border-radius:50%;

    background:#C9A227;

    color:#000;

    border:none;

    font-size:30px;

    cursor:pointer;

    z-index:5;

}

.gallery-next{
    right:-70px;
}

.gallery-prev{
    left:-70px;
}

.gallery-next:hover,
.gallery-prev:hover{
    background:#fff;
}

.popup-box{
    position:relative;
}

@media(max-width:600px){

    .gallery-next{
        right:10px;
    }

    .gallery-prev{
        left:10px;
    }

}

.social-links a.whatsapp,
#whatsappLink{
    color:#25D366;
}

#whatsappLink:hover{

    transform:translateY(-5px);

    text-shadow:0 0 15px rgba(37,211,102,.6);

}

/*=====================================
        REVIEWS
=====================================*/

.reviews{

    padding:100px 8%;

    background:#0b0b0b;

}

.reviews-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.review-card{

    background:#111;

    padding:30px;

    text-align:center;

    border-radius:15px;

}


.reviews-slider{

    display:flex;

    align-items:center;

    gap:20px;

}

.reviews-grid{

    display:flex;

    gap:20px;

    overflow:hidden;

    scroll-behavior:smooth;

    flex:1;

}

.review-card{

    min-width:260px;

    height:330px;

    border-radius:20px;

    overflow:hidden;

    background:#111;

    border:1px solid rgba(201,162,39,.3);

}


.reviews-btn{

    width:45px;
    height:45px;

    border-radius:50%;

    border:none;

    background:#C9A227;

    color:#000;

    font-size:25px;

    cursor:pointer;

}

.review-card{
    cursor:pointer;
}
/*=====================================
        REVIEW MODAL
=====================================*/

.review-modal{

    display:none;

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.85);

    z-index:9999;

    align-items:center;

    justify-content:center;

    padding:20px;

}

.review-modal-box{

    position:relative;

    max-width:700px;

    max-height:90vh;

    display:flex;

    align-items:center;

    justify-content:center;

}

.review-modal-box img{

    width:100%;

    max-height:85vh;

    object-fit:contain;

    border-radius:20px;

    border:2px solid #C9A227;

}

.review-close{

    position:absolute;

    top:-20px;

    right:-20px;

    width:45px;

    height:45px;

    border-radius:50%;

    border:none;

    background:#C9A227;

    color:#000;

    font-size:30px;

    cursor:pointer;

}

.review-prev,
.review-next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:rgba(0,0,0,.6);

    color:#fff;

    font-size:28px;

    cursor:pointer;

    z-index:1000;

    transition:.3s;

}

.review-prev{

    left:-80px;

}

.review-next{

    right:-80px;

}

.review-prev:hover,
.review-next:hover{

    background:#C9A227;

    color:#000;

}
/*=====================================
        COLLECTION PAGE
=====================================*/

.collection-page{

    padding-top:140px;

}

.admin-link{

    color:inherit;

    text-decoration:none;

    cursor:pointer;

}

.admin-link:hover{

    color:#D4AF37;

    transition:.3s;

}

/*=====================================
        CONTENT VISIBILITY
=====================================*/

section:not(.hero){

    content-visibility:auto;

    contain-intrinsic-size:800px;

}
/*=====================================
        MOBILE RESPONSIVE
======================================*/

@media (max-width:768px){

    .navbar{
    height:64px;
    padding:0 16px;
}

    .logo-main{
    font-size:26px;
    letter-spacing:4px;
    line-height:1;
}

.logo-main::first-letter{
    font-size:32px;
}

.logo{
    transform:scale(.95);
    transform-origin:left center;
}

    .logo-main::first-letter{
        font-size:36px;
    }

    .logo-sub{
        display:none;
    }

    .hero{
    min-height:62vh;
    padding:82px 20px 35px;
}

    .hero-text{
        max-width:100%;
    }

    .hero-text span{
        font-size:12px;
        letter-spacing:3px;
    }

    .hero-text h1{
        font-size:34px;
        line-height:1.2;
        letter-spacing:2px;
        margin:18px 0;
    }

    .hero-text p{
        font-size:15px;
        line-height:1.7;
        margin:18px auto;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
        gap:15px;
        margin-top:30px;
    }

    .hero-buttons button,
    .hero-btn{
        width:220px;
        padding:15px 25px;
        font-size:15px;
    }

    .section-title h2{
        font-size:30px;
    }

    .story{
        padding:50px 20px;
    }

    .story-content h2{
        font-size:32px;
    }

    .story-content p{
        font-size:15px;
    }

    .collection,
    .gallery-section,
    .contact,
    .reviews{
        padding-left:20px;
        padding-right:20px;
    }

    .perfume-card{
        padding:20px;
    }

    .perfume-card img{
        height:220px;
    }

    .perfume-card h3{
        font-size:22px;
    }

    .contact-box{
        flex-direction:column;
    }

    .contact-card{
        width:100%;
        padding:25px;
    }

    footer{
        padding:45px 20px;
    }

}


/* ===============================
        MOBILE OPTIMIZATION
=================================*/

@media (max-width:768px){

    .navbar{
        height:72px;
        padding:0 18px;
    }

    .logo-main{
        font-size:28px;
        letter-spacing:4px;
    }

    .hero{
        min-height:65vh;
        padding:95px 20px 45px;
    }

    .hero-text span{
        font-size:12px;
        letter-spacing:3px;
    }

    .hero-text h1{
        font-size:34px;
        letter-spacing:2px;
        margin:18px 0;
    }

    .hero-text p{
        font-size:15px;
        line-height:1.7;
    }

    .hero-btn{
        width:220px;
        padding:14px 24px;
        font-size:15px;
    }

    .section-title h2{
        font-size:32px;
    }

    .collection{
        padding:55px 20px;
    }

    .perfume-card{
        padding:22px;
    }

    .perfume-card img{
        height:220px;
    }

    .perfume-card h3{
        font-size:22px;
    }

    .story{
        padding:60px 20px;
    }

    .story-content h2{
        font-size:32px;
    }

    .gallery-section,
    .contact,
    .reviews{
        padding:60px 20px;
    }

    footer{
        padding:50px 20px;
    }

}
/*=====================================
        FINAL MOBILE FIX
======================================*/

@media (max-width:768px){

    .navbar{
        height:64px;
        padding:0 16px;
    }

    .logo-main{
        font-size:26px;
        letter-spacing:4px;
    }

    .logo-main::first-letter{
        font-size:32px;
    }

    .logo-sub{
        display:none;
    }

    .hero{
        min-height:62vh;
        padding:82px 20px 35px;
    }

    .hero-text h1{
        font-size:34px;
        line-height:1.2;
        letter-spacing:2px;
    }

    .hero-text p{
        font-size:15px;
    }

    .hero-buttons{
        flex-direction:column;
        gap:15px;
    }

    .hero-btn,
    .hero-buttons button{
        width:220px;
    }

    .collection{
        padding:50px 20px;
    }

    .filter-buttons{
        gap:12px;
        margin:20px 0 30px;
    }

    .filter-btn{
        padding:10px 18px;
        font-size:13px;
    }

    .collection-grid{
        gap:20px;
    }

    .perfume-card{
        padding:18px;
        border-radius:18px;
    }

    .perfume-card img{
        height:190px;
    }

    .perfume-card h3{
        font-size:20px;
    }

    .perfume-card p{
        font-size:14px;
    }

    .size-price{
        font-size:13px;
        padding:10px;
    }

    .story,
    .gallery-section,
    .contact,
    .reviews{
        padding:50px 20px;
    }

    footer{
        padding:45px 20px;
    }

}
/* Fix navbar all pages */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
}
/* ===============================
        FINAL HEADER FIX
=================================*/

.navbar{
    width:100%;
    height:90px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 8%;
    position:fixed;
    top:0;
    left:0;
    z-index:9999;
    background:rgba(11,11,11,.88);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,.05);
}


.logo{
    display:flex;
    flex-direction:column;
}


.logo-main{
    font-family:'Cinzel',serif;
    font-size:40px;
    font-weight:600;
    letter-spacing:12px;
    color:#f5f5f5;
}


.logo-sub{
    font-family:'Poppins',sans-serif;
    font-size:13px;
    letter-spacing:5px;
    color:#C9A227;
}


nav{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:28px;
}


nav a{
    font-size:14px;
    color:#e6e6e6;
}


.social-links{
    display:flex;
    align-items:center;
    gap:18px;
}
/*==============================
        MOBILE MENU BUTTON
==============================*/

.menu-toggle{

    display:none;

    background:none;

    border:none;

    color:#fff;

    font-size:28px;

    cursor:pointer;

    transition:.3s;

}

.menu-toggle:hover{

    color:#C9A227;

}

@media(max-width:992px){

    .menu-toggle{

        display:block;

    }

}
/*==============================
        MOBILE NAVIGATION
==============================*/

@media (max-width:992px){

    .navbar{

        position:fixed;

        top:0;

        left:0;

        width:100%;

        justify-content:space-between;

        align-items:center;

        z-index:10000;

    }

    .navbar nav{

        display:flex;

        position:fixed;

        top:90px;

        right:-100%;

        width:100%;

        height:calc(100vh - 90px);

        background:#0B0B0B;

        flex-direction:column;

        justify-content:center;

        align-items:center;

        gap:22px;

        transition:right .35s ease;

        z-index:9999;

    }

    .navbar nav.active{

        right:0;

    }

    .navbar nav a{

        color:#fff;

        font-size:22px;

        letter-spacing:3px;

        text-transform:uppercase;

        transition:.3s;

    }

    .navbar nav a:hover{

        color:#C9A227;

        transform:translateY(-2px);

    }

    /* الهيدر */

    .logo{

        display:flex;

        flex-direction:column;

        align-items:flex-start;

    }

    .logo-main{

        font-size:30px;

        letter-spacing:5px;

    }

    .logo-sub{

        font-size:10px;

        letter-spacing:2px;

        margin-top:3px;

    }


/*=====================================
        MOBILE GALLERY FORCE FIX
=====================================*/

@media (max-width:768px){

    .gallery-grid{
        gap:15px !important;
    }

    .gallery-card{
        flex:0 0 100% !important;
        width:100% !important;
        min-width:100% !important;
        max-width:100% !important;
        height:320px !important;
    }

}
@media (max-width:768px){

    .collection,
    .story,
    .gallery,
    .contact{

        background-image:
            linear-gradient(
                rgba(8,8,8,.88),
                rgba(8,8,8,.88)
            ),
            url("../assets/images/sections-bg.jpg");

        background-size:cover;
        background-position:center;
        background-repeat:no-repeat;

        background-attachment:scroll;

    }

}
/*=====================================
ACCOUNT & CART
=====================================*/

.cart-link{

    position:relative;

}

#cartCount{

    position:absolute;

    top:-8px;

    right:-8px;

    width:18px;

    height:18px;

    border-radius:50%;

    background:#C9A227;

    color:#111;

    font-size:11px;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

}

#loginLink,
#logoutLink{

    transition:.3s;

}

#loginLink:hover,
#logoutLink:hover,
.cart-link:hover{

    transform:translateY(-2px);

}
/*=====================================
NAV ACTIONS
=====================================*/

.nav-actions{
    display:flex;
    align-items:center;
    gap:14px;
}

.cart-icon,
.login-btn{
    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    position:relative;

    border:1px solid rgba(212,175,55,.45);
    border-radius:50%;

    color:#fff;
    text-decoration:none;

    transition:.3s;
}

.cart-icon:hover,
.login-btn:hover{
    background:#D4AF37;
    color:#111;
}

.cart-icon i,
.login-btn i{
    font-size:18px;
}

#cartCount{
    position:absolute;
    top:-6px;
    right:-6px;

    min-width:18px;
    height:18px;

    border-radius:50%;

    background:#D4AF37;
    color:#111;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:10px;
    font-weight:700;
}
/*=====================================
NAVBAR ACTIONS (GLOBAL)
======================================*/

.nav-actions{
    display:flex;
    align-items:center;
    gap:14px;
}

.nav-actions .cart-icon,
.nav-actions .login-btn{

    width:46px;
    height:46px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(212,175,55,.45);
    border-radius:50%;

    background:transparent;
    color:#fff;

    text-decoration:none;

    transition:.3s;
}

.nav-actions .cart-icon:hover,
.nav-actions .login-btn:hover{

    background:#D4AF37;
    color:#111;
}

.nav-actions .cart-icon i,
.nav-actions .login-btn i{

    font-size:18px;
}

#cartCount{

    position:absolute;

    top:-6px;
    right:-6px;

    width:18px;
    height:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#D4AF37;
    color:#111;

    font-size:10px;
    font-weight:700;
}

/* =====================================
   BOND STUDIO CREDIT
===================================== */

.bond-studio-credit {
    width: 100%;
    box-sizing: border-box;

    margin-top: 28px;
    padding-top: 18px;

    border-top: 1px solid rgba(201, 162, 39, 0.20);

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    font-size: 10px;
    line-height: 1.5;

    letter-spacing: 1.8px;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.45);
}


/* =====================================
   DESIGNED & DEVELOPED BY
===================================== */

.bond-studio-credit .credit-label {
    color: rgba(255, 255, 255, 0.38);

    font-size: 9px;
    font-weight: 400;

    letter-spacing: 1.7px;
}


/* =====================================
   BOND STUDIO CREDIT
===================================== */

footer .bond-studio-credit {
    width: 100%;
    box-sizing: border-box;

    margin-top: 28px;
    padding-top: 18px;

    border-top: 1px solid rgba(201, 162, 39, 0.22);

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    font-family: 'Poppins', sans-serif;

    font-size: 10px;
    line-height: 1.5;

    letter-spacing: 1.8px;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.42);
}


footer .bond-studio-credit .credit-label {
    color: rgba(255, 255, 255, 0.38);

    font-size: 9px;
    font-weight: 400;

    letter-spacing: 1.6px;
}


footer .bond-studio-credit .credit-brand {
    position: relative;

    color: #C9A227;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 2.2px;

    transition:
        opacity 0.3s ease,
        letter-spacing 0.3s ease;
}


footer .bond-studio-credit .credit-brand::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -4px;

    height: 1px;

    background: #C9A227;

    opacity: 0.45;

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.3s ease;
}


footer .bond-studio-credit .credit-brand:hover {
    opacity: 0.85;
    letter-spacing: 2.5px;
}


footer .bond-studio-credit .credit-brand:hover::after {
    transform: scaleX(1);
}
/* =====================================
   BONDOK LUXURY SECTION DIVIDER
===================================== */

.luxury-divider {
    width: 100%;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    background: #0B0B0B;

    overflow: hidden;
}

.luxury-divider span {
    width: 130px;
    height: 1px;

    background: linear-gradient(
        to right,
        transparent,
        rgba(201, 162, 39, 0.35)
    );
}

.luxury-divider span:last-child {
    background: linear-gradient(
        to left,
        transparent,
        rgba(201, 162, 39, 0.35)
    );
}

.luxury-divider i {
    color: #C9A227;

    font-size: 8px;

    transform: rotate(45deg);

    opacity: 0.8;

    text-shadow:
        0 0 8px rgba(201, 162, 39, 0.25);
}
/* =====================================
   BONDOK HOMEPAGE
   COMPACT LUXURY SECTION SPACING
===================================== */

/* Reduce vertical space between homepage sections */

section.collection,
section.gallery,
section.reviews,
section.story,
section.contact {

    margin-top: 0 !important;
    margin-bottom: 0 !important;

}


/* Collection */

section.collection {

    padding-top: 45px !important;
    padding-bottom: 45px !important;

}


/* Gallery */

section.gallery {

    padding-top: 45px !important;
    padding-bottom: 45px !important;

}


/* Reviews */

section.reviews {

    padding-top: 45px !important;
    padding-bottom: 45px !important;

}


/* Story */

section.story {

    padding-top: 50px !important;
    padding-bottom: 50px !important;

}


/* Contact */

section.contact {

    padding-top: 45px !important;
    padding-bottom: 45px !important;

}


/* =====================================
   DIVIDER
===================================== */

.bondok-section-divider {

    height: 35px !important;

}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 600px) {

    section.collection,
    section.gallery,
    section.reviews,
    section.story,
    section.contact {

        padding-top: 32px !important;
        padding-bottom: 32px !important;

    }

    .bondok-section-divider {

        height: 25px !important;

    }

}
/*=====================================
        BONDOK LUXURY TABS
======================================*/

.filter-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:46px;

    margin:8px auto 38px;

}


/*=====================================
        TAB
======================================*/

.filter-btn{

    position:relative;

    padding:6px 2px 13px;

    background:transparent;

    border:none;

    border-radius:0;

    color:rgba(255,255,255,.62);

    font-family:'Cinzel',serif;

    font-size:14px;

    font-weight:500;

    letter-spacing:2.5px;

    cursor:pointer;

    transition:
        color .35s ease,
        letter-spacing .35s ease;

}


/*=====================================
        GOLD ACTIVE LINE
======================================*/

.filter-btn::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:0;

    width:0;

    height:1px;

    background:#C9A227;

    transform:translateX(-50%);

    transition:
        width .35s ease;

}


/*=====================================
        HOVER
======================================*/

.filter-btn:hover{

    color:#C9A227;

    letter-spacing:3px;

}

.filter-btn:hover::after{

    width:100%;

}


/*=====================================
        ACTIVE
======================================*/

.filter-btn.active{

    color:#C9A227;

    letter-spacing:3px;

}

.filter-btn.active::after{

    width:100%;

}


/*=====================================
        COLLECTION PAGE
======================================*/

.collection-page .filter-buttons{

    margin-top:12px;

    margin-bottom:45px;

}


/*=====================================
        MOBILE
======================================*/

@media(max-width:600px){

    .filter-buttons{

        gap:25px 28px;

        margin-bottom:30px;

    }

    .filter-btn{

        font-size:11px;

        letter-spacing:1.8px;

        padding-bottom:10px;

    }

    .filter-btn.active{

        letter-spacing:2.2px;

    }

}
#myOrdersLink{
    display:none;
}
/*==================================================
        BONDOK CUSTOMER ORDER DETAILS
==================================================*/

.order-details-modal{

    position:fixed;

    inset:0;

    z-index:99999;

    padding:30px 18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    rgba(0,0,0,.82);

    backdrop-filter:blur(12px);

    overflow-y:auto;

}


.order-details-box{

    position:relative;

    width:100%;

    max-width:850px;

    max-height:92vh;

    overflow-y:auto;

    padding:35px;

    border-radius:26px;

    background:
    linear-gradient(
        145deg,
        #171717,
        #090909
    );

    border:
    1px solid
    rgba(201,162,39,.28);

    box-shadow:
    0 30px 80px
    rgba(0,0,0,.65);

    color:#fff;

}


.order-details-close{

    position:absolute;

    top:18px;

    right:20px;

    width:38px;

    height:38px;

    border-radius:50%;

    border:
    1px solid
    rgba(201,162,39,.35);

    background:
    rgba(0,0,0,.45);

    color:#C9A227;

    font-size:25px;

    cursor:pointer;

    transition:.3s;

}


.order-details-close:hover{

    background:#C9A227;

    color:#090909;

}


/*=====================================
        HEADER
=====================================*/

.customer-order-details-header{

    text-align:center;

    padding:
    10px 45px 28px;

    border-bottom:
    1px solid
    rgba(255,255,255,.08);

}


.customer-order-details-header span{

    color:#C9A227;

    font-family:'Cinzel',serif;

    font-size:12px;

    letter-spacing:5px;

}


.customer-order-details-header h2{

    margin:10px 0 8px;

    font-family:'Cinzel',serif;

    font-size:32px;

    font-weight:500;

    letter-spacing:2px;

}


.customer-order-details-header p{

    margin:0;

    color:#888;

    font-size:13px;

    letter-spacing:1px;

}


/*=====================================
        CURRENT STATUS
=====================================*/

.customer-current-status{

    margin:25px 0;

    padding:18px 22px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:15px;

    border-radius:16px;

    background:
    rgba(255,255,255,.025);

    border:
    1px solid
    rgba(201,162,39,.15);

}


.customer-current-status span{

    color:#888;

    font-size:12px;

    text-transform:uppercase;

    letter-spacing:1.5px;

}


.customer-current-status strong{

    font-size:14px;

    font-weight:600;

}


/*=====================================
        SUMMARY
=====================================*/

.customer-order-summary{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:12px;

    margin-bottom:30px;

}


.customer-order-summary > div{

    padding:17px;

    border-radius:15px;

    background:
    rgba(255,255,255,.035);

    border:
    1px solid
    rgba(255,255,255,.07);

}


.customer-order-summary span{

    display:block;

    margin-bottom:7px;

    color:#777;

    font-size:11px;

    text-transform:uppercase;

    letter-spacing:1px;

}


.customer-order-summary strong{

    color:#eee;

    font-size:13px;

    line-height:1.5;

}


/*=====================================
        SECTIONS
=====================================*/

.customer-details-section{

    margin-top:28px;

}


.customer-details-section h3{

    display:flex;

    align-items:center;

    gap:10px;

    margin:0 0 16px;

    padding-bottom:12px;

    border-bottom:
    1px solid
    rgba(255,255,255,.07);

    font-family:'Cinzel',serif;

    font-size:17px;

    font-weight:500;

    color:#C9A227;

}


.customer-details-section h3 i{

    font-size:14px;

}


/*=====================================
        PRODUCTS
=====================================*/

.customer-order-items{

    display:flex;

    flex-direction:column;

    gap:12px;

}


.customer-order-item{

    display:grid;

    grid-template-columns:
    85px 1fr auto;

    align-items:center;

    gap:18px;

    padding:16px;

    border-radius:18px;

    background:
    rgba(255,255,255,.025);

    border:
    1px solid
    rgba(201,162,39,.12);

    transition:.3s;

}


.customer-order-item:hover{

    border-color:
    rgba(201,162,39,.32);

    transform:translateY(-2px);

}


.customer-item-image{

    width:85px;

    height:105px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:14px;

    overflow:hidden;

    background:
    radial-gradient(
        circle,
        rgba(201,162,39,.10),
        rgba(0,0,0,.35)
    );

}


.customer-item-image img{

    width:100%;

    height:100%;

    object-fit:contain;

    padding:8px;

    filter:
    drop-shadow(
        0 10px 18px
        rgba(0,0,0,.55)
    );

}


.customer-item-info h4{

    margin:0 0 10px;

    font-family:'Cinzel',serif;

    font-size:16px;

    font-weight:500;

    color:#fff;

}


.customer-item-details{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-bottom:8px;

}


.customer-item-details span{

    color:#777;

    font-size:12px;

}


.customer-item-details strong{

    color:#ccc;

    font-weight:500;

}


.customer-item-unit-price{

    color:#888;

    font-size:11px;

}


.customer-item-price{

    text-align:right;

}


.customer-item-price span{

    display:block;

    margin-bottom:7px;

    color:#888;

    font-size:12px;

}


.customer-item-price strong{

    color:#C9A227;

    font-size:15px;

}


.customer-no-items{

    color:#777;

    font-size:13px;

}


/*=====================================
        TIMELINE
=====================================*/

.customer-order-timeline{

    position:relative;

    padding:5px 0;

}


.customer-timeline-item{

    position:relative;

    display:flex;

    gap:16px;

    min-height:72px;

}


.customer-timeline-item:not(:last-child)::before{

    content:"";

    position:absolute;

    left:12px;

    top:27px;

    bottom:-5px;

    width:1px;

    background:
    rgba(255,255,255,.10);

}


.customer-timeline-item.reached:not(:last-child)::before{

    background:
    rgba(201,162,39,.35);

}


.customer-timeline-marker{

    position:relative;

    z-index:2;

    width:25px;

    height:25px;

    flex:0 0 25px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    border:
    1px solid
    rgba(255,255,255,.15);

    background:#101010;

}


.customer-timeline-marker.completed{

    border-color:#C9A227;

    background:
    rgba(201,162,39,.12);

    color:#C9A227;

}


.customer-timeline-marker.pending{

    opacity:.45;

}


.customer-timeline-marker.cancelled{

    border-color:#8d3434;

    background:
    rgba(141,52,52,.12);

    color:#d66;

}


.customer-timeline-marker i{

    font-size:10px;

}


.customer-timeline-marker span{

    width:5px;

    height:5px;

    border-radius:50%;

    background:#666;

}


.customer-timeline-content{

    padding-bottom:20px;

}


.customer-timeline-content strong{

    display:block;

    margin-bottom:5px;

    color:#ddd;

    font-size:14px;

    font-weight:500;

}


.customer-timeline-item.current
.customer-timeline-content strong{

    color:#C9A227;

}


.customer-timeline-content span{

    color:#777;

    font-size:12px;

}


/*=====================================
        DELIVERY
=====================================*/

.customer-delivery-details{

    padding:5px 0;

}


.customer-delivery-details p{

    display:flex;

    align-items:flex-start;

    justify-content:space-between;

    gap:20px;

    margin:0;

    padding:13px 0;

    border-bottom:
    1px solid
    rgba(255,255,255,.06);

}


.customer-delivery-details p:last-child{

    border-bottom:none;

}


.customer-delivery-details span{

    color:#777;

    font-size:12px;

}


.customer-delivery-details strong{

    max-width:65%;

    text-align:right;

    color:#ddd;

    font-size:13px;

    font-weight:400;

    line-height:1.6;

}


/*=====================================
        TOTAL
=====================================*/

.customer-order-total{

    margin-top:25px;

    padding:22px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    border-radius:17px;

    background:
    linear-gradient(
        135deg,
        rgba(201,162,39,.10),
        rgba(201,162,39,.025)
    );

    border:
    1px solid
    rgba(201,162,39,.25);

}


.customer-order-total span{

    color:#aaa;

    font-size:13px;

}


.customer-order-total strong{

    color:#C9A227;

    font-family:'Cinzel',serif;

    font-size:20px;

}


/*=====================================
        CONTACT
=====================================*/

.customer-contact-btn{

    margin-top:15px;

    width:100%;

    min-height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    border-radius:30px;

    border:
    1px solid
    #C9A227;

    background:
    transparent;

    color:#C9A227;

    font-size:13px;

    text-decoration:none;

    transition:.3s;

}


.customer-contact-btn:hover{

    background:#C9A227;

    color:#090909;

}


/*=====================================
        STATUS COLORS
=====================================*/

.status-pending strong{

    color:#C9A227;

}


.status-confirmed strong{

    color:#d7b84b;

}


.status-preparing strong{

    color:#e1c45d;

}


.status-shipping strong{

    color:#e6cc72;

}


.status-delivered strong{

    color:#C9A227;

}


.status-cancelled strong{

    color:#d66;

}


/*=====================================
        MOBILE
=====================================*/

@media(max-width:700px){

    .order-details-modal{

        padding:15px 10px;

        align-items:flex-start;

    }


    .order-details-box{

        max-height:95vh;

        padding:25px 18px;

        border-radius:22px;

    }


    .customer-order-details-header{

        padding:
        8px 35px 22px;

    }


    .customer-order-details-header h2{

        font-size:25px;

    }


    .customer-order-summary{

        grid-template-columns:
        repeat(2,1fr);

    }


    .customer-order-item{

        grid-template-columns:
        70px 1fr;

        gap:13px;

    }


    .customer-item-image{

        width:70px;

        height:90px;

    }


    .customer-item-price{

        grid-column:
        2;

        text-align:left;

        padding-top:4px;

    }


    .customer-item-price span{

        display:inline;

        margin-right:8px;

    }


    .customer-delivery-details p{

        flex-direction:column;

        gap:5px;

    }


    .customer-delivery-details strong{

        max-width:100%;

        text-align:left;

    }

}


@media(max-width:420px){

    .customer-order-summary{

        grid-template-columns:1fr;

    }


    .customer-order-item{

        grid-template-columns:
        62px 1fr;

    }


    .customer-item-image{

        width:62px;

        height:80px;

    }


    .customer-item-info h4{

        font-size:14px;

    }

}
