
    /* CART DRAWER */

.cart-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.4);
    opacity:0;
    pointer-events:none;
    transition:.3s;
    z-index:9998;
}

.cart-drawer{
    position:fixed;
    top:0;
    right:-420px;
    width:380px;
    height:100%;
    background:#fff;
    box-shadow:-10px 0 40px rgba(0,0,0,.2);
    z-index:9999;
    transition:.4s;
    display:flex;
    flex-direction:column;
}

.cart-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px;
    border-bottom:1px solid #eee;
}

.cart-header i{
    cursor:pointer;
    font-size:20px;
}

.cart-items{
    flex:1;
    overflow:auto;
    padding:20px;
}

.cart-item{
    display:flex;
    gap:15px;
    margin-bottom:20px;
}

.cart-item img{
    width:60px;
}

.cart-footer{
    padding:20px;
    border-top:1px solid #eee;
}

.checkout-btn{
    width:100%;
    background:#2f5d3a;
    color:#fff;
    border:none;
    padding:12px;
    border-radius:30px;
    font-weight:600;
}

body{font-family:'Segoe UI',sans-serif}

.user-dropdown{
    border-radius:14px;
    padding:10px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.user-dropdown .dropdown-item{
    padding:10px 14px;
    border-radius:8px;
    font-weight:500;
}

.user-dropdown .dropdown-item:hover{
    background:#fff6da;
}

.typing-container{
    font-size:48px;
    font-weight:800;
    color:#2f5d3a;
}
.typing-container{
    font-size:48px;
    font-weight:900;
    background:linear-gradient(90deg,#1f7a4a,#2f5d3a,#9c6b1f);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    text-shadow:0 10px 30px rgba(47,93,58,.25);
    min-height:60px;
}

.cursor{
    display:inline-block;
    width:4px;
    height:48px;
    background:#2f5d3a;
    margin-left:6px;
    animation:blink 1s infinite;
}

@keyframes blink{
    0%,50%,100%{opacity:1}
    25%,75%{opacity:0}
}

@media(max-width:768px){
    .typing-container{font-size:30px}
    .cursor{height:30px}
}
/* TOP STRIP */
/* .top-strip{
    background:#2f5d3a;
    color:#fff;
    text-align:center;
    padding:8px;
    font-size:14px;
} */
/* .top-strip{
    background:linear-gradient(90deg,#6b3f1d,#b3a923);
    color:#fff;
    text-align:center;
    padding:10px;
    font-size:14px;
    letter-spacing:.4px;
} */
 .top-strip{
    background: linear-gradient(90deg, #1f4d2e, #c9a227);
    color:#fff;
    text-align:center;
    padding:8px 10px;
    font-size:15px;
    letter-spacing:.5px;
    position:relative;
    overflow:hidden;
}

/* moving shine effect */
.top-strip::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(120deg, transparent, rgba(255,255,255,.4), transparent);
    animation:shine 4s infinite;
}

@keyframes shine{
    0%{left:-100%}
    100%{left:100%}
}

.offer-text b{
    color:#ffd87a;
    font-weight:700;
}

.code{
    background:#fff;
    color:#2f5d3a;
    padding:4px 10px;
    border-radius:6px;
    font-weight:700;
    margin-left:5px;
}
.navbar{
    background:#fff6da !important;
    border-bottom:1px solid rgba(0,0,0,.08);
}



/* NAVBAR */
.navbar-brand{
    color:#6b3f1d !important;
    font-size: 25px;
    font-weight: 700;
}

.navbar .nav-link{
    color:#4a2c14;
    font-weight:500;
}

.navbar .nav-link:hover{
    color:#c9972b;
}

.navbar i{
    color:#4a2c14;
}


/* SEARCH OVERLAY */
/* SEARCH OVERLAY – FULLSCREEN */
.search-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    pointer-events:none;
    z-index:9999;
}

/* SEARCH BAR */
.search-box{
    background:#fff;
    width:65%;
    max-width:720px;
    padding:20px 28px;
    border-radius:60px;
    display:flex;
    align-items:center;
    gap:16px;
    box-shadow:0 25px 60px rgba(0,0,0,.35);
    transform:scale(.8);
}

.search-box input{
    border:none;
    outline:none;
    width:100%;
    font-size:22px;
}

.close-search{
    font-size:28px;
    color:#2f5d3a;
    cursor:pointer;
}

/* MOBILE */
@media(max-width:768px){
    .search-box{
        width:90%;
        padding:16px 22px;
    }
    .search-box input{
        font-size:18px;
    }
}


/* HERO */
.hero{
    /* background:linear-gradient(120deg,#f4b400,#ffd966); */
     /* background:linear-gradient(135deg,#e6b325,#fff4cc); */
     background:linear-gradient(135deg, #b7ad2e, #fff4cc);
    padding:40px 0 80px;
    min-height:90vh;
    position:relative;
    overflow:hidden;
}
.hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:
      radial-gradient(circle at 20% 30%, rgba(255,215,100,.25), transparent 40%),
      radial-gradient(circle at 80% 20%, rgba(255,180,0,.2), transparent 40%),
      radial-gradient(circle at 50% 80%, rgba(255,220,150,.25), transparent 40%);
    animation:floatBg 12s infinite alternate ease-in-out;
}

@keyframes floatBg{
    from{transform:translateY(0)}
    to{transform:translateY(-40px)}
}

.hero::after{
    content:'';
    position:absolute;
    bottom:-1px;
    left:0;
    width:100%;
    height:120px;
    background:#fff;
    border-radius:100% 100% 0 0;
}
.hero h1{
    font-size:52px;
    font-weight:800;
    color:#2f5d3a;
}
.hero p{
    font-size:18px;
    color:#3a3a3a;
    max-width:520px;
}

.hero-btn{
    animation:pulse 2.5s infinite;
}

@keyframes pulse{
    0%{box-shadow:0 0 0 0 rgba(47,93,58,.4)}
    70%{box-shadow:0 0 0 25px rgba(47,93,58,0)}
    100%{box-shadow:0 0 0 0 rgba(47,93,58,0)}
}


/* COUPON */
.coupon-box{
    background:#fff;
    display:inline-block;
    padding:15px 25px;
    border-radius:16px;
    font-weight:600;
}
.coupon-box span{
    font-size:36px;
    color:#2f5d3a;
}

/* BUTTON */
.btn-reset{
    background:#2f5d3a;
    color:#fff;
    padding:14px 34px;
    border-radius:30px;
    font-size:18px;
}
.btn-reset:hover{background:#7a4a1d}

/* PRODUCT HERO */
.product-box{text-align:center;position:relative}
.slider-img{
    max-width:420px;
    filter:drop-shadow(0 25px 40px rgba(0,0,0,.3));
}
.sale-badge{
    position:absolute;
    top:30px;
    right:30px;
    background:#2f5d3a;
    color:#fff;
    padding:10px 18px;
    border-radius:30px;
    font-weight:600;
}

/* FEATURED PRODUCTS */
.product-card{
    background:#fff;
    padding:20px;
    border-radius:20px;
    text-align:center;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.product-card img{
    max-width:100%;
    border-radius:16px;
    margin-bottom:15px;
}
.product-card:hover{transform:translateY(-10px)}
.product-card h5{color:#2f5d3a}
.product-card p{font-weight:600}
.product-card del{color:#999}
.actions{
    display:flex;
    justify-content:center;
    gap:15px;
}
.actions button{
    background:#2f5d3a;
    color:#fff;
    border:none;
    padding:10px 20px;
    border-radius:30px;
}
.actions i{
    font-size:22px;
    color:#f4b400;
    cursor:pointer;
}

/* MOBILE */
@media(max-width:768px){
    .hero h1{font-size:36px}
    .slider-img{max-width:260px}
}

.product-card{
    position:relative;
    overflow:hidden;
}

.product-card::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(120deg,rgba(244,180,0,.15),transparent);
    opacity:0;
    transition:.4s;
}

.product-card:hover::before{
    opacity:1;
}

.product-card img{
    transition:.5s;
}

.product-card:hover img{
    transform:scale(1.08) rotate(-2deg);
}

.product-card:hover{
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.actions button{
    position:relative;
    overflow:hidden;
}

.actions button::after{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:rgba(255,255,255,.25);
    transition:.4s;
}

.actions button:hover::after{
    left:100%;
}

.oil-reflection{
    width:260px;
    height:40px;
    background:radial-gradient(ellipse at center, rgba(0,0,0,.25), transparent 70%);
    margin:20px auto 0;
    filter:blur(8px);
}
/* offer product css */
.offer-section{
    background:linear-gradient(180deg,#fff2c2,#e6b325);
    padding:80px 0;
}

.offer-title{
    font-size:42px;
    font-weight:800;
    color:#4a2c14;
}

.offer-card{
    background:#fff6da;
    padding:25px;
    border-radius:24px;
    text-align:center;
    position:relative;
    transition:.4s;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.offer-card img{
    width:100%;
    border-radius:16px;
    margin-bottom:15px;
}

.offer-card h5{
    color:#4a2c14;
    font-weight:700;
}

.offer-card p{
    font-weight:600;
}

.offer-card del{
    color:#9a6b2f;
}

.offer-card:hover{
    transform:translateY(-12px);
}

.offer-badge{
    position:absolute;
    top:15px;
    right:15px;
    background:#6b3f1d;
    color:#fff;
    padding:8px 14px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
}

/* latest product css */
.best-selling{
    background:#ffffff;
    padding:80px 0;
}

.section-title{
    font-size:36px;
    font-weight:800;
    color:#1f1f1f;
}

.best-card{
    background:#fff;
    border-radius:28px;
    padding:20px;
    height:100%;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s ease;
    display:flex;
    flex-direction:column;
}

.best-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 55px rgba(0,0,0,.15);
}

/* Badge */
.best-badge{
    background:#2f5d3a;
    color:#fff;
    width:45%;
    font-size:13px;
    padding:6px 14px;
    border-radius:20px;
    display:inline-block;
    
}

/* Image box */
.best-img{
    height:260px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
}

.best-img img{
    max-height:100%;
    max-width:100%;
    object-fit:contain;
    transition:.4s;
}

.best-card:hover img{
    transform:scale(1.08);
}

/* Product info */
.best-card h5{
    font-size:18px;
    font-weight:700;
    color:#1f1f1f;
    margin-bottom:6px;
}

.rating{
    color:#f4b400;
    font-size:14px;
    margin-bottom:6px;
}

.price{
    font-size:17px;
    font-weight:700;
}

.price del{
    font-size:16px;
    color:#999;
    margin-left:6px;
}

/* Button */
.best-btn{
    margin-top:auto;
    background:#2f5d3a;
    color:#fff;
    border:none;
    padding:4px;
    border-radius:30px;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.best-btn:hover{
    background:#244b2f;
}

/* footer css */
.footer{
    background:#4a2c14;
    color:#fff6da;
    padding:70px 0 30px;
}

.footer-brand{
    font-size:28px;
    font-weight:800;
    margin-bottom:15px;
}

.footer h5{
    margin-bottom:15px;
    color:#ffd87a;
}

.footer ul{
    list-style:none;
    padding:0;
}

.footer ul li{
    margin-bottom:10px;
}

.footer ul li a{
    color:#fff6da;
    text-decoration:none;
    transition:.3s;
}

.footer ul li a:hover{
    color:#ffd87a;
}

.footer-newsletter{
    display:flex;
    gap:10px;
}

.footer-newsletter input{
    flex:1;
    padding:10px 14px;
    border-radius:20px;
    border:none;
    outline:none;
}

.footer-newsletter button{
    background:#c9972b;
    border:none;
    color:#4a2c14;
    padding:10px 18px;
    border-radius:20px;
    font-weight:600;
}

.footer hr{
    border-color:rgba(255,255,255,.2);
    margin:40px 0 20px;
}

.footer-bottom{
    text-align:center;
    font-size:14px;
    color:#f1d28a;
}

.category-section{
    background:#fff6da;
    padding:70px 0;
}

.category-card{
    background:#fff;
    border-radius:20px;
    padding:20px;
    text-align:center;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    cursor:pointer;
}

.category-card img{
    width:90px;
    height:90px;
    object-fit:contain;
    margin-bottom:10px;
}

.category-card h6{
    font-weight:700;
    color:#4a2c14;
}

.category-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.category-card:hover img{
    transform:scale(1.1);
}
#scrollTopBtn{
    position:fixed;
    bottom:30px;
    right:30px;
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:#2f5d3a;
    color:white;
    font-size:18px;
    cursor:pointer;
    display:none;
    z-index:999;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    transition:.3s;
}

#scrollTopBtn:hover{
    background:#c9972b;
}
