 /* Top red header */
    .topbar {
      background-color: #dc3545; /* red */
      color: white;
      font-size: 14px;
      padding: 5px 0;
    }
    .topbar i {
      margin-right: 5px;
    }
    .topbar a {
      color: white;
      margin-left: 10px;
      text-decoration: none;
    }

    /* Navbar styles */
    .navbar {
      background-color: #fff;
    }
    .navbar-brand img {
      height: 50px;
    }
    .navbar .nav-link {
      color: #000 !important;
      font-weight: 500;
    }
    .navbar .nav-link:hover {
      color: #dc3545 !important;
    }

    /* Remove toggler border */
    .navbar-toggler {
      border: none !important;
      outline: none !important;
      box-shadow: none !important;
    }
    .navbar-toggler:focus {
      border: none !important;
      outline: none !important;
      box-shadow: none !important;
    }

  
 
 
 
 
 /*nnnnnnnn*/
  
  h3 {
      color: #0a3b35;
      font-weight: 700;
      margin-bottom: 20px;
    }
     .category-container {
      position: relative;
    }
    .category-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;   /* ✅ Prevent vertical scroll */
  scroll-behavior: smooth;
  padding: 10px 0;
  white-space: nowrap;  /* ✅ Keep cards in one row */
}
    .category-scroll::-webkit-scrollbar {
      display: none;
    }
    .category-card {
      flex: 0 0 auto;
      width: 150px;
      height: 150px;
      border-radius: 15px;
      text-align: center;
      padding: 15px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background-color: #f9f9f9;
      font-weight: 600;
      color: #064420;
      transition: transform 0.3s ease;
    }
    .category-card:hover {
      transform: translateY(-5px);
    }
    .category-card img {
      max-width: 60px;
      max-height: 60px;
      margin: 0 auto 10px;
    }
    /* Arrow buttons in top right */
    .arrow-controls {
      position: absolute;
      top: -50px;
      right: 0;
      display: flex;
      gap: 8px;
    }
    .arrow-btn {
      background: #ffffff;
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
      cursor: pointer;
      font-size: 20px;
      line-height: 40px;
      text-align: center;
    }
    .arrow-btn:hover {
      background-color: #f1f1f1;
    }

    /* product card */
    .product-card {
  background-color: #f9f9f9;
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}
.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.8rem;
  padding: 5px 8px;
  border-radius: 20px;
  color: #fff;
}
.badge-hot {
  background-color: #ff5722;
}
.badge-new {
  background-color: #00bcd4;
}
.badge-off {
  background-color: #4caf50;
}
.badge-out {
  background-color: #9e9e9e;
}
.product-image {
  height: 150px;
  object-fit: contain;
}
.product-category {
  color: #666;
  font-size: 0.9rem;
  margin-top: 10px;
}
.product-title {
  font-weight: bold;
  font-size: 1.1rem;
}
.product-price {
  font-weight: bold;
  margin-top: 5px;
  color: #1b5e20;
}
.cart-icon {
  background-color: #d4f8c4;
  color: #0a7a07;
  border-radius: 50%;
  padding: 8px;
  font-size: 1.2rem;
}
.filter-btns .btn {
  border-radius: 50px;
  padding: 5px 15px;
  font-size: 0.9rem;
  border: 1px solid #ccc;
}
.filter-btns .btn.active {
  background-color: #c62828;
  color: white;
  border-color: #c62828;
}
    /* footer */
       /* Custom styles for the footer */
        .footer-social-link {
            transition: transform 0.3s ease, color 0.3s ease;
            font-size: 2rem;
            color: #ccc;
        }
        .footer-social-link:hover {
            color: #fff;
            transform: scale(1.2);
        }
        
        /* about us*/
          .about-section {
      padding: 60px 0;
    }
    .about-section h6 {
      color: #ff5722;
      text-transform: uppercase;
      font-weight: 600;
      margin-bottom: 10px;
    }
    .about-section h2 {
      font-weight: bold;
      margin-bottom: 20px;
    }
    .about-section p {
      color: #6c757d;
      line-height: 1.6;
    }
    .about-section ul {
      list-style: none;
      padding: 0;
      margin-top: 20px;
    }
    .about-section ul li {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
      color: #555;
    }
    .about-section ul li i {
      color: #ff5722;
      margin-right: 10px;
    }
    .about-section .btn {
      background: linear-gradient(45deg, #ff7043, #ff5722);
      color: #fff;
      border: none;
      padding: 10px 20px;
      margin-top: 20px;
    }
    .about-img {
      max-width: 100%;
      height: auto;
    }

    /* FAQ Section */
     .faq-section {
      padding: 60px 0;
    }
    .faq-title {
      font-weight: bold;
    }
    .faq-title span {
      color: #2e7d32;
    }
    .accordion-button {
      background-color: white;
      border-radius: 10px;
      font-weight: 500;
    }
    .accordion-item {
      border: none;
      margin-bottom: 15px;
    }
    .accordion-button:not(.collapsed) {
      color: #2e7d32;
      background-color: #f1f8f4;
      border: 1px solid #2e7d32;
    }
    .faq-img {
      max-width: 100%;
      height: auto;
    }

    /* Contact Section */
      .promo-card {
      border-radius: 20px;
      padding: 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      overflow: hidden;
      color: #064420;
      height: 100%;
    }
    .promo-text {
      max-width: 60%;
      font-weight: 600;
    }
    .promo-text h4 {
      font-weight: 700;
      font-size: 1.8rem; /* Increased size */
      line-height: 1.4;
    }
    .promo-btn {
      margin-top: 20px;
      padding: 10px 22px;
      border-radius: 50px;
      font-weight: 600;
      border: none;
      font-size: 1rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .promo-img {
      max-width: 45%;
      text-align: right;
    }
    .promo-img img {
      max-height: 200px; /* Increased size */
      width: auto;
      object-fit: contain;
    }
    @media (max-width: 768px) {
      .promo-card {
        flex-direction: column;
        text-align: center;
      }
      .promo-text {
        max-width: 100%;
      }
      .promo-text h4 {
        font-size: 1.5rem; /* Adjust for mobile */
      }
      .promo-img {
        max-width: 100%;
        margin-top: 20px;
      }
      .promo-img img {
        max-height: 180px;
      }
    }
    /*banner  */
         .delivery-banner {
    position: relative;
    background-color: #e30613;
    padding: 7rem 0;
    overflow: visible; /* allow image to overflow */
    z-index: 0; /* stay behind the image */
}

.delivery-image {
    position: absolute;
    right: 0;
    bottom: -220px; /* adjust to make it pop out */
    width: 600px;
    z-index: 2; /* higher than the banner */
    pointer-events: none; /* optional: ignore mouse events */
}
/* Responsive adjustments */
        @media (max-width: 991px) {
          
            .delivery-image {
                position: relative;
                bottom: 0;
                right: 0;
                width: 80%;
                display: block;
                margin: 20px auto 0;
            }
        }

        /* Footer */
         .footer {
      background-color: #212529; /* Dark background */
      color: #f8f9fa; /* Light text color */
      padding: 50px 0;
      border-top: 1px solid #343a40; /* Subtle top border */
    }
    .footer-social-icons a {
      color: #adb5bd; /* Lighter gray for icons */
      font-size: 28px;
      margin: 0 15px;
      text-decoration: none;
      transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
    }
    .footer-social-icons a:hover {
      color: #0d6efd; /* Bootstrap primary blue on hover */
      transform: translateY(-2px); /* Slight lift */
    }
    .footer-google-review a {
      display: inline-flex;
      align-items: center;
      background-color: #dc3545; /* Red button */
      color: white;
      padding: 12px 24px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
    }
    .footer-google-review a i {
      margin-right: 8px;
      font-size: 20px;
    }
    .footer-google-review a:hover {
      background-color: #c82333; /* Darker red on hover */
      transform: scale(1.05); /* Slight scale up */
    }
    .footer hr {
      border-top: 1px solid rgba(248, 249, 250, 0.2); /* White HR with transparency */
      margin: 30px 0;
    }
    .footer p {
      color: #6c757d; /* Muted copyright text */
      font-size: 0.9rem;
      margin: 0;
    }

    /*offers */
  section.container {
    position: relative;
    z-index: 1; /* above canvas */
  }

  .category-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
  }

  .category-buttons button {
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 8px 20px;
    background: #fff;
    transition: all 0.3s;
    font-size: 14px;
  }

  .category-buttons button.active,
  .category-buttons button:hover {
    background: #006400;
    color: #fff;
    border-color: #006400;
  }

  .product-card {
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    background-color: #fff;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

 .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

  .product-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
  }

  .wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    border-radius: 50%;
    padding: 8px;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
  }

  .wishlist:hover {
    color: red;
  }

  .rating {
    color: #fbc02d;
    font-size: 14px;
  }

  .add-btn {
    border-radius: 25px;
    border: 1px solid #222;
    background: transparent;
    transition: all 0.3s;
  }

  .add-btn:hover {
    background: #222;
    color: #fff;
  }

  .price {
    font-weight: 600;
    color: #000;
  }

  .old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 5px;
    font-size: 14px;
  }

  .offer-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff4d4d;
    color: #fff;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
  }


/* Buy 1 Get 1 Free text badge (top-right corner) */
.buy1get1-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ffa500; /* orange */
  color: #fff;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  z-index: 3;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  animation: zoomEffect 1.5s ease-in-out infinite;
}

/* Zoom (pulse) animation */
@keyframes zoomEffect {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Vertical FREE Badge on card right side */
.free-badge {
  position: absolute;
  top: 50%;
  right: -22px; /* Moves badge slightly outside card */
  transform: translateY(-50%) rotate(90deg);
  background: #ff0000;
  color: #fff;
  padding: 5px 15px;
  border-radius: 5px 5px 0 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 5;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

.wishlist.active {
  color: #e60023; /* red when clicked */
}