/* ===========================
   ONDINEA PREMIUM CSS
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#ffffff !important;
    color:#111111 !important;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* ================= TOP BAR ================= */

.top-bar{
    background:white;
    color:#fff;
    text-align:center;
    padding:10px;
    font-size:14px;
    font-weight:600;
}

/* ================= HEADER ================= */

header{
    box-shadow:0 2px 15px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:1000;
    background:#ffffff !important;
    color:#111111 !important;
    border-bottom:1px solid #e5e5e5;
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 20px;
}

nav ul{
    display:flex;
    list-style:none;
    gap:35px;
}

nav a{
    text-decoration:none;
    color:#111111 !important;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#000000;
}

.cart-btn{
    background:black;
    color:#fff;
    padding:12px 22px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
}

/* ================= HERO ================= */

.hero h1{
    font-size:60px;
    color:#111111 !important;
    line-height:1.2;
}

.hero p{
    margin:25px 0;
    font-size:18px;
    line-height:1.8;
    color:#666;
}

.btn{
    display:inline-block;
    background:#111111;
    color:#ffffff;
    padding:15px 35px;
    border-radius:35px;
    text-decoration:none;
    transition:.3s;
}

.btn:hover{
    background:#000000;
    color:#ffffff;
}

.hero-right img{
    width:100%;
    border-radius:25px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

/* ================= FEATURED ================= */

.featured{
    padding:80px 8%;
    text-align:center;
}

.featured h2{
    font-size:40px;
    color:#111111 !important;
    margin-bottom:40px;
}


/* ================= FOOTER ================= */

footer{
     background:black;
    color:#fff;
    text-align:center;
    padding:10px 20px;
}

footer h3{
    font-size:28px;
    margin-bottom:15px;
}

footer p{
    margin:8px 0;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

header .container{
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
}

nav ul{
    flex-direction:column;
    text-align:center;
    gap:15px;
}

nav{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    display:none;
    z-index:9999;
}

nav.active{
    display:block;
}

.menu-btn{
    display:block;
}

.hero{
    grid-template-columns:1fr;
    text-align:center;
}

.hero h1{
    font-size:38px;
}

.hero-right{
    order:-1;
}
}/* PRODUCT CARD */

.product-card{
    background:#ffffff;
    border:1px solid #ececec;
    border-radius:0;
    padding:12px;
    box-shadow:none;
    transition:.3s;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    height:100%;
}

.product-card:hover{
    transform:translateY(-4px);
    border-color:#dddddd;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.product-card img{
    width:100%;
    height:180px;
    object-fit:contain;
    margin:0 auto 15px;
    display:block;
    transition:.35s;
}

.product-card:hover img{
    transform:scale(1.04);
}

.product-card h3{
    font-size:10px;
    font-weight:500;
    line-height:1;
    color:#111;
    text-align:center;
    margin:5px 0 2%;
}

.product-card p{

font-size:15px;

color:#666;

line-height:1.6;

margin-bottom:15px;

}

.product-card h4{
    font-size:20px;
    color:#111111;
    margin-bottom:15px;
}

.product-card h4 span{
    color:#999;
    font-size:15px;
    text-decoration:line-through;
}

.product-card button{
    width:auto;
    padding:14px;
    border:none;
    border-radius:12px;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
    flex:1;
}
.related-products .product-buttons{
    display:flex;
    gap:10px;
}

.related-products .product-buttons .btn-cart,
.related-products .product-buttons .btn-buy{
    width:50% !important;
    flex:1;
}

.product-card button:hover{
    background:#000000;

}/* ================= PREMIUM NAVBAR ================= */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:relative;
}

.logo img{
    width:85px;
    height:auto;
}

.nav-right{
    display:flex;
    align-items:center;
    gap:20px;
    text-decoration:none
}

.cart-icon{
    text-decoration:none;
    color:black;
    font-size:20px;
    font-weight:600;
    background:#fff;
    padding:10px 18px;
    border-radius:50px;
    box-shadow:0 8px 20px rgba(0,0,0,.10);
    transition:.3s;
}

.cart-icon:hover{
    background:black;
    color:#fff;
}

.menu-btn{
    display:none;
    font-size:30px;
    cursor:pointer;
    color:black;
}

/* Mobile */

@media(max-width:768px){

    .menu-btn{
         display:none;
    }

    nav{
        display:none;
    }

    nav.active{
    display:block !important;
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:#fff;
    z-index:99999;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    padding:20px 0;
    }

    nav ul{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:18px;
    padding:0;
    margin:0;
    }

    nav ul li{
        margin:15px 0;
        text-align:center;
    }

}/* ================= HERO V2 ================= */

