/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  background:#fff;
}
/* HEADER */
.header{
  position:sticky;
  top:0;
  background:#fff;
  z-index:1000;
  border-bottom:1px solid #eee;
}
/* TOP BAR */
.top-bar {
  width: 100%;
  background: #4e6d34; /* premium pink */
  /* background: black; */
  color: #fff;
  font-size: 14px;
  padding: 8px 5%;
  text-align: center;
  position: relative;
  z-index: 1001;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.top-bar p {
  margin: 0;
  flex: 1;
  text-align: left;
  font-weight: 500;
}

.top-bar-link {
  background: #fff;
  color: #4e6d34;
  padding: 5px 15px;
  border-radius: 6px;
  font-weight: 6fea00;
  text-decoration: none;
  transition: all 0.3s ease;
}

.top-bar-link:hover {
  background: #f8f8f8;
  color: #4e6d34;
}

/* MOBILE */
@media (max-width: 768px) {
  .top-bar-container {
    flex-direction: column;
    gap: 8px;
  }

  .top-bar p {
    text-align: center;
  }
}
.container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 5%;
}

.logo{
  font-weight:600;
  color:#4e6d34;
}

/* NAV */
.nav ul{
  display:flex;
  list-style:none;
  gap:25px;
}

.nav a{
  text-decoration:none;
  color:#000;
  font-weight:500;
}

/* TOGGLE */
.menu-toggle{
  display:none;
  flex-direction:column;
  cursor:pointer;
}

.menu-toggle span{
  width:25px;
  height:3px;
  background:#000;
  margin:4px 0;
}

/* OVERLAY */
.overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100vh;
  background:rgba(0,0,0,0.5);
  opacity:0;
  visibility:hidden;
  transition:0.3s;
  z-index:900;
}

.overlay.active{
  opacity:1;
  visibility:visible;
}
/* HERO SECTION */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 5%;
  min-height: 90vh;
  background: #f9f9f9;
}

.hero-content {
  max-width: 500px;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.hero p {
  margin-bottom: 20px;
  font-size: 18px;
  color: #555;
}

.hero button {
  background: #4e6d34;
  color: #fff;
  padding: 12px 25px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  font-size: 16px;
}

.hero button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.hero-image img {
  width: 500px;
  max-width: 100%;
  border-radius: 12px;
}

/* FADE-IN ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-image {
    margin-top: 20px;
  }
}

/* MOBILE */
@media(max-width:768px){

  .menu-toggle{
    display:flex;
  }

  .nav{
    position:fixed;
    top:0;
    right:-100%;
    width:70%;
    height:100vh;
    background:#fff;
    padding-top:80px;
    transition:0.4s;
    z-index:1000;
  }

  .nav ul{
    flex-direction:column;
    text-align:center;
    gap:20px;
  }

  .nav.active{
    right:0;
  }

  .hero{
    flex-direction:column;
    text-align:center;
  }

  .hero h1{
    font-size:28px;
  }

  .hero-image{
    margin-top:20px;
  }
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1000;
  border-bottom: 1px solid #eee;
  transition: 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
}

/* LOGO */
.logo {
  font-weight: 600;
  font-size: 24px;
  color: #4e6d34;
}

/* NAV */
.nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: #4e6d34;
}

/* HEADER RIGHT */
.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* CART ICON */
.cart-icon {
  cursor: pointer;
  position: relative;
  font-size: 20px;
}

#cartCount {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #4e6d34;
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
}

/* MENU TOGGLE */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #000;
  margin: 4px 0;
  transition: 0.4s;
}

/* TOGGLE ANIMATION */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* OVERLAY */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 900;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* MOBILE NAV */
@media(max-width:768px){
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding-top: 80px;
    z-index: 1000;
    transition: right 0.4s ease, opacity 0.4s ease;
    opacity: 0;
  }

  .nav ul {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .nav.active {
    right: 0;
    opacity: 1;
  }
}


/* CATEGORIES SECTION */
.categories {
  padding: 80px 5%;
  background: #fff;
}

.container-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.category-card:hover img {
  transform: scale(1.1);
}

/* Overlay text */
.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: rgba(0,0,0,0.4);
  color: #fff;
  text-align: center;
  transition: background 0.3s ease;
}

.category-card:hover .category-overlay {
  background: #4e6d34;
}

.category-overlay h3 {
  font-size: 20px;
  font-weight: 600;
}

/* SCROLL ANIMATION */
.scroll-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s ease;
}

.scroll-animate.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .container-categories {
    gap: 15px;
  }
}

