@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* Header Styles */
.header-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #fff;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
}

.logo h1 {
  color: #2e7d32;
  font-size: 1.5rem;
}

/* Sidebar Styles */
.sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background-color: #2e2e2e;
  color: #fff;
  transition: left 0.3s ease;
  z-index: 1000;
  padding-top: 60px;
}

.sidebar.active {
  left: 0;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  padding: 15px 20px;
  border-bottom: 1px solid #444;
}

.sidebar ul li a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s, color 0.3s;
}

.sidebar ul li a:hover {
  color: #00ff99;
  transform: translateX(5px);
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  color: #fff;
}

/* Header Icons */
.header-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.5rem;
    color: #2e7d32;
}

#cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background: #2e7d32;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header, .checkout-header {
    padding: 20px;
    background: #f9f9f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.close-cart, .back-to-cart {
    font-size: 28px;
    cursor: pointer;
    color: #666;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    margin: 0 0 5px 0;
    color: #333;
}

.cart-item-price {
    font-weight: bold;
    color: #2e7d32;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.quantity-controls button {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: none;
    cursor: pointer;
    border-radius: 50%;
}

.cart-summary {
    padding: 20px;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-row.total {
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 15px;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background: #2e7d32;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 15px;
}

.checkout-form {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: white;
    transition: left 0.3s ease;
}

.checkout-form.active {
    left: 0;
}

.form-group {
    margin-bottom: 15px;
    padding: 0 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.payment-methods {
    padding: 20px;
}

.payment-option {
    margin: 10px 0;
}

.submit-order {
    width: calc(100% - 40px);
    margin: 20px;
    padding: 15px;
    background: #1b5e20;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

/* HERO SECTION */
.hero-slider {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease-in-out;
  opacity: 0;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-text {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: #fff;
  z-index: 3;
}

.slide-text h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}

/* ABOUT SECTION */
.about {
  padding: 60px 20px;
  background: #f1f8e9;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  color: #2e7d32;
  margin-bottom: 30px;
}

.about-scroll-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory; /* Snap each card into view */
  gap: 20px;
  padding: 10px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.about-scroll-container::-webkit-scrollbar {
  display: none; /* Hide scrollbar in Chrome, Safari, and Opera */
}

.about-item {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: left;
  min-width: 100%; /* Make it full width of viewport/container */
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  flex-shrink: 0; /* Do not shrink */
  scroll-snap-align: start; /* Snap each item into view */
}

.about-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.about-icon {
  font-size: 2.5rem;
  color: #2e7d32;
  margin-bottom: 15px;
}

.about-item h3 {
  font-size: 1.3rem;
  color: #2e7d32;
  margin-bottom: 15px;
}

.scroll-nav {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.scroll-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #2e7d32;
  cursor: pointer;
  margin: 0 10px;
  transition: color 0.3s;
}

.scroll-btn:hover {
  color: #1b5e20;
}

@media (max-width: 600px) {
  .about-item {
    padding: 15px;
    font-size: 0.95rem; /* Slightly smaller text */
  }
}

/* PRODUCTS SECTION */
.products {
  padding: 60px 20px;
}

.products h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #2e7d32;
}

.search-box {
  max-width: 400px;
  margin: 0 auto 30px;
}

.search-box input {
  width: 100%;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.product {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  cursor: pointer;
}

.product:hover {
  transform: translateY(-5px);
}

.product img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.product h3 {
  margin-top: 15px;
  color: #2e7d32;
}

.product p {
  font-size: 0.95rem;
  margin: 10px 0;
}

.product .price {
  font-weight: bold;
  color: #444;
}

/* Contact Section Styles */
.contact {
  background: #f4f4f4;
  padding: 60px 20px;
  text-align: center;
}

.contact h2 {
  color: #2e7d32;
  font-size: 2rem;
  margin-bottom: 30px;
}

.contact .info {
  margin: 20px 0;
  font-size: 1.1rem;
}

.map {
  margin-top: 30px;
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 10px;
}

/* Desktop-specific styles */
@media (min-width: 768px) {
  .map {
    width: 80%; /* Adjust as needed */
    max-width: 1000px; /* Optional: Set a maximum width */
    height: 400px; /* Optional: Increase height for desktop */
  }
}

/* FLOATING WHATSAPP */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  padding: 12px 15px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  z-index: 999;
  text-decoration: none;
  transition: background 0.3s;
}

.floating-whatsapp:hover {
  background: #128c7e;
}

.floating-whatsapp i {
  font-size: 1.4rem;
}

/* FAQ SECTION */
.faq {
  padding: 60px 20px;
  background: #f9f9f9;
}

.faq h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #2e7d32;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-question {
  background: #2e7d32;
  color: white;
  padding: 15px 20px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #1b5e20;
}

.faq-question::after {
  content: '+';
  font-size: 1.2rem;
}

.faq-item.active .faq-question::after {
  content: '-';
}

.faq-answer {
  background: white;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 15px 20px;
  border-top: 1px solid #eee;
}

.contact-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
  background: white;
  padding: 15px 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact-icon {
  font-size: 1.8rem;
  color: #2e7d32;
}

.contact-text {
  font-size: 1rem;
  color: #444;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.contact-link {
  font-size: 1.5rem;
  color: #2e7d32;
  transition: transform 0.3s, color 0.3s;
}

.contact-link:hover {
  transform: translateY(-3px);
  color: #1b5e20;
}

/* Footer Styles */
footer {
  text-align: center;
  padding: 20px;
  background: #f9f9f9;
  border-top: 1px solid #eee;
}

footer a {
  color: #2e7d32;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  text-decoration: underline;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  padding: 12px 15px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  z-index: 999;
  text-decoration: none;
  transition: background 0.3s;
}

.floating-whatsapp:hover {
  background: #128c7e;
}

.floating-whatsapp i {
  font-size: 1.4rem;
}

/* Add to Cart Button */
.add-to-cart-btn {
  background-color: #2e7d32; /* Green background */
  color: white;
  border: none;
  border-radius: 6px;
  padding: 12px 25px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  width: 100%;
  margin-top: 10px;
}

.add-to-cart-btn:hover {
  background-color: #1b5e20;
  transform: scale(1.02);
}

/* Quantity Selector */
.quantity-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.quantity-btn {
  background-color: #2e7d32; /* Green background */
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.quantity-btn:hover {
  background-color: #1b5e20;
}

.quantity {
  margin: 0 15px;
  font-size: 1.2rem;
  color: #333;
  min-width: 30px;
  text-align: center;
}

/* DELIVERY SECTION */
.delivery {
  padding: 60px 20px;
  background-color: #e6c280; /* Tan background color */
  text-align: center;
}

.delivery h2 {
  color: #2e7d32;
  font-size: 2rem;
  margin-bottom: 40px;
}

.delivery-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.delivery-item {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.delivery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.delivery-icon {
  font-size: 2.5rem;
  color: #2e7d32;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.delivery-item:hover .delivery-icon {
  transform: scale(1.2);
}

.delivery-content h3 {
  font-size: 1.3rem;
  color: #2e7d32;
  margin-bottom: 10px;
}

.delivery-content p {
  color: #555;
  font-size: 1rem;
}

/* Animation for delivery icons */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.delivery-icon {
  animation: pulse 3s infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .delivery-container {
      flex-direction: column;
      align-items: center;
  }
  
  .delivery-item {
      width: 100%;
      max-width: 300px;
  }
}

.hide-header {
  top: 0 !important;
  opacity: 1 !important;
}


@media screen and (max-width: 768px) {
  .header {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 999;
      background-color: #fff; /* or your header background */
  }
}




/* style.css */
.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease;
}

.product-link:hover {
  transform: translateY(-5px);
}


/* style.css */
.product-details {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
}

.product-details h2 {
  font-size: 2rem;
  color: #2e7d32;
  margin-bottom: 20px;
}

.product-details img {
  width: 100%;
  height: auto; /* Adjust height to auto to maintain aspect ratio */
  object-fit: cover; /* Ensure the image covers the entire area without stretching */
  border-radius: 10px;
  margin-bottom: 20px;
}

.product-details .price {
  font-size: 1.5rem;
  color: #444;
  margin-bottom: 20px;
}

.product-details .add-to-cart-btn {
  background-color: #2e7d32;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 12px 25px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  width: 100%;
  margin-top: 10px;
}

.product-details .add-to-cart-btn:hover {
  background-color: #1b5e20;
  transform: scale(1.02);
}

.product-details #product-benefits, .product-details #product-usage {
  margin-top: 20px;
  font-size: 1rem;
  color: #555;
  text-align: left;
}

/* style.css */
.back-to-shop-btn {
  display: inline-block;
  background-color: #2e7d32;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 12px 25px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
  width: 100%;
  margin-top: 10px;
}

.back-to-shop-btn:hover {
  background-color: #1b5e20;
  transform: scale(1.02);
}




/* Reseller Section */
.reseller-info {
  padding: 60px 20px;
  background: #f1f8e9;
  text-align: center;
}

.reseller-info h2 {
  font-size: 2rem;
  color: #2e7d32;
  margin-bottom: 40px;
}

.reseller-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.reseller-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.reseller-text p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.reseller-text h3 {
  font-size: 1.5rem;
  color: #2e7d32;
  margin: 30px 0 15px;
}

.reseller-image {
  flex: 1;
  min-width: 300px;
}

.reseller-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.reseller-application {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.reseller-application h2 {
  font-size: 2rem;
  color: #2e7d32;
  margin-bottom: 20px;
}

.reseller-application p {
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.submit-reseller {
  background-color: #2e7d32;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 250px;
  margin: 30px auto 0;
}

.submit-reseller:hover {
  background-color: #1b5e20;
}

.affiliate-link {
  color: #2e7d32;
  font-weight: bold;
  text-decoration: none;
}

.affiliate-link:hover {
  text-decoration: underline;
}

/* Reseller Hero */
#reseller-hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-text {
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
}

.slide-text h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
  margin-bottom: 20px;
}

.slide-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .reseller-content {
      flex-direction: column;
  }
  
  .slide-text h1 {
      font-size: 2.5rem;
  }
  
  .slide-text p {
      font-size: 1rem;
  }
}


