*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    }
    
    body{
    background:#fffdf8;
    }
    
    /* Top Bar */
    
    .top-bar{
    background:#d97706;
    color:white;
    text-align:center;
    padding:10px;
    font-weight:600;
    }
    
    /* Navbar */
    
    .navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:white;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 3px 15px rgba(0,0,0,0.08);
    }
    
    .logo h2{
    color:#d97706;
    }
    .logo img{
        border-radius: 40%;
        width:140px;
        height:auto;
    }
    
    .nav-links{
    display:flex;
    font-size: 20px;
    list-style:none;
    gap:50px;
    }
    
    .nav-links a{
    text-decoration:none;
    color:#333;
    font-weight:500;
    transition:.3s;
    }
    
    .nav-links a:hover{
    color:#d97706;
    }
    
    .nav-icons{
    display:flex;
    gap:20px;
    font-size:20px;
    cursor:pointer;
    }
    
    /* Hero */
    
    .hero{
    padding:60px 8%;
    }
    
    .slide{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    }
    
    .hero-content{
    flex:1;
    }
    
    .hero-content h1{
    font-size:60px;
    line-height:70px;
    color:#1f2937;
    margin-bottom:20px;
    }
    
    .hero-content p{
    font-size:18px;
    color:#666;
    margin-bottom:30px;
    }
    
    .hero-buttons button{
    padding:14px 30px;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    background:#d97706;
    color:white;
    }
    
    .outline{
    background:transparent !important;
    border:2px solid #d97706 !important;
    color:#d97706 !important;
    margin-left:10px;
    }
    
    .hero-image{
    flex:1;
    }
    
    .hero-image img{
    width:100%;
    border-radius:20px;
    }
.hero{
    min-height:5vh;
    display:flex;
    align-items:center;
    background:linear-gradient(
    135deg,
    #fff8f0,
    #ffe8c2
    );
    overflow:hidden;
}

.slide{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;
}