/* PRODUCTS SECTION */
/* PRODUCTS SECTION */
.products {
  padding: 80px 5%;
  background: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  font-weight: 700;
  color: #4e6d34;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #4e6d34;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Products grid */
.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  text-align: center;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover Effect */
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Product Image */
.product-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

/* Sold Out Badge */
.product-card .sold-out {
  position: absolute;
  top: 15px;
  left: -40px;
  background: #4e6d34;
  color: #fff;
  padding: 5px 50px;
  font-size: 12px;
  font-weight: 700;
  transform: rotate(-45deg);
  z-index: 10;
}

/* Product Info */
.product-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 15px 0 5px;
  color: #333;
}

.product-card .price {
  font-size: 16px;
  font-weight: 700;
  color: #4e6d34;
  margin-bottom: 15px;
}

/* Add to Cart Button */
.product-card button {
  background: #4e6d34;
  color: #fff;
  border: none;
  padding: 12px;
  width: 90%;
  margin-bottom: 15px;
  cursor: pointer;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.product-card button:hover {
  background: #4e6d34;
  transform: scale(1.05);
}

/* Disabled button for sold out */
.product-card button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* SCROLL ANIMATION */
.scroll-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s ease;
}

.scroll-animate.active {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }

  .product-card img {
    height: 220px;
  }
}

/* SOLD OUT BADGE */
.sold-out {
  position: absolute;
  top: 15px;
  left: -40px;
  background: red;
  color: white;
  padding: 5px 50px;
  font-size: 12px;
  transform: rotate(-45deg);
}

/* DISABLED BUTTON */
button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-title {
    font-size: 22px;
  }
}

/* CART SIDEBAR */
.cart-sidebar {
  position: fixed;
  right: -100%;
  top: 0;
  width: 320px;
  max-width: 100%;
  height: 100vh;
  background: #fff;
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  padding: 20px;
  transition: 0.4s ease;
  z-index: 2000;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.active {
  right: 0;
}

.cart-sidebar h3 {
  margin-bottom: 15px;
}

#cartItems {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 15px;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 10px;
  background: #fafafa;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 10px;
  background: #fafafa;
}

#checkoutBtn {
  background: #4e6d34;
  color: #fff;
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 6px;
  width: 100%;
}

#checkoutBtn:hover {
  background: #4e6d34;
}

/* CART HEADER WITH CLOSE BUTTON */
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.close-btn {
  cursor: pointer;
  font-size: 22px;
  font-weight: bold;
  color: #4e6d34;
  transition: 0.3s;
}

.close-btn:hover {
  color: #4e6d34;
}

/* EMPTY CART MESSAGE */
.empty-cart {
  text-align: center;
  color: #999;
  font-style: italic;
  margin-top: 20px;
}

/* CART ITEMS */

/* CART SIDEBAR */
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.cart-close {
  font-size: 24px;
  cursor: pointer;
  color: #4e6d34;
  transition: color 0.3s ease;
}

.cart-close:hover {
  color: #4e6d34;
}

.cart-item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.cart-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item-details {
  flex: 1;
}

.cart-item-details h4 {
  font-size: 14px;
  margin-bottom: 5px;
}

.cart-item-details p {
  font-size: 14px;
  color: #4e6d34;
}

.cart-item-qty {
  display: flex;
  gap: 5px;
  align-items: center;
}

.cart-item-qty button {
  background: #4e6d34;
  color: #fff;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 4px;
}

.cart-item-qty span {
  min-width: 20px;
  text-align: center;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 10px;
  border-bottom: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 10px;
  background: #fafafa;
  transition: 0.3s ease;
}

.cart-item:hover {
  background: #f0f0f0;
}

/* PRODUCT NAME & QUANTITY */
.cart-item p {
  font-size: 14px;
  color: #333;
  margin: 0;
  max-width: 60%;
}

/* CART ITEM BUTTONS */
.cart-item button {
  background: #4e6d34;
  color: #fff;
  border: none;
  padding: 4px 8px;
  margin-left: 5px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 12px;
  transition: 0.3s;
}

.cart-item button:hover {
  background: #4e6d34;
}