.hero{
    background:linear-gradient(135deg,#eef6ff,#ffffff);
    padding:90px 0;
}

.hero-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero-tag{
    display:inline-block;
    background:#EAF3FF;
    color:black;
    padding:10px 20px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:20px;
}

.hero-content h1{
    font-size:58px;
    color:black;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-content p{
    font-size:18px;
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.btn-outline{
    display:inline-block;
    padding:15px 35px;
    border:2px solid black;
    border-radius:35px;
    text-decoration:none;
    color:black;
    font-weight:600;
    transition:.3s;
}

.btn-outline:hover{
    background:black;
    color:#fff;
}


@media(max-width:768px){

    .hero-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-content h1{
        font-size:38px;
    }

    .hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }
}.section-heading{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:35px;
}

.why-heading{
    justify-content:center;
}

.section-tag{
    font-size:32px;
    font-weight:700;
    color:#111111;
    letter-spacing:0;
    text-transform:uppercase;
}

.view-all{
    text-decoration:none;
    color:#111111;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    transition:.3s;
}

.view-all:hover{
    color:#000000;
}


.product-card{
    position:relative;
}

.product-card img{
    transition:.4s;
}

.product-card:hover img{
    transform:scale(1.08);
}/* HERO FEATURES */

.hero-features{
    display:flex;
    gap:15px;
    margin:25px 0;
    flex-wrap:wrap;
}

.hero-features span{
    background:#fff;
    padding:10px 18px;
    border-radius:30px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    color:black;
    font-size:14px;
    font-weight:600;
    
}/* TRUST SECTION */

.trust{

padding:10px 0 10px;
background:white;

}

.trust-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.trust-box{

background:white;

padding:35px;

text-align:center;

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.4s;

}

.trust-box:hover{

transform:translateY(-10px);

}
.trust{
    padding-top:0;
    padding-bottom:10px;
}

.trust-box h2{

font-size:38px;

color:black;

margin-bottom:10px;

}

.trust-box p{

color:#666;

font-weight:500;

}

@media(max-width:768px){

.trust-grid{

grid-template-columns:1fr 1fr;

}

}/* ===== SECTION HEADING ===== */

.section-heading{
    text-align:center;
    margin-bottom:20px;
}

.section-heading span{

    display:inline-block;

    padding:8px 20px;

    border:1px solid black;

    border-radius:50px;

    background:white;

    color:black;

    font-size:12px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:20px;

}

.section-heading h2{
    font-size:42px;
    color:black;
    margin:12px 0;
}

.section-heading p{
    color:#666;
    max-width:650px;
    margin:auto;
    line-height:1.8;
}

/* ===== SALE BADGE ===== */

.sale-badge{
    position:absolute;
    top:0;
    left:0;
    background:#111;
    color:#fff;
    padding:8px 22px;
    font-size:12px;
    font-weight:600;
    letter-spacing:.5px;
    border-radius:0 0 18px 0;
    z-index:5;
    min-width:110px;
    text-align:center;
    box-shadow:0 3px 8px rgba(0,0,0,.15);
}/* ================= CATEGORY ================= */

.categories{
    padding:40px 0 10px;
    background:white;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

.category-card{
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:22px;
    padding:45px 20px;
    text-align:center;
    transition:.35s;
    cursor:pointer;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.category-card:hover{
    transform:translateY(-10px);
    border-color:black;
}

.category-card h3{
    margin-top:20px;
    color:black;
}

.category-card h3{
    font-size:24px;
    font-weight:700;
    color:#111;
    margin-bottom:10px;
}

.category-card p{
    font-size:15px;
    color:#777;
    line-height:1.6;
}
@media(max-width:992px){

.category-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.category-grid{
    grid-template-columns:1fr;
}

}/* ================= PREMIUM PRODUCT CARDS ================= */

.products{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
    align-items:start;
}

.product-card{
    background:#fff;
    border:1px solid rgba(212,175,55,.15);
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    padding:25px;
    position:relative;
    transition:all .35s ease;
    text-align:center;
    display:flex;
    flex-direction:column;
    height:100%;
}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 22px 45px rgba(0,0,0,.15);

}

.sale-badge{
    position:absolute;
    top:15px;
    left:15px;
    background:black;
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.product-card img{
    width:100%;
    height:180px;
    object-fit:contain;
    margin:20px auto;
    transition:.4s;
}

.product-card:hover img{
    transform:scale(1.08);
}

.rating{
    color:black;
    font-size:14px;
    margin-bottom:10px;
}

.product-card h3{
    color:black;
    margin-bottom:10px;
    font-size:22px;
}

.product-card p{
    color:#666;
    font-size:15px;
    line-height:1.7;
    min-height:50px;
}

.price{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin:0px 0;
}

.new-price{
    color:black;
    font-size:18px;
    font-weight:700;
}

.old-price{
    color:#999;
    text-decoration:line-through;
}

.product-buttons{
    display:flex;
    gap:8px;
    margin-top:12px;
}

.btn-cart{
    width:42px;
    height:42px;
    border:1px solid #111;
    background:#fff;
    color:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:0;
}

.btn-buy{
    flex:1;
    height:42px;
    background:#111;
    color:#fff;
    border:none;
    border-radius:0;
    font-size:14px;
    font-weight:600;
}

.btn-cart:hover{
    background:black;
    transform:translateY(-3px);
}

.btn-buy{
    background:black;
    color:#fff;
}

.btn-buy:hover{
     background:black;
    transform:translateY(-3px);
}

@media(max-width:768px){

.product-buttons{
    flex-direction:column;
}

}/* ================= WHY SECTION ================= */

.why{
    padding:10px 0;
    background:white;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.why-card{
    background:#fff;
    border:1px solid #E7DFC8;
    padding:35px;
    border-radius:20px;
    text-align:center;
     box-shadow:0 12px 30px rgba(0,0,0,.06);
    transition:.35s;
    font-size:42px;
}

.why-card:hover{
    transform:translateY(-8px);

    border-color:black;

    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.why-card h3{
    font-size:22px;
    margin:20px 0 10px;
    color:black;
}

.why-card p{
    color:#666;
    line-height:1.7;
    font-size:15px;
}

@media(max-width:768px){

.why-grid{
    grid-template-columns:repeat(2,1fr);
}

}/* ================= REVIEWS ================= */

.reviews{
    padding:90px 0;
    background:white;
}

.review-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.review-card{
    background:#fff;
    border:1px solid #E7DFC8;
    padding:35px;
    border-radius:20px;
    box-shadow:0 12px 30px rgba(0,0,0,.06);
    transition:.35s;
}

.review-card:hover{
    transform:translateY(-10px);
    border-color:black;
}

.stars{
    color:black;
    font-size:22px;
    margin-bottom:20px;
}

.review-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.review-card h4{
    color:black;
    margin-bottom:5px;
}

.review-card span{
    color:#999;
    font-size:14px;
}

@media(max-width:768px){

.review-grid{
    grid-template-columns:1fr;
}

}/* ================= NEWSLETTER ================= */

.newsletter{
    padding: 25px;
    background:black;

}

.newsletter-box{
    text-align:center;
    color:#fff;
}

.newsletter-box h2{
    font-size:30px;
    margin-bottom:20px;
}

.newsletter-box p{
    max-width:650px;
    margin:auto;
    line-height:1.8;
    margin-bottom:35px;
}

.newsletter-form{
    display:flex;
    justify-content:center;
    max-width:650px;
    margin:auto;
}

.newsletter-form input{
    flex:1;
    padding:18px;
    border:none;
    border-radius:50px 0 0 50px;
    outline:none;
    font-size:16px;
}

.newsletter-form button{
    background:black;
    color:#fff;
    border:none;
    padding:18px 35px;
    border-radius:0 50px 50px 0;
    cursor:pointer;
    font-weight:600;
}

@media(max-width:768px){

.newsletter-form{
    flex-direction:column;
    gap:15px;
}

.newsletter-form input,
.newsletter-form button{
    border-radius:50px;
}

}/* ================= PRODUCTS PAGE ================= */

.page-banner{
    background:linear-gradient(135deg,black,black);
    color:#fff;
    text-align:center;
    padding:10px 10px;
}

.page-banner h1{
    font-size:30px;
    margin-bottom:15px;
}

.page-banner p{
    font-size:48px;
    opacity:.9;
}

.search-section{
    padding:5px 0;
    background:transparent;
}

.search-box{
    width:100%;
    max-width:650px;
    display:block;
    margin:auto;
    padding:18px 25px;
    border-radius:50px;
    border:2px solid #ddd;
    font-size:17px;
    outline:none;
    transition:.3s;
}

.search-box:focus{
    border-color:black;
    box-shadow:0 0 15px rgba(0,59,142,.15);
}/* ================= CART PAGE ================= */

.cart-page{
    padding:30px 0;
    padding-bottom:100px;
}

.cart-card{
    background:#fff;
    border:1px solid #E8DDC5;
    border-radius:18px;
    padding:10px;
    display:flex;
    align-items:center;
    gap:25px;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
    margin-bottom:20px;
}

.cart-card h3{
    color:black;
}

.cart-card p{
    font-size:15px;
    font-weight:700;
    color:black;
}

.remove-btn{
    background:black;
    color:#fff;
    border:none;
    padding:10px 22px;
    border-radius:10px;
    font-size:15px;
    cursor:pointer;
    transition:.3s;
}

.remove-btn:hover{
     background:black;
}

#cartTotal{
    text-align:right;
    margin:30px 0;
    color:black;
    font-size:20px;
}

.empty-cart{
    text-align:center;
    padding:80px 20px;
}

.empty-cart h2{
    color:black;
    margin-bottom:15px;
}/* ================= WISHLIST ================= */

.wishlist{
    position:absolute;
    top:15px;
    right:15px;
    width:42px;
    height:42px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    cursor:pointer;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    transition:.3s;
    user-select:none;
}

.wishlist:hover{
    transform:scale(1.1);
}

.wishlist.active{
    color:#e63946;
}/* ================= CHECKOUT ================= */

.checkout-page{
    padding:80px 0;
}

.checkout-page .container{
    max-width:1200px;
    margin:auto;
}

.checkout-card{
    max-width:100%;
}
.checkout-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
}

.checkout-form,
.order-summary{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.checkout-form h2,
.order-summary h2{
    margin-bottom:20px;
    color:black;
}

.checkout-form form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.checkout-form input,
.checkout-form textarea{
    padding:15px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
    width:100%;
}

.checkout-form textarea{
    min-height:120px;
    resize:vertical;
}

.checkout-item{
    display:flex;
    justify-content:space-between;
    padding:12px 0;
    border-bottom:1px solid #eee;
}

#checkoutTotal{
    margin-top:20px;
    color:black;
    font-size:28px;
}

@media(max-width:768px){

.checkout-grid{
    grid-template-columns:1fr;
}

}/* ================= ORDER SUCCESS ================= */

.success-page{

display:flex;

justify-content:center;

align-items:center;

min-height:80vh;

padding:40px;

background:#f7fbff;

}

.success-box{

background:white;

padding:50px;

border-radius:25px;

text-align:center;

box-shadow:0 20px 45px rgba(0,0,0,.08);

max-width:550px;

width:100%;

}

.success-icon{

font-size:70px;

margin-bottom:20px;

}

.success-box h1{

color:black;

font-size:42px;

margin-bottom:15px;

}

.success-box p{

font-size:18px;

color:#666;

margin-bottom:25px;

}

#orderID{

margin-bottom:35px;

color:black;

font-size:24px;

}.cart-image{
    width:110px;
    height:110px;
    object-fit:cover;
    border-radius:12px;
    border:1px solid black;
}/* ================= CART UI ================= */

.cart-card{
    display:flex;
    align-items:center;
    gap:25px;
    background:#fff;
    border-radius:20px;
    padding:25px;
    margin-bottom:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.cart-image{
    width:110px;
    height:110px;
    object-fit:contain;
    flex-shrink:0;
}

.cart-details{
    flex:1;
}

.cart-details h3{
    font-size:28px;
    font-weight:700;
    color:black;
    margin-bottom:12px;
}

.cart-details p{
    font-size:20px;
    color:#444;
    margin:8px 0;
}

.remove-btn{
    background:black;
    color:#fff;
    border:none;
    padding:12px 22px;
    border-radius:10px;
    cursor:pointer;
    font-weight:600;
}

.remove-btn:hover{
    background:black;
}/* ================= PRODUCT DETAILS ================= */

.product-details{
    padding:80px 0;
    background:#F8F6F1;
}

.product-layout{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.product-image{
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    text-align:center;
}

.product-image img{
    width:100%;
    max-width:420px;
    margin:auto;
    transition:.4s;
}

.product-image img:hover{
    transform:scale(1.05);
}

.product-info h2{
    font-size:42px;
    color:black;
    margin:15px 0;
}

.product-info .rating{
    color:black;
    font-size:18px;
    margin-bottom:15px;
}

.product-info .price{
    margin:20px 0;
}

.product-info .new-price{
    font-size:36px;
    color:black;
    font-weight:700;
}

.product-info .old-price{
    margin-left:12px;
    color:#999;
    text-decoration:line-through;
    font-size:22px;
}

.product-info p{
    color:#666;
    line-height:1.8;
    margin:25px 0;
}

.product-info ul{
    list-style:none;
    margin-bottom:30px;
}

.product-info ul li{
    margin:12px 0;
    font-size:17px;
}

.product-info .product-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.product-info .product-buttons button{
    min-width:180px;
}

@media(max-width:768px){

.product-layout{
    grid-template-columns:1fr;
}

.product-info{
    text-align:center;
}

.product-info ul{
    text-align:left;
    display:inline-block;
}

.product-buttons{
    justify-content:center;
}

}.qty-box{
    display:flex;
    align-items:center;
    gap:12px;
    margin:15px 0;
}

.qty-box button{
    width:42px;
    height:42px;
    border:none;
    border-radius:10px;
    background:black;
    color:#fff;
    font-size:24px;
    cursor:pointer;
}

.qty-box span{
    font-size:22px;
    font-weight:600;
    min-width:30px;
    text-align:center;
}

.subtotal{
    font-weight:700;
    color:black;
    margin:10px 0;
}/* ==========================
PAYMENT METHOD
========================== */

.payment-method{

    margin:25px 0;

}

.payment-method h3{

    margin-bottom:15px;

    font-size:20px;

    color:black;

}

.payment-option{

    display:block;

    padding:15px;

    border:1px solid #ddd;

    border-radius:10px;

    margin-bottom:12px;

    cursor:pointer;

    transition:.3s;

}

.payment-option:hover{

    border-color:black;

}

.payment-option input{

    margin-right:10px;

}/* ==========================
UPI PAYMENT
========================== */

#upiSection{

    margin-top:25px;

    padding:20px;

    border:1px solid #ddd;

    border-radius:12px;

    text-align:center;

    background:#fafafa;

}

.upi-qr{

    width:220px;

    margin:20px auto;

    display:block;

}

.upi-id{

    font-size:18px;

    margin:15px 0;

    color:black;

}

#transactionID{

    width:100%;

    padding:12px;

    border:1px solid #ccc;

    border-radius:8px;

}.btn-copy{

    margin:10px 0 20px;
    padding:10px 20px;
    background:black;
    color:#fff;
    border:none;
    border-radius:8px;
    cursor:pointer;
    transition:.3s;

}

.btn-copy:hover{

    background:WHO;
    color:#000;

}/* ==========================
ORDERS
========================== */

.empty-orders{

    text-align:center;
    padding:60px 20px;

}

.empty-orders h2{

    color:#003b8e;
    margin-bottom:10px;

}

.empty-orders p{

    margin-bottom:20px;
    color:#666;

}/* ==========================
ORDER CARD
========================== */

.order-card{

    background:#fff;
    padding:35px;
    border-radius:20px;
    margin-bottom:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.order-top{

    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;

}

.order-top h3{

    color:black;

}

.order-status{

    background:#28a745;
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;


}/* Ordered Product */

.ordered-product{

    display:flex;
    align-items:center;
    gap:30px;
    margin-top:20px;
    padding-top:25px;
    border-top:1px solid #eee;

}

.ordered-image{

    width:120px;
    height:120px;
    object-fit:contain;
    flex-shrink:0;
}

.ordered-info{

    flex:1;
}

.ordered-info h4{

    font-size:20px;
    color:black;
    margin-bottom:8px;
}

.ordered-info p{

    margin:6px 0;
    color:#555;
}

.ordered-info strong{

    font-size:20px;
    color:#111;
}
.ordered-info{

    flex:1;

}

.ordered-info h4{

    margin-bottom:6px;
    color:BLACK;

}

.ordered-info p{

    margin:4px 0;

}.btn-secondary{

    display:inline-block;
    margin-top:15px;
    margin-left:10px;

    background:#ffffff;
    color:black;

    border:2px solid BLACK;

}

.btn-secondary:hover{

    background:BLACK;
    color:#fff;

}/* ================= TOP SCROLL BAR ================= */

.top-bar{
    background:#111111;
    color:#fff;
    overflow:hidden;
    white-space:nowrap;
    padding:10px 0;
}

.top-scroll{
    display:inline-block;
    padding-left:100%;
    animation:scrollText 18s linear infinite;
    font-weight:600;
}

@keyframes scrollText{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-100%);
    }
}/* ================= CONTACT PAGE ================= */

.contact-hero{
    padding:35px 0 15px;
    background:white;
    text-align:center;
}

.contact-hero h1{
    font-size:52px;
    color:black;
    margin:20px 0;
}

.contact-hero p{
    max-width:700px;
    margin:0 auto 20px;
    color:#666;
    line-height:1.8;
    font-size:18px;
}

.contact-info{
    padding:15px 0 50px;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.contact-card{
    background:#fff;
    border:1px solid black;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.06);
    transition:.35s;
}

.contact-card:hover{
    transform:translateY(-8px);
}

.contact-icon{
    font-size:40px;
    margin-bottom:20px;
}

.contact-card h3{
    color:black;
    margin-bottom:15px;
}

.contact-card p{
    color:#666;
    line-height:1.8;
}

@media(max-width:768px){

    .contact-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:480px){

    .contact-grid{
        grid-template-columns:1fr;
    }

    .contact-hero h1{
        margin:10px 0;
    }

}/* CONTACT FORM */

.contact-form-section{

    padding:80px 0;

}

.form-box{

    background:#fff;
    border:1px solid #E7DFC8;
    padding:60px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    height:100%;

}

.form-box h2{

    text-align:center;

    color:black;

    font-size:38px;

    margin-bottom:15px;

}

.form-box p{

    text-align:center;

    color:#666;

    max-width:650px;

    margin:0 auto 40px;

    line-height:1.8;

}

.form-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

    margin-bottom:20px;

}

.form-box input,
.form-box textarea{

    width:100%;

    padding:18px;

    border:1px solid #ddd;

    border-radius:12px;

    font-size:16px;

    font-family:Poppins,sans-serif;

    outline:none;

    transition:.3s;

}

.form-box input:focus,
.form-box textarea:focus{

    border-color:black;

}

.form-box textarea{

    resize:none;

    margin-bottom:25px;

}

.form-box .btn{

    width:100%;

}

@media(max-width:768px){

.form-row{

grid-template-columns:1fr;

}

.form-box{

padding:30px;

}

}/* WHATSAPP SUPPORT */

.whatsapp-support{

    padding:20px 0 80px;

}

.whatsapp-box{

    background:linear-gradient(135deg,#1FAF5A,#128C4A);
    border-radius:25px;
    padding:60px;
    text-align:center;
    color:white;
    box-shadow:0 20px 45px rgba(0,0,0,.12);

     display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;

    height:100%;

}

.whatsapp-icon{

    font-size:60px;

    margin-bottom:20px;

}

.whatsapp-box h2{

    font-size:42px;

    margin-bottom:20px;

}

.whatsapp-box p{

    max-width:700px;

    margin:auto;

    line-height:1.8;

    margin-bottom:35px;

}

.whatsapp-btn{

    display:inline-block;

    background:white;

    color:#25D366;

    padding:16px 40px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.whatsapp-btn:hover{

    transform:translateY(-4px);

}/* FAQ */

.faq-section{
    padding:80px 0;
}

.faq-section h2{
    text-align:center;
    color:black;
    font-size:40px;
    margin-bottom:50px;
}

.faq-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.faq-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.faq-card h3{
    color:black;
    margin-bottom:15px;
}

.faq-card p{
    color:#666;
    line-height:1.8;
}

@media(max-width:768px){

    .faq-grid{
        grid-template-columns:1fr;
    }

}/* CONTACT + WHATSAPP */

.contact-bottom{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:35px;

    align-items:stretch;

    padding:70px 0;

}

@media(max-width:768px){

.contact-bottom{

grid-template-columns:1fr;

}

}.contact-bottom{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:30px;

    align-items:stretch;

}

@media(max-width:768px){

.contact-bottom{

grid-template-columns:1fr;

}

}/* ================= FULL WIDTH BANNER ================= */

.hero-banner{

    width:100%;
    margin:0;
    padding:0;

}

.hero-banner a{

    display:block;

}

.hero-banner img{

    width:100%;
    display:block;
    object-fit:cover;

    cursor:pointer;

    transition:.3s ease;

}

.hero-banner img:hover{

    transform:scale(1.01);

}/* ================= PREMIUM FOOTER ================= */

.footer{
    background:#ffffff;
    color:#111111;
    padding:10px 0 15px;

    border-top:1px solid #111111;
    margin-top:60px;
    padding-top:10px;
}


.footer-newsletter h2{

    font-size:42px;
    margin-bottom:10px;
    color:#111111;

}

.footer-newsletter p{

    color:#666666;
    margin-bottom:20px;
    font-size:17px;



}

.newsletter-form button:hover{

    background:#C69A18;

}

.footer hr{

    border:none;
    height:1px;
    background:#e5e5e5;
    margin:45px 0;

}

.footer-grid{

    display:grid;
    grid-template-columns:1.2fr 1fr 1fr 1fr;
    gap:50px;
    padding:0px 0 0px;
    align-items:start;

}

.footer-grid h3,
.footer-grid h4{

    font-size:26px;
    margin-bottom:18px;
    color:#111111;

}

.footer-grid p,
.footer-grid li{

    color:#111111;
    font-size:17px;
    line-height:1.8;
    list-style:none;

}

.footer-grid ul{

    padding:0;
    margin:0;

}

.footer-grid a{

    color:#111111 !important;
    text-decoration:none;
    transition:.3s;

}

.footer-grid a:hover{

    color:#000000;

}

.footer-bottom{

    text-align:center;
    margin-top:10px;
    font-size:16px;
    padding-top:0px;
    border-top:1px solid #e5e5e5;
    color:#111111;

}

@media(max-width:768px){

    .footer-grid{

        grid-template-columns:1fr;
        text-align:center;

    }

    .newsletter-form{

        flex-direction:column;
        border-radius:20px;

    }

    .newsletter-form button{

        padding:8px;

    }

}/* ================= ABOUT PAGE ================= */

.about-hero{

    background:white;
    padding:10px 0;
    text-align:center;

}

.about-hero h1{

    font-size:52px;
     color:WHITE;
    margin:20px 0;

}

.about-hero p{

    max-width:750px;
    margin:auto;
    color:#666;
    line-height:1.8;

}

/* ================= STORY ================= */

.about-story{

    padding:80px 0;

}

.about-content{

    max-width:900px;
    margin:auto;

}

.about-text h2{

    text-align:center;
    color:BLACK;
    font-size:40px;
    margin-bottom:25px;

}

.about-text p{

    color:BLACK;
    line-height:1.9;
    font-size:17px;
    margin-bottom:18px;
    text-align:center;

}

/* ================= MISSION ================= */

.mission{

    padding:80px 0;
    background:white;

}

.mission h2{

    text-align:center;
    color:black;
    font-size:40px;
    margin-bottom:50px;

}

.mission-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.mission-card{

    background:#fff;
    border:1px solid #E7DFC8;
    border-radius:20px;
    padding:35px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.06);
    transition:.35s;

}

.mission-card:hover{

    transform:translateY(-8px);
    border-color:black;

}

/* ================= BRAND PROMISE ================= */

.brand-promise{

    padding:80px 0;
    text-align:center;

}

.brand-promise h2{

    color:#465D3C;
    font-size:40px;
    margin-bottom:20px;

}

.brand-promise p{

    max-width:800px;
    margin:auto;
    color:#666;
    line-height:1.9;

}

/* ================= CTA ================= */

.about-cta{

    padding:80px 0;
    background:white;
    text-align:center;
    color:black;

}

.about-cta h2{

    color:#fff;
    font-size:42px;
    margin-bottom:20px;

}

.about-cta p{

    color:#111111 !important;
    margin-bottom:30px;

}

/* ================= MOBILE ================= */

@media(max-width:768px){

.about-hero h1{

    font-size:36px;

}

.mission-grid{

    grid-template-columns:1fr;

}

}/* ================= FOOTER LOGO ================= */

.footer-brand{

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;

}

.footer-logo{

    margin-top:10px;
    text-align:center;
    max-width:90px;
    line-height:1.8;

}

.footer-logo:hover{

    transform:scale(1.05);

}/* ================= COUPON ================= */

.coupon-box{

    display:flex;
    gap:10px;
    margin:25px 0;

}

.coupon-box input{

    flex:1;
    padding:14px;
    border:1px solid #ddd;
    border-radius:10px;

}

.coupon-box button{

    background:#465D3C;
    color:#fff;
    border:none;
    padding:0 22px;
    border-radius:10px;
    cursor:pointer;

}

#couponMessage{

    margin-top:10px;
    font-weight:600;

}/* ================= SECTION TAG ================= */

.section-tag{
    display:inline-block;
    padding:8px 20px;
    border:1px solid black;
    border-radius:50px;
    background:white;
    color:black;
    font-size:12px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:20px;
}/* Hide Mobile Bottom Navigation on Desktop */

.mobile-bottom-nav{
    display:none;
}/* Hide Mobile Bottom Navigation on Desktop */

.mobile-bottom-nav{
    display:none;
}

@media (max-width:768px){

.mobile-bottom-nav{

    position:fixed;

    bottom:12px;

    left:12px;

    right:12px;

    height:72px;

    display:flex !important;

    justify-content:space-around;

    align-items:center;

    background:#fff;

    border:1px solid #ececec;

    border-radius:24px;

    box-shadow:0 10px 30px rgba(0,0,0,.10);

    z-index:9999;

}

.mobile-bottom-nav a{
    color:#ffffff;
}

.mobile-bottom-nav a.active{
    color:white;
}

}/* ===============================
   DESKTOP PRODUCTS PAGE
================================ */

@media (min-width:769px){

.page-products .container{
    max-width:1600px !important;
    width:98% !important;
}

.page-products .products{
    grid-template-columns:repeat(5,1fr);
    gap:35px;
}

}/* ===============================
   PRODUCTS PAGE DESKTOP FIX
================================ */

@media (min-width:769px){

.products.products-page{
    display:grid !important;
    grid-template-columns:repeat(3,1fr) !important;
    gap:30px !important;
    width:100% !important;
}

.products.products-page .product-card{
    width:100% !important;
    max-width:none !important;
    margin:0 !important;
}

}/* ===============================
   ACCOUNT PAGE
================================ */

.profile-card{
    display:flex;
    align-items:center;
    gap:15px;
    padding:20px;
    background:#fff;
    border:1px solid #E7DFC8;
    border-radius:15px;
    margin-bottom:20px;
}

.profile-avatar{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#465D3C;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
}

.profile-info h3{
    margin:0;
    color:black;
}

.profile-info p{
    margin-top:5px;
    color:#666;
}

.account-menu{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin:20px 0;
}

.account-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 18px;
    background:#fff;
    border:1px solid #E7DFC8;
    border-radius:12px;
    text-decoration:none;
    color:#333;
    transition:.3s;
}