.hero-content h1{
    font-size:72px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-content p{
    font-size:15px;
    margin-bottom:30px;
}
.hero-image img{
    width:700px;
    border-radius:25px;
    box-shadow:0 25px 60px rgba(0,0,0,.25);
}
.hero{
    background:
    radial-gradient(circle at top left,#ffd89b,#fff7e8);
}
.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    /* padding:60px 8%; */
}

.stat-box{
    background:#fff;
    text-align:center;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.stat-box h2{
    color:#d97706;
    font-size:35px;
}

.stat-box p{
    margin-top:10px;
    color:#666;
}
.categories{
    padding:40px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:42px;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.category-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.4s;
    cursor:pointer;
}

.category-card:hover{
    transform:translateY(-10px);
}

.category-card img{
    width:100%;
    height:110px;
    object-fit:cover;
}

.category-card h3{
    /* padding:20px; */
    text-align:center;
}
.trust-stats{
    padding:80px 8%;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
  }
  
  .trust-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
  }
  
  .trust-card:hover{
    transform:translateY(-8px);
  }
  
  .trust-card h2{
    color:#d97706;
    font-size:42px;
    margin-bottom:10px;
  }
  
  .trust-card p{
    color:#666;
  }
  .logo{
    display:flex;
    align-items:center;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.menu-btn{
    display:none;
    font-size:28px;
    cursor:pointer;
}
.shop-banner{
    background:#f8e6c8;
    padding:80px 20px;
    text-align:center;
}

.shop-banner h1{
    font-size:48px;
    margin-bottom:10px;
}

.shop-banner p{
    color:#666;
}

.products-section{
    padding:60px 8%;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.product-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
    text-align:center;
}

.product-card:hover{
    transform:translateY(-5px);
}

.product-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.product-card h3{
    margin-top:15px;
    font-size:22px;
}

.product-card p{
    color:#d97706;
    font-weight:600;
    margin:10px 0 20px;
}
.cart-btn{
    background:#d97706;
    color:white;
    border:none;
    padding:10px 20px;
    border-radius:8px;
    cursor:pointer;
    margin-bottom:15px;
    font-weight:600;
}

.cart-btn:hover{
    background:#b86304;
}
.shop-info{
    text-align:center;
    margin-bottom:40px;
}

.shop-info h2{
    font-size:32px;
    margin-bottom:10px;
}

.shop-info p{
    color:#666;
}
.product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.product-card:hover{
    transform:translateY(-8px);
}
.best-sellers{
    padding:60px 8%;
    background:#fff;
}

.best-seller-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:30px;
}

.cart-btn{
    background:#d97706;
    color:#fff;
    border:none;
    padding:10px 18px;
    border-radius:8px;
    cursor:pointer;
    margin-bottom:15px;
    font-weight:600;
}

.cart-btn:hover{
    background:#b86304;
}

.product-card{
    transition: all 0.3s ease;
}

.product-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.rating{
    margin:10px 0;
    font-size:14px;
}
.why-choose{
    padding:80px 8%;
    background:#fffaf2;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:30px;
}

.feature-card{
    background:white;
    padding:25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.feature-card h3{
    margin-bottom:10px;
}
.offer-banner{
    padding:80px 8%;
    background:linear-gradient(
        135deg,
        #d97706,
        #f59e0b
    );
    color:white;
    text-align:center;
}

.offer-banner span{
    font-size:14px;
    letter-spacing:2px;
}

.offer-banner h2{
    font-size:42px;
    margin:20px 0;
}

.offer-banner p{
    max-width:600px;
    margin:auto;
    margin-bottom:25px;
}

.offer-banner button{
    background:white;
    color:#d97706;
    border:none;
    padding:14px 30px;
    border-radius:10px;
    font-weight:600;
    cursor:pointer;
}
.testimonials{
    padding:80px 8%;
    background:#fff;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:30px;
}

.testimonial-card{
    background:#fffaf2;
    padding:30px;
    border-radius:18px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.stars{
    margin-bottom:15px;
}

.testimonial-card p{
    line-height:1.8;
    color:#555;
    margin-bottom:20px;
}

.testimonial-card h4{
    color:#111;
    margin-bottom:5px;
}

.testimonial-card span{
    color:#888;
    font-size:14px;
}
.footer{
    width:100%;
    background:linear-gradient(
        135deg,
        #d97706,
        #f59e0b
        );
    color:#fff;
    padding:70px 8% 0;
}

.footer-container{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:50px;
    max-width:1400px;
    margin:auto;
}

.footer-logo{
    width:180px;
    margin-bottom:20px;
}

.footer-col h3{
    color:#f7c948;
    margin-bottom:20px;
    font-size:24px;
}

.footer-col a{
    display:block;
    color:white;
    text-decoration:none;
    margin-bottom:12px;
}

.footer-col p{
    line-height:1.8;
    margin-bottom:12px;
}

.footer-bottom{
    margin-top:50px;
    border-top:1px solid rgba(255,255,255,.2);
    text-align:center;
    padding:25px 0;
}
/* Explore Hero */

.explore-hero{
    min-height:80vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:80px 8%;
    background:#fffaf2;
}

.explore-content span{
    color:#d97706;
    font-weight:600;
    letter-spacing:2px;
}

.explore-content h1{
    font-size:64px;
    margin:20px 0;
    color:#222;
}

.explore-content p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.explore-buttons{
    margin-top:30px;
    display:flex;
    justify-content:center;
    gap:15px;
}

.primary-btn,
.secondary-btn{
    text-decoration:none;
    padding:14px 28px;
    border-radius:10px;
    font-weight:600;
}

.primary-btn{
    background:#d97706;
    color:#fff;
}

.secondary-btn{
    border:2px solid #d97706;
    color:#d97706;
}
/* =========================
   EXPLORE HERO
========================= */

.explore-hero{
    min-height:80vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:80px 5%;
    background:#f6ad44;
}

.explore-content span{
    color:rgba(193, 0, 36, 0.94);
    font-weight:600;
    letter-spacing:2px;
}

.explore-content h1{
    font-size:60px;
    margin:20px 0;
    color:#222;
}

.explore-content p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
    color:#666;
}

.hero-btn{
    display:inline-block;
    margin-top:30px;
    padding:14px 30px;
    background:rgba(193, 0, 36, 0.94);
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    font-weight:600;
}

/* =========================
   FEATURED PRODUCTS
========================= */

.featured-products{
    padding:80px 8%;
}

.section-heading{
    text-align:center;
    margin-bottom:40px;
}

.section-heading span{
    color:#d97706;
    font-weight:600;
}

.section-heading h2{
    font-size:42px;
    margin-top:10px;
}

.featured-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.featured-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.featured-card:hover{
    transform:translateY(-8px);
}

.featured-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.featured-card h3{
    text-align:center;
    padding:20px;
}

/* =========================
   CATEGORIES
========================= */

.popular-categories{
    padding:10px 8%;
    background:#fffaf2;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.category-card{
    background:#d97706;
    color:white;
    padding:60px 20px;
    border-radius:20px;
    text-align:center;
    font-size:22px;
    font-weight:600;
    transition:.3s;
}

.category-card:hover{
    transform:translateY(-8px);
}

/* =========================
   WHY CHOOSE
========================= */

.why-choose{
    padding:80px 8%;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.feature-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

/* =========================
   OFFER BANNER
========================= */

.offer-banner{
    margin:80px 8%;
    padding:80px;
    background:#d97706;
    color:white;
    text-align:center;
    border-radius:25px;
}

.offer-banner h2{
    font-size:42px;
    margin-bottom:15px;
}

.offer-banner p{
    margin-bottom:25px;
}

.offer-banner .hero-btn{
    background:white;
    color:#d97706;
}

/* =========================
   OUR PROMISE
========================= */

.our-promise{
    padding:80px 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.promise-left img{
    width:100%;
    border-radius:25px;
}

.promise-right span{
    color:#d97706;
    font-weight:600;
}

.promise-right h2{
    font-size:42px;
    margin:15px 0;
}

.promise-right ul{
    list-style:none;
    padding:0;
}

.promise-right li{
    margin-bottom:15px;
    font-size:18px;
}

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

.cta-section{
    padding:100px 8%;
    text-align:center;
    background:#fffaf2;
}

.cta-section h2{
    font-size:48px;
    margin-bottom:25px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .featured-grid,
    .category-grid,
    .features-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .our-promise{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .explore-content h1{
        font-size:40px;
    }

    .section-heading h2{
        font-size:32px;
    }

    .offer-banner h2{
        font-size:28px;
    }

    .cta-section h2{
        font-size:32px;
    }

    .featured-grid,
    .category-grid,
    .features-grid{
        grid-template-columns:1fr;
    }

}