/* GROUPING BUTTONS */
.cart-item div {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* CART THUMBNAIL */
.cart-thumb {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 10px;
}

/* CART ITEM SLIDE + FADE */
@keyframes slideFadeIn {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.cart-slide {
  animation: slideFadeIn 0.4s ease forwards;
}


  /* SHOP ALL PRODUCTS CTA */
.shop-all-section {
  text-align: center;
  margin: 40px 0;
}

.shop-all-btn {
  background: #4e6d34;
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-all-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
/* ABOUT / BRAND STORY */
.brand-story {
  padding: 80px 5%;
  background: #f9f9f9;
  text-align: center;
}

.brand-story h2 {
  font-size: 28px;
  margin-bottom: 40px;
}

.story-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.story-images img {
  width: 300px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* MOBILE */
@media (max-width: 768px) {
  .story-images {
    flex-direction: column;
    gap: 15px;
  }
}

/* BRAND STORY SECTION */
.brand-story {
  padding: 100px 5%;
  background: #fff;
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
}

/* IMAGE SIDE */
.brand-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* TEXT SIDE */
.brand-content {
  max-width: 600px;
}

.brand-content h2 {
  font-size: 36px;
  color: #4e6d34;
  margin-bottom: 20px;
}

/* HIGHLIGHT LINE */
.brand-highlight {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

/* PARAGRAPHS */
.brand-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
  text-align: justify;
}

/* BUTTON */
.brand-btn {
  margin-top: 10px;
  background: #4e6d34;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.3s ease;
}

.brand-btn:hover {
  background: #fff;
  color: #4e6d34;
  border: 2px solid #4e6d34;
  transform: translateY(-2px);
  transition: 0.8s ease-in-out;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .brand-container {
    flex-direction: column;
    text-align: center;
  }

  .brand-content h2 {
    font-size: 28px;
  }

  .brand-image img {
    max-width: 100%;
  }
}

/* TESTIMONIAL SECTION */
.testimonials {
  padding: 100px 5%;
  background: #f9f9f9;
  text-align: center;
}

.testimonial-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* CARD */
.testimonial-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* CUSTOMER IMAGE */
.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #4e6d34;
}

/* STARS */
.stars {
  color: #f5b301;
  font-size: 18px;
  margin-bottom: 10px;
}

/* TEXT */
.testimonial-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
  font-style: italic;
}

/* NAME */
.testimonial-card h4 {
  color: #4e6d34;
  font-weight: 600;
  font-size: 15px;
}

/* MOBILE */
@media (max-width: 768px) {
  .testimonials {
    padding: 70px 5%;
  }

  .testimonial-card {
    padding: 25px 15px;
  }

  .testimonial-card img {
    width: 70px;
    height: 70px;
  }
}


/* VIDEO SECTION */
.video-showcase {
  padding: 80px 5%;
  background: #fff;
  text-align: center;
}

.video-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* VIDEO CARD */
.video-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: 0.4s ease;
}

.video-card img {
  width: 100%;
  display: block;
}

/* HOVER EFFECT */
.video-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* PLAY BUTTON */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #4e6d34;
  color: #fff;
  font-size: 24px;
  padding: 15px 18px;
  border-radius: 50%;
  transition: 0.3s ease;
}

.video-card:hover .play-btn {
  background: #4e6d34;
  transform: translate(-50%, -50%) scale(1.1);
}

/* MODAL */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 3000;
}

.video-modal.active {
  display: flex;
}

/* VIDEO PLAYER */
.video-modal video {
  width: 90%;
  max-width: 800px;
  border-radius: 12px;
}

/* CLOSE BUTTON */
.close-video {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}


.why-us {
  padding: 80px 5%;
  background: #fff;
  text-align: center;
}

.why-container {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.why-card {
  padding: 25px;
  border-radius: 12px;
  background: #f9f9f9;
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.why-card h3 {
  color: #4e6d34;
  margin-bottom: 10px;
}

.before-after {
  padding: 80px 5%;
  background: #f9f9f9;
  text-align: center;
}

.ba-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.ba-card {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
}

.ba-card img {
  width: 50%;
  object-fit: cover;
}

.ba-card img:first-child {
  border-right: 2px solid #fff;
}

/* BEST SELLERS SECTION */
.best-sellers {
  padding: 80px 5%;
  background: #fff;
}

.best-sellers .section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
}

/* GRID */
.best-sellers .products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* PRODUCT CARD */
.best-sellers .product-card {
  background: #fff;
  padding: 15px;
  border-radius: 14px;
  text-align: center;
  position: relative;
  overflow: hidden;

  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.best-sellers .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* IMAGE */
.best-sellers .product-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* TITLE */
.best-sellers .product-card h3 {
  font-size: 15px;
  margin: 10px 0;
}

/* PRICE */
.best-sellers .price {
  color: #4e6d34;
  font-weight: 600;
  margin-bottom: 10px;
}

/* BUTTON */
.best-sellers .product-card button {
  background: #4e6d34;
  color: #fff;
  border: none;
  padding: 10px;
  width: 100%;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.best-sellers .product-card button:hover {
  background: #4e6d34;
  transform: scale(1.03);
}

/* BEST SELLER BADGE */
.best-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #4e6d34;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
  .best-sellers {
    padding: 60px 5%;
  }

  .best-sellers .section-title {
    font-size: 22px;
  }
}


/* PROMO SLIDER */
.promo-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-height: 600px; /* max height for large screens */
  border-radius: 12px;
}

.slider-container {
  display: flex;
  transition: transform 0.8s ease-in-out;
  width: 100%;
}

.slide {
  min-width: 100%;
  position: relative;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: auto; /* make image responsive */
  max-height: 600px; /* maintain large screen limit */
  object-fit: cover; /* crop nicely if needed */
  display: block;
}

/* Overlay */
.slide-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.35);
  padding: 20px 30px;
  border-radius: 12px;
  width: 80%;
}