.account-item:hover{
    background:white;
    border-color:black;
}

#logoutBtn{
    width:100%;
    margin-top:20px;
    background:#d9534f;
}

#logoutBtn:hover{
    background:#c9302c;
}.saved-address-card{
    background:#fff;
    border-radius:18px;
    padding:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    margin-bottom:20px;
}

.saved-address-card h3{
    color:black;
    margin-bottom:15px;
}

.saved-address-card p{
    margin:8px 0;
    font-size:15px;
    color:#444;
    line-height:1.6;
}

.saved-address-card .btn{
    width:100%;
    margin-top:20px;
}.btn-danger{
    background:#d9534f;
    color:#fff;
    margin-top:10px;
}

.btn-danger:hover{
    background:#c9302c;
}/* ===============================
   ACCOUNT PAGE DESKTOP
================================ */

.account-layout{
    display:grid;
    grid-template-columns:340px 1fr;
    gap:35px;
}

.profile-card{
    align-items:center;
}

.account-menu{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.account-item{
    min-height:75px;
    font-size:17px;
    font-weight:600;
}

.account-item span:last-child{
    font-size:24px;
    color:black;
}

#profileForm{
    margin-top:30px;
}

#profileForm input{
    width:100%;
    margin-bottom:18px;
}

#logoutBtn{
    margin-top:30px;
}