.payment-options {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}
.payment-options h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #333;
}
.payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
.payment-icons img {
  height: 70px;
  transition: transform 0.3s ease;
}
.payment-icons img:hover {
  transform: scale(1.1);
}



/* Reseller Preview Section */
.reseller-preview {
  padding: 60px 20px;
  background-color: #e8f5e9;
  text-align: center;
}

.reseller-preview h2 {
  color: #2e7d32;
  font-size: 2rem;
  margin-bottom: 30px;
}

.preview-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.preview-content {
  text-align: left;
  flex: 1;
  min-width: 300px;
}

.preview-content p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.preview-action {
  flex: 1;
  min-width: 200px;
  display: flex;
  justify-content: center;
}

.preview-button {
  display: inline-block;
  background-color: #2e7d32;
  color: white;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.preview-button:hover {
  background-color: #1b5e20;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .preview-container {
      flex-direction: column;
  }
}



/* Reseller Hero Section */
.hero-slider {
  position: relative;
  height: 70vh; /* Adjust height as needed */
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-text {
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
  z-index: 2;
}

.slide-text h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
  margin-bottom: 20px;
}

.slide-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* For multiple slides */
.slide {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}


/* Mobile responsiveness for reseller page */
@media (max-width: 768px) {
    #reseller-hero .slide-text h1 {
        font-size: 2rem;
    }
    
    #reseller-hero .slide-text p {
        font-size: 1rem;
    }
    
    .reseller-content {
        flex-direction: column;
    }
    
    .reseller-text, .reseller-image {
        width: 100%;
    }
    
    .reseller-image {
        margin-top: 30px;
    }
    
    .reseller-application .form-group {
        width: 100%;
    }
    
    .submit-reseller {
        width: 100%;
        margin: 30px 0 0;
    }
}