.slide-overlay h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.slide-overlay p {
  font-size: 18px;
  margin-bottom: 15px;
}

.slide-overlay .btn {
  display: inline-block;
  background: #4e6d34;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.slider-controls span {
  pointer-events: all;
  cursor: pointer;
  font-size: 36px;
  color: #fff;
  margin: 0 15px;
  user-select: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .slide-overlay h2 {
    font-size: 24px;
  }
  .slide-overlay p {
    font-size: 14px;
  }
  .slide img {
    max-height: 300px; /* smaller height for mobile */
  }
}

.faq {
  padding: 80px 5%;
  background: #fff;
}

.faq-container {
  max-width: 800px;
  margin: auto;
  margin-top: 40px;
}

/* ITEM */
.faq-item {
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

/* QUESTION */
.faq-question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 500;
}

.faq-question span {
  font-size: 20px;
  color: #4e6d34;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  color: #555;
  transition: max-height 0.3s ease;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 100px;
  margin-top: 10px;
}

/* FOOTER */
.footer {
  background: #111;
  color: #fff;
  padding: 60px 5% 30px 5%;
  font-size: 14px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  color: #4e6d34;
  margin-bottom: 15px;
}

.footer-about p {
  line-height: 1.6;
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #4e6d34;
}

.footer-contact p {
  margin-bottom: 10px;
}

.footer-social .social-icons a {
  display: inline-block;
  color: #fff;
  margin-right: 12px;
  font-size: 18px;
  transition: 0.3s;
}

.footer-social .social-icons a:hover {
  color: #4e6d34;
}

.footer-newsletter {
  margin-top: 40px;
  text-align: center;
}

.footer-newsletter p {
  margin-bottom: 15px;
  font-weight: 500;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 10px 15px;
  border-radius: 6px;
  border: none;
  outline: none;
  flex: 1;
  min-width: 200px;
}

.newsletter-form button {
  background: #4e6d34;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
}

.newsletter-form button:hover {
  background: #fff;
  color: #4e6d34;
}

.footer-copy {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
}

.footer-copy a {
  color: #4e6d34;
  text-decoration: none;
}

.footer-copy a:hover {
  text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
  .newsletter-form {
    flex-direction: column;
  }
}

/* clear cart button*/
.clear-cart-btn {
  background: #4e6d34;
  color: #fff;
  border: none;
  padding: 12px;
  width: 90%;
  margin: 15px auto;
  display: block;
  cursor: pointer;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.clear-cart-btn:hover {
  background: #d12b2b;
  transform: scale(1.05);
}

/* for shop page */
/* SHOP FILTERS */
.shop-filters {
  text-align: center;
  padding: 30px 0;
  background: #fff;
}

.shop-filters .filter-btn {
  background: #f0f0f0;
  color: #333;
  padding: 10px 20px;
  margin: 0 10px 10px 0;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.shop-filters .filter-btn:hover,
.shop-filters .filter-btn.active {
  background: #d63384;
  color: #fff;
  transform: scale(1.05);
}

/* PRODUCT CARDS */
.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 20px 5%;
}



/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366; /* WhatsApp green */
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  z-index: 999;
  transition: transform 0.3s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  text-decoration: none;
}

.checkout-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.checkout-content {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  width: 90%;
  max-width: 420px;
}

.checkout-content h2 {
  margin-bottom: 15px;
}

.checkout-content input,
.checkout-content textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.checkout-content button {
  width: 100%;
  background: #ff5a5f;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.checkout-content button:hover {
  background: #e0484e;
}

.close {
  float: right;
  font-size: 22px;
  cursor: pointer;
}

#orderSummary {
  background: #f9f9f9;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 6px;
  font-size: 14px;
}

/* TOAST NOTIFICATION */
#toastContainer {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

.toast {
  background: #333;
  color: #fff;
  padding: 12px 18px;
  margin-bottom: 10px;
  border-radius: 6px;
  font-size: 14px;
  min-width: 220px;
  opacity: 0;
  transform: translateY(-20px);
  transition: 0.3s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.error {
  background: #ff5a5f;
}

.toast.success {
  background: #28a745;
}