/* Mobile */

@media(max-width:768px){

.account-layout{
    display:block;
}

.account-menu{
    display:flex;
    flex-direction:column;
}

}/* ==========================
DESKTOP USER DROPDOWN
========================== */

.user-dropdown{

position:relative;

}

.user-dropdown-menu{

position:absolute;

top:55px;

right: -20px;

background:#fff;

width:240px;

border-radius:12px;

box-shadow:0 15px 40px rgba(0,0,0,.15);

display:none;

overflow:hidden;

z-index:999;

}

.user-dropdown-menu a{

display:block;

padding:15px 20px;

color:#333;

text-decoration:none;

font-weight:500;

border-bottom:1px solid #eee;

transition:.3s;

}

.user-dropdown-menu a:hover{
    background:#f5f5f5;
    color:#111111;
}

.show-dropdown{

display:block;

}

/* Mobile */

@media(max-width:768px){

.user-dropdown{

display:none;

}

.user-dropdown > a{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    color:#111111;
    font-weight:600;
    text-decoration:none;
    cursor:pointer;
    line-height:1;
}
.user-dropdown > a i,
.user-dropdown > a svg{
    display:flex;
    align-items:center;
    justify-content:center;
}

.user-dropdown > a::after{
    font-size:12px;
    position:relative;
    top:-1px;
}

.user-dropdown > a:hover{
    color:#d4af37;
    }

}/* =====================================
ACCOUNT DASHBOARD (DESKTOP ONLY)
===================================== */