/* style.css */
.cart-sidebar {
    /* ... existing styles ... */
    height: 100vh; /* Ensure full viewport height */
    overflow: hidden; /* Prevent double scrollbars */
}

.checkout-form {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%; /* Full height of parent */
    background: white;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto; /* Enable vertical scrolling */
}

.checkout-form form {
    flex: 1;
    padding-bottom: 20px; /* Space for submit button */
}

.submit-order {
    margin-top: auto; /* Push button to bottom */
    position: sticky;
    bottom: 0;
    background: #1b5e20;
    z-index: 1;
}

.hero-slider {
  margin-top: 70px;
  height: calc(90vh - 70px); /* Account for the margin */
  overflow: hidden;
}





/* Add this video section CSS */
.video-section {
  position: relative;
  width: 100%;
  padding-top: 70px;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.video-container video {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .video-container {
      padding: 0 15px;
  }
  
  .video-container video {
      border-radius: 0;
      width: 100%;
      height: auto;
  }
}

/* Update FAQ CSS */
.faq-item.active .faq-answer {
  max-height: none;
  padding: 15px 20px;
  border-top: 1px solid #eee;
}

/* Mobile video adjustments */
@media (max-width: 768px) {
  .video-container video {
      height: 100vh;
      object-fit: contain;
  }
}



/* Add this video section CSS */
.video-section {
  position: relative;
  width: 100%;
  padding-top: 70px;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.video-container video {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .video-container {
      padding: 0 15px;
  }
  
  .video-container video {
      border-radius: 0;
      width: 100%;
      height: auto;
  }
}

/* Mobile video adjustments */
@media (max-width: 768px) {
  .video-container video {
      height: 100vh;
      object-fit: contain;
  }
}



/* Mobile video adjustments */
@media (max-width: 768px) {
    .video-section {
        padding-top: 0;
    }
    
    .video-container {
        padding: 0;
        width: 100%;
        height: 0;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        position: relative;
    }
    
    .video-container video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
        object-fit: contain;
    }
}

/* Video section positioning */
.video-section {
    position: relative;
    width: 100%;
    margin-top: 70px; /* Height of the header */
}

/* Mobile video adjustments */
@media (max-width: 768px) {
    .video-section {
        margin-top: 70px; /* Height of the header on mobile */
    }
    
    .video-container {
        padding: 0;
        width: 100%;
        height: 0;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        position: relative;
    }
    
    .video-container video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
        object-fit: contain;
    }
}


.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}