@media (min-width:769px){

.account-layout{
    display:flex;
    gap:40px;
    align-items:flex-start;
}

.checkout-form{
    width:380px;
    flex-shrink:0;
}

.account-dashboard{
    flex:1;
}

.welcome-card{
    background:#fff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    margin-bottom:25px;
}

.welcome-card h2{
    color:black;
    margin-bottom:10px;
}

.dashboard-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:25px;
}

.dashboard-card{
    background:#fff;
    border-radius:18px;
    padding:25px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
    cursor:pointer;
}

.dashboard-card:hover{
    transform:translateY(-5px);
}

.dashboard-card h3{
    color:black;
    margin-bottom:15px;
}

.dashboard-card span{
    font-size:32px;
    font-weight:700;
    color:#d4af37;
}

.recent-card{
    background:#fff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.recent-card h3{
    color:black;
    margin-bottom:15px;
}

.recent-card li{
    margin:10px 0;
}

/* Mobile */

.desktop-only{
    display:block;
}

}

@media(max-width:768px){

.desktop-only{
    display:none;
}

}.dashboard-card{
    cursor:pointer;
}

.dashboard-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}.profile-info p{
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    font-size:16px;
    line-height:1.5;
}.profile-info{
    flex:1;
    min-width:0;
}/* ==========================
   RELATED PRODUCTS
========================== */

.related-products{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,280px));
    justify-content:center;
    gap:20px;
}

@media(max-width:768px){

.related-products{

    display:flex;
    flex-direction:column;
    gap:20px;

}

.related-products .product-card{

    width:100%;
    max-width:100%;

}

.related-products .product-card img{

    width:100%;
    height:180px;
    object-fit:contain;
    margin:auto;

}

}.product-details .sale-badge{
    display:none;
}/* Products page only */

.products-banner-custom{
    padding:35px 0 15px;
}@media (max-width:1200px){
    .products{
        grid-template-columns:repeat(4,1fr);
    }
}

@media (max-width:992px){
    .products{
        grid-template-columns:repeat(3,1fr);
    }
}

@media (max-width:768px){
    .products{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:480px){
    .products{
        grid-template-columns:1fr;
    }
}/* ==========================
   CATEGORY MOBILE SLIDER
========================== */

@media (max-width:768px){

    .categorySwiper{
        overflow:visible;
        padding:10px 0 30px;
    }

    .categorySwiper .swiper-slide{
        width:260px;
        transition:.35s;
    }

    .categorySwiper .category-card{
        min-height:220px;
    }


}/* ===== DESKTOP CATEGORY FIX ===== */
@media (min-width: 993px){

.categorySwiper{
    overflow: visible !important;
}

.categorySwiper .swiper-wrapper{
    display:grid !important;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
    transform:none !important;
}

.categorySwiper .swiper-slide{
    width:auto !important;
    margin:0 !important;
}

.categorySwiper .category-card{
    height:220px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

}/* ================= DESKTOP FIX ================= */

@media (min-width:769px){

/* CATEGORY */

.categorySwiper .swiper-wrapper{
    display:grid !important;
    grid-template-columns:repeat(5,1fr) !important;
    gap:25px;
    transform:none !important;
}

.categorySwiper .swiper-slide{
    width:auto !important;
    margin:0 !important;
}

/* PRODUCTS */

.productSwiper .swiper-wrapper{
    display:grid !important;
    grid-template-columns:repeat(5,1fr) !important;
    gap:20px;
    transform:none !important;
}

.productSwiper .swiper-slide{
    width:auto !important;
    margin:0 !important;
}

}/* ================= MOBILE PROMO VIDEO ================= */

.promo-video{
    display:none;
}

@media (max-width:768px){

.promo-video{

    position:fixed;
    right:12px;
    bottom:85px;

    width:150px;

    border-radius:16px;
    overflow:hidden;

    background:#fff;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    z-index:99999;

}

.promo-video video{

    width:100%;
    display:block;

}

#closePromo{

    position:absolute;
    top:6px;
    right:6px;

    width:24px;
    height:24px;

    border:none;
    border-radius:50%;

    background:#000;
    color:#fff;

    cursor:pointer;

    z-index:2;

}

}/* ================= DESKTOP HOME BUTTON FIX ================= */

@media (min-width:769px){

#homeProducts .btn-cart{

    width:100% !important;
    height:48px !important;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid #111;
    background:#fff;
    color:#111;

    font-size:15px;
    font-weight:600;

}

#homeProducts .btn-cart:hover{

    background:#111 !important;
    color:#fff !important;

}

}/* ================= RELATED PRODUCT BUTTON FIX ================= */

.related-products .product-buttons{
    display:block !important;
}

.related-products .btn-cart{
    width:100% !important;
    height:58px !important;

    border:1.5px solid #111;
    border-radius:18px;

    background:#fff;
    color:#111;

    font-size:16px;
    font-weight:700;

    display:flex;
    justify-content:center;
    align-items:center;
}

.related-products .btn-cart:hover{
    background:#111 !important;
    color:#fff !important;
}.product-buttons{
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-buttons .btn-cart{
    width: 180px; 
    margin: 0 auto;
}#hearts-container{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    overflow:hidden;
    pointer-events:none;
    z-index:9999;
}

.heart{
    position:absolute;
    top:-50px;
    animation:petalFall linear forwards;
    pointer-events:none;
}

@keyframes petalFall{

    0%{
        transform:translateY(-80px) rotate(0deg);
        opacity:1;
    }

    25%{
        transform:translate(20px,25vh) rotate(80deg);
    }

    50%{
        transform:translate(-25px,50vh) rotate(180deg);
    }

    75%{
        transform:translate(15px,75vh) rotate(260deg);
    }

    100%{
        transform:translate(-10px,110vh) rotate(360deg);
        opacity:0;
    }

}/* ADD TO CART BUTTON FIX */

.btn-cart{
    background:#fff !important;
    color:#111 !important;
    border:1px solid #111 !important;
}

.btn-cart:hover{
    background:#111 !important;
    color:#fff !important;
}

.btn-cart:focus,
.btn-cart:active{
    background:#fff !important;
    color:#111 !important;
    outline:none;
}

.btn-cart:disabled{
    background:#fff !important;
    color:#111 !important;
    opacity:1;
}.coupon-applied{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:10px;
    padding:10px 12px;
    background:#f4fff4;
    border:1px solid #cfe8cf;
    border-radius:8px;
}

.coupon-name{
    color:#1b7a2f;
    font-weight:600;
    font-size:14px;
}

.remove-coupon{
    background:none;
    border:none;
    color:#d32f2f;
    font-size:13px;
    font-weight:600;
    cursor:pointer;
}

.remove-coupon:hover{
    text-decoration:underline;
}/* ===========================
   CHECKOUT MOBILE UI
=========================== */

@media (max-width:768px){

#checkoutTotal{
    margin-top:18px;
    border-top:1px dashed #e5e5e5;
    padding-top:18px;
}

#checkoutTotal p,
#checkoutTotal h3{

    display:flex;
    justify-content:space-between;
    align-items:center;

    font-size:15px;
    font-weight:500;

    margin:14px 0;

}

#checkoutTotal h3{

    font-size:15px;
    font-weight:700;

}

#checkoutTotal p:last-of-type{

    color:#16a34a;
    font-weight:600;

}

}/* ===========================
   ORDER SUMMARY
=========================== */

.summary-row{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:12px 0;

    border-bottom:1px solid #ececec;

    font-size:16px;
    font-weight:500;
}

.summary-row:last-child{
    border-bottom:none;
}

.discount-row{
    color:#0f9d58;
    font-weight:600;
}

.total-row{

    font-size:18px;
    font-weight:700;

    margin-top:5px;

}@media(max-width:768px){

.summary-row{

    font-size:15px;

    padding:10px 0;

}

.total-row{

    font-size:16px;

}

}/* ==========================
CHECKOUT PAGE
========================== */

.checkout-card{

    background:#fff;
    border-radius:20px;
    padding:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.saved-address{

background:#fff;

border:1px solid #e5e5e5;

padding:25px;

border-radius:18px;

margin-bottom:25px;

}

.saved-address h3{

    font-size:22px;
    margin-bottom:8px;
    color:#111;

}

.saved-address p{

    margin:5px 0;
    color:#555;
    line-height:1.6;

}

/* ==========================
ORDER SUMMARY
========================== */

.checkout-summary{

    background:#fafafa;
    border:1px solid #ececec;
    border-radius:16px;
    padding:18px;
    margin:25px 0;

}

.checkout-summary h3{

    font-size:20px;
    margin-bottom:18px;
    color:#111;

}

.summary-row{

    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:12px;

}

.summary-row span{

    color:#666;

}

.summary-row strong{

    color:#111;

}

.summary-total{

    display:flex;
    justify-content:space-between;
    align-items:center;

    margin-top:15px;
    padding-top:15px;

    border-top:1px solid #ddd;

    font-size:22px;
    font-weight:700;

}

.summary-total strong{

    color:#111;

}

/* ==========================
PAYMENT
========================== */

.payment-option{

    display:flex;
    align-items:center;
    gap:10px;

    border:1px solid #ddd;
    border-radius:12px;

    padding:15px;

    margin-bottom:12px;

    cursor:pointer;

    transition:.3s;

}

.payment-option:hover{

    border-color:#000;
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(0,0,0,.08);

}

/* ==========================
BUTTONS
========================== */

#newAddressBtn,
#saveAddressBtn,
#placeOrderBtn{

    width:100%;
    margin-top:15px;

    border-radius:12px;

    padding:14px;

    font-size:16px;
    font-weight:600;

}

/* ==========================
MOBILE
========================== */

@media(max-width:768px){

.checkout-card{

    padding:18px;

}

.saved-address h3{

    font-size:18px;

}

.summary-total{

    font-size:18px;

}

}/* ==========================
BACK TO ACCOUNT
========================== */

.back-account{

    margin:20px 0;
    margin-bottom:30px;

}

.back-account a{

    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    background:#fff;
    font-size:16px;
    padding:12px 22px;
    border:1px solid #ddd;
    border-radius:30px;
    color:#111;
    font-weight:600;
    text-decoration:none;
    transition:.3s;

}

.back-account a:hover{

    background:#111;

    color:#fff;

}/* ==========================
TERMS CHECKBOX
========================== */

.terms-box{
    margin:18px 0;
}

.terms-box label{
    display:flex;
    align-items:flex-start;
    gap:10px;
    font-size:14px;
    line-height:1.6;
    color:#555;
    cursor:pointer;
}

.terms-box input[type="checkbox"]{
    width:18px;
    height:18px;
    margin-top:2px;
    flex-shrink:0;
    accent-color:#0f7b5f;
}

.terms-box a{
    color:#0f7b5f;
    font-weight:600;
    text-decoration:none;
}

.terms-box a:hover{
    text-decoration:underline;
}/* ==========================
MOBILE BOTTOM NAV ICONS
========================== */

.mobile-bottom-nav svg{

    width:24px;
    height:24px;

    fill:none;

    stroke:#fff;

    stroke-width:2;

    stroke-linecap:round;

    stroke-linejoin:round;

    transition:.3s;

}

.mobile-bottom-nav a{

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    gap:5px;

    flex:1;

    color:#fff;

    text-decoration:none;

    position:relative;

}

.mobile-bottom-nav a small{

    color:#fff;

    font-size:10px;

    font-weight:500;

    letter-spacing:.3px;

}

.mobile-bottom-nav a.active{

    font-weight:700;

}

.mobile-bottom-nav a.active svg{

    transform:scale(1.1);

}

.mobile-bottom-nav a.active::after{

    content:"";

    position:absolute;

    bottom:6px;

    width:22px;

    height:2px;

    background:#fff;

    border-radius:20px;

}.forgot-password{
    text-align:right;
    margin:10px 0 20px;
}

.forgot-password a{
    color:#2563eb;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
}

.forgot-password a:hover{
    text-decoration:underline;
}/* Toast Notification */

.toast{
    position:fixed;
    bottom:90px;
    left:50%;
    transform:translateX(-50%) translateY(100px);
    background:#111;
    color:#fff;
    padding:14px 22px;
    border-radius:12px;
    font-size:15px;
    font-weight:500;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    opacity:0;
    transition:.35s;
    z-index:99999;
    max-width:90%;
    text-align:center;
}

.toast.show{
    opacity:1;
    transform:translateX(-50%) translateY(0);
}.cancel-order-btn{

    margin-top:15px;
    background:#d32f2f;
    color:#fff;
    border:none;
    padding:10px 18px;
    border-radius:8px;
    cursor:pointer;
    font-weight:600;

}

.cancel-order-btn:hover{

    background:#b71c1c;

}@media (min-width:769px){

.navbar{
    display:grid !important;
    grid-template-columns:220px 1fr 220px;
    align-items:center;
}

.logo{
    justify-self:start;
}

nav{
    justify-self:center;
}

nav ul{
    display:flex;
    gap:40px;
    justify-content:center;
}

.nav-right{
    justify-self:end;
}

}header{
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
}header.scrolled{
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}/* ===========================
   POLICY HERO
=========================== */

.policy-hero{
    background:linear-gradient(135deg,#f8f8f8,#ffffff);
    padding:30px 20px;
    text-align:center;
    border-bottom:1px solid #eee;
}

.policy-hero h1{
    font-size:48px;
    margin-bottom:15px;
    color:#222;
}

.policy-hero p{
    color:#666;
    font-size:18px;
}

/* ===========================
   PAGE LAYOUT
=========================== */

.policy-page{
    padding:60px 0;
    background:#fafaf7;
}

.policy-wrapper{
    display:grid;
    grid-template-columns:280px 1fr;
    gap:40px;
}

/* ===========================
   SIDEBAR
=========================== */

.policy-sidebar{
    position:sticky;
    top:100px;
    background:#fff;
    border-radius:15px;
    padding:25px;
    height:fit-content;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.policy-sidebar h3{
    margin-bottom:20px;
}

.policy-sidebar a{
    display:block;
    padding:14px 16px;
    color:#444;
    text-decoration:none;
    border-radius:10px;
    transition:.3s;
    margin-bottom:8px;
    font-weight:500;
}

.policy-sidebar a:hover{
    background:#dff5e5;
    color:#2e7d32;
    padding-left:22px;
}

/* ===========================
   CONTENT
=========================== */

.policy-content{
    background:#fff;
    padding:50px;
    border-radius:18px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.policy-content h2{
    font-size:36px;
    margin-bottom:18px;
    color:#222;
}

.policy-content h3{
    margin-top:25px;
}

.policy-content section{
    margin-bottom:60px;
}

.policy-content p,
.policy-content li{
    line-height:1.9;
    color:#555;
}

.policy-content ul{
    padding-left:20px;
}

.policy-content hr{
    margin:45px 0;
    border:none;
    border-top:1px solid #eee;
}

/* ===========================
   MOBILE
=========================== */

@media(max-width:992px){

.policy-wrapper{
    grid-template-columns:1fr;
}

.policy-sidebar{
    position:relative;
    top:0;
}

}

@media(max-width:768px){

.policy-hero{
    padding:45px 20px;
}

.policy-hero h1{
    font-size:42px;
}

.policy-content{
    padding:25px;
}

.policy-sidebar{
    padding:20px;
}

}.policy-actions{
    text-align:left;
    margin-bottom:25px;
}

.back-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    background:#fff;
    border:1px solid #ddd;
    border-radius:30px;
    text-decoration:none;
    color:#333;
    font-weight:600;
    transition:.3s;
}

.back-btn:hover{
    background:#222;
    color:#fff;
    border-color:#222;
}.terms-box a{
    color:#0b7a5a;
    font-weight:600;
    text-decoration:none;
}

.terms-box a:hover{
    text-decoration:underline;
}.mute-btn{
    position:absolute;
    bottom:15px;
    left:15px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,.6);
    color:#fff;
    font-size:18px;
    cursor:pointer;
    z-index:10;
    backdrop-filter:blur(8px);
    background:rgba(0,0,0,.45);
    transition:.3s;
    
}

.mute-btn:hover{
    transform:scale(1.08);
}.promo-video{
    animation:popup .35s ease;
}

@keyframes popup{
    from{
        transform:scale(.8);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}