* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background-color: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.header-right {
  display: flex;
  align-items: center;
  margin-right: 20px; /* Move icons more to the right */
}

/* Hide mobile menu button on desktop */
.mobile-menu-toggle {
  display: none;
}

.logo {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #2e7d32;
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-left: 20px; /* Move logo to the right */
}

.logo i {
  margin-right: 8px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #2e7d32;
}

/* Dropdown Menu Styles */
.dropdown {
  position: relative;
}

.dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown > a i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.dropdown:hover > a i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 220px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 15px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 20px;
  color: #555;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #2e7d32;
  border-left-color: #2e7d32;
  padding-left: 25px;
}

.dropdown-item:first-child {
  font-weight: 600;
  color: #2e7d32;
  border-bottom: 1px solid #e9ecef;
  margin-bottom: 5px;
  padding-bottom: 15px;
}

.dropdown-item:first-child:hover {
  background-color: #e8f5e9;
}

.header-icons {
  display: flex;
  align-items: center;
}

.header-icons a {
  color: #555;
  margin-left: 20px;
  font-size: 18px;
  transition: color 0.3s;
  position: relative;
}

.header-icons a:hover {
  color: #2e7d32;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #e53935;
  color: white;
  font-size: 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cart Sidebar */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  height: 100vh;
  background-color: white;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.active {
  right: 0;
}

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

.cart-overlay.active {
  display: block;
}

.cart-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  color: #333;
  display: flex;
  align-items: center;
}

.cart-header h3 i {
  margin-right: 10px;
  color: #2e7d32;
}

.close-cart {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #777;
  transition: color 0.3s;
}

.close-cart:hover {
  color: #e53935;
}

.cart-items {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}

.empty-cart {
  text-align: center;
  padding: 120px 20px 40px 20px;
  color: #999;
  margin-top: 200px;
}

.empty-cart i {
  font-size: 60px;
  margin-bottom: 15px;
  color: #ddd;
}

.empty-cart p {
  font-size: 18px;
}

.cart-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.cart-item-image {
  width: 70px;
  height: 70px;
  background-color: #f1f8e9;
  border-radius: 8px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-weight: 500;
  margin-bottom: 5px;
  color: #333;
}

.cart-item-price {
  color: #2e7d32;
  font-weight: 600;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  margin-top: 8px;
}

.quantity-btn {
  width: 25px;
  height: 25px;
  background-color: #f5f5f5;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-input {
  width: 40px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin: 0 5px;
  padding: 2px;
}

.remove-item {
  background: none;
  border: none;
  color: #e53935;
  cursor: pointer;
  font-size: 18px;
  margin-left: 10px;
  transition: color 0.3s;
}

.remove-item:hover {
  color: #c62828;
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  background-color: #f9f9f9;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

#cartTotal {
  color: #2e7d32;
}

.btn-secondary {
  background-color: #f5f5f5;
  color: #333;
  margin-top: 10px;
}

.btn-secondary:hover {
  background-color: #e0e0e0;
}

/* Hero Section */
/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.3)
    ),
    url("https://images.unsplash.com/photo-1416879595882-3373a0480b5b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
  border: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(46, 125, 50, 0.8) 0%,
    rgba(27, 94, 32, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

.hero p {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons .btn-primary {
  background-color: #57e24a !important;
  color: white !important;
  padding: 12px 24px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border: none !important;
  border-radius: 4px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  margin-top: 8px;
  justify-content: center !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  width: 160px !important;
  height: 48px !important;
  text-align: center !important;
  box-sizing: border-box !important;
  vertical-align: top !important;
}

.hero-buttons .btn-primary:hover {
  background-color: #059600 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(74, 226, 87, 0.3) !important;
}

.hero-buttons .btn-secondary {
  background-color: rgba(255, 255, 255, 0.15) !important;
  color: white !important;
  padding: 12px 24px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 4px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  width: 160px !important;
  height: 48px !important;
  text-align: center !important;
  box-sizing: border-box !important;
  backdrop-filter: blur(10px) !important;
  vertical-align: top !important;
}

.hero-buttons .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.25) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  transform: translateY(-2px) !important;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 150px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  border: none !important;
  box-shadow: none !important;
}

.scroll-arrow {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
  cursor: pointer;
  outline: none;
}

.scroll-arrow:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: white;
  color: white;
  transform: translateY(-5px);
  animation-play-state: paused;
}

.custom-arrow {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  display: block;
}

.arrow-shape {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid rgba(255, 255, 255, 0.9);
  margin: 0;
  padding: 0;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-8px);
  }
}

.btn {
  display: inline-block;
  background-color: #2e7d32;
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: background-color 0.3s;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  background-color: #1b5e20;
}

.btn-confirm {
  background-color: #25d366;
  width: 100%;
  padding: 15px;
  font-size: 18px;
}

.btn-confirm:hover {
  background-color: #128c7e;
}

/* Section Headers */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
}

.section-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  color: #1b5e20;
  font-weight: 600;
}

.view-all {
  color: #2e7d32;
  text-decoration: none;
  font-weight: 500;
}

.view-all:hover {
  text-decoration: underline;
}

/* Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.product-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
  height: 200px;
  background-color: #f1f8e9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-image img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.discount-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #e53935;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
}

.product-info {
  padding: 20px;
}

.product-title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #333;
}

.price-container {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.current-price {
  font-size: 20px;
  font-weight: 700;
  color: #2e7d32;
  margin-right: 10px;
}

.original-price {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
}

.price-range {
  font-size: 16px;
  color: #666;
  font-weight: 500;
}

.add-to-cart {
  width: 100%;
  padding: 10px;
  background-color: #f1f8e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.add-to-cart:hover {
  background-color: #2e7d32;
  color: white;
}

/* Features Section */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.feature-card {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  font-size: 40px;
  color: #2e7d32;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  margin-bottom: 15px;
  color: #1b5e20;
}

/* Blog Section */
.blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.blog-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-image {
  height: 200px;
  background-color: #e8f5e9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-content {
  padding: 25px;
}

.blog-date {
  color: #888;
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}

.blog-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
}

.blog-card h3 a {
  color: inherit;
  text-decoration: none;
}

.blog-card h3 a:hover {
  color: #2e7d32;
}

/* Checkout Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  justify-content: center;
  align-items: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background-color: white;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f9f9f9;
}

.modal-header h3 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  color: #333;
  display: flex;
  align-items: center;
}

.modal-header h3 i {
  margin-right: 10px;
  color: #2e7d32;
}

.close-modal {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #777;
  transition: color 0.3s;
}

.close-modal:hover {
  color: #e53935;
}

.modal-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2e7d32;
}

.form-group small {
  display: block;
  margin-top: 5px;
  color: #666;
  font-size: 14px;
}

.order-summary {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
}

.order-summary h4 {
  font-family: "Poppins", sans-serif;
  margin-bottom: 15px;
  color: #333;
}

.summary-items {
  margin-bottom: 15px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 18px;
  padding-top: 15px;
  border-top: 2px solid #ddd;
}

#summaryTotal {
  color: #2e7d32;
}

.payment-methods {
  margin: 20px 0;
}

.payment-methods h4 {
  font-family: "Poppins", sans-serif;
  margin-bottom: 15px;
  color: #333;
}

.payment-options {
  display: flex;
  gap: 20px;
}

.payment-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  flex: 1;
  transition: border-color 0.3s;
}

.payment-option:hover {
  border-color: #2e7d32;
}

.payment-option input {
  margin-right: 10px;
}

.terms {
  margin: 20px 0;
}

.terms label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.terms input {
  width: auto;
  margin-right: 10px;
}

.terms a {
  color: #2e7d32;
  text-decoration: none;
}

.terms a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: #1b5e20;
  color: white;
  padding: 50px 0 20px;
  margin-top: 50px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 40px;
  align-items: start;
}

.footer-column h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: #4caf50;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.footer-links a {
  color: #c8e6c9;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-links i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: #c8e6c9;
}

/* Footer Quick Links Positioning */
.footer-content .footer-column:nth-child(2) {
  margin-left: 45px;

}

/* Responsive Footer Adjustments */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  
  .footer-content .footer-column:nth-child(2) {
    margin-left: 0;
    text-align: center;
  }
}

/* Navigation Active State */
.nav-links a.active {
  color: #2e7d32;
  font-weight: 600;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Section Spacing */
section {
  padding: 60px 0;
  scroll-margin-top: 80px;
}

/* About Section Styles */
.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.about-text h3 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  color: #1b5e20;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #555;
}

.about-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.stat {
  text-align: center;
}

.stat h4 {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  color: #2e7d32;
  margin-bottom: 5px;
}

.stat p {
  color: #666;
  font-weight: 500;
}

.about-image {
  text-align: center;
  background-color: #f1f8e9;
  padding: 60px;
  border-radius: 8px;
}

/* News Section Styles */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.news-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 300px;
}

.news-card.featured .news-image {
  height: auto;
}

.news-image {
  height: 180px;
  background-color: #f1f8e9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.news-content {
  padding: 25px;
}

.news-category {
  display: inline-block;
  background-color: #2e7d32;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.news-date {
  display: block;
  color: #888;
  font-size: 14px;
  margin-bottom: 15px;
}

.news-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
  line-height: 1.4;
}

.news-card.featured h3 {
  font-size: 24px;
}

.news-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.news-card h3 a:hover {
  color: #2e7d32;
}

.news-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.news-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #888;
}

.news-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.news-meta i {
  font-size: 12px;
}

/* Search Modal Styles */
.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.search-modal.active {
  display: flex;
}

.search-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.search-modal-container {
  position: relative;
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  animation: slideUp 0.3s ease;
}

.search-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid #eee;
  background-color: #f9f9f9;
}

.search-modal-header h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  color: #333;
  display: flex;
  align-items: center;
  margin: 0;
}

.search-modal-header h3 i {
  margin-right: 10px;
  color: #2e7d32;
}

.search-close-btn {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #666;
  font-size: 18px;
  transition: all 0.3s;
}

.search-close-btn:hover {
  background-color: #f0f0f0;
  color: #333;
}

.search-modal-body {
  padding: 25px;
  max-height: calc(90vh - 80px);
  overflow-y: auto;
}

.search-input-container {
  position: relative;
  margin-bottom: 20px;
}

#searchInput {
  width: 100%;
  padding: 15px 50px 15px 20px;
  font-size: 18px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s;
}

#searchInput:focus {
  border-color: #2e7d32;
}

.clear-search-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #999;
  font-size: 16px;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s;
  display: none;
}

.clear-search-btn:hover {
  background-color: #f5f5f5;
  color: #666;
}

.search-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 16px;
  border: 2px solid #e0e0e0;
  background: white;
  color: #666;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
  font-weight: 500;
}

.filter-btn:hover {
  border-color: #2e7d32;
  color: #2e7d32;
}

.filter-btn.active {
  background-color: #2e7d32;
  border-color: #2e7d32;
  color: white;
}

.search-results {
  max-height: 400px;
  overflow-y: auto;
  border-radius: 8px;
}

.search-placeholder {
  text-align: center;
  padding: 40px 20px;
  color: #999;
}

.search-placeholder p {
  font-size: 16px;
  margin: 0;
}

.search-result-item {
  display: flex;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background-color 0.3s;
  border-radius: 8px;
  margin-bottom: 5px;
}

.search-result-item:hover {
  background-color: #f9f9f9;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-icon {
  width: 50px;
  height: 50px;
  background-color: #f1f8e9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 20px;
  color: #2e7d32;
  flex-shrink: 0;
}

.search-result-content {
  flex: 1;
  min-width: 0;
}

.search-result-title {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
  font-size: 16px;
}

.search-result-description {
  color: #666;
  font-size: 14px;
  line-height: 1.4;
}

.search-result-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.search-result-category {
  background-color: #2e7d32;
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.search-result-price {
  color: #2e7d32;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
}

.search-add-to-cart {
  background-color: #2e7d32;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.search-add-to-cart:hover {
  background-color: #1b5e20;
  transform: translateY(-1px);
}

.no-results {
  text-align: center;
  padding: 40px 20px;
  color: #999;
}

.no-results i {
  font-size: 48px;
  margin-bottom: 15px;
  color: #ddd;
}

/* Search Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Search Results Scrollbar */
.search-results::-webkit-scrollbar {
  width: 6px;
}

.search-results::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.search-results::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

.search-results::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Mobile Search Styles */
@media (max-width: 768px) {
  .search-modal {
    padding: 0;
  }
  
  .search-modal-container {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
  }
  
  .search-modal-body {
    max-height: calc(100vh - 80px);
  }
  
  .search-filters {
    justify-content: center;
  }
  
  .filter-btn {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  #searchInput {
    font-size: 16px;
  }
  
  .search-result-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .search-result-meta {
    width: 100%;
    justify-content: space-between;
  }
}

/* Mobile Responsive for News */
@media (max-width: 768px) {
  .news-card.featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  /* Mobile Search Styles */
  .search-modal-content {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
  }
  
  .search-filters {
    justify-content: center;
  }
  
  .filter-btn {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  #searchInput {
    font-size: 16px;
  }
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #555;
  cursor: pointer;
  padding: 10px;
  margin-right: 15px;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block !important;
  }

  .header-right {
    display: flex;
    align-items: center;
  }

  /* Hide desktop navigation on mobile */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 0;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-links li:last-child {
    border-bottom: none;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  /* Mobile Dropdown Styles - Simple approach */
  .dropdown {
    position: relative;
  }

  .dropdown > a {
    cursor: pointer;
  }

  .dropdown-menu {
    display: none;
    background-color: #f8f9fa;
    border-left: 3px solid #2e7d32;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .dropdown.mobile-open .dropdown-menu {
    display: block;
  }

  .dropdown:hover .dropdown-menu {
    display: none; /* Disable desktop hover on mobile */
  }

  .dropdown-item {
    display: block;
    padding: 12px 25px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #e9ecef;
    background-color: #f8f9fa;
  }

  .dropdown-item:hover {
    background-color: #e9ecef;
    color: #2e7d32;
  }

  .dropdown-item:last-child {
    border-bottom: none;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-stats {
    justify-content: center;
  }

  .gift-collection {
    grid-template-columns: 1fr;
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
  transition: all 0.3s;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  color: white;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
  }

  .nav-links {
    margin-top: 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links li {
    margin: 0 10px 5px;
  }

  /* Mobile Dropdown Styles - Simple approach */
  .dropdown {
    position: relative;
  }

  .dropdown > a {
    cursor: pointer;
  }

  .dropdown-menu {
    display: none;
    background-color: #f8f9fa;
    border-left: 3px solid #2e7d32;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .dropdown.mobile-open .dropdown-menu {
    display: block;
  }

  .dropdown:hover .dropdown-menu {
    display: none; /* Disable desktop hover on mobile */
  }

  .dropdown-item {
    display: block;
    padding: 12px 25px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #e9ecef;
    background-color: #f8f9fa;
  }

  .dropdown-item:hover {
    background-color: #e9ecef;
    color: #2e7d32;
  }

  .dropdown-item:last-child {
    border-bottom: none;
  }

  .header-icons {
    margin-top: 0;
    display: flex;
    align-items: center;
  }

  .hero {
    background-attachment: scroll;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 160px !important;
    height: 48px !important;
    max-width: 160px !important;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .cart-sidebar {
    width: 100%;
    right: -100%;
  }

  .modal-content {
    width: 95%;
    height: 95vh;
  }

  .payment-options {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    padding: 12px 24px !important;
    font-size: 14px !important;
    width: 160px !important;
    height: 48px !important;
  }

  .hero {
    padding: 50px 0;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-header h2 {
    margin-bottom: 10px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 25px;
  }
}

/* Enhanced Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  color: #2e7d32;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
  border-radius: 2px;
}

/* Enhanced About Section */
.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.about-text h3 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  color: #2e7d32;
  margin-bottom: 25px;
  font-weight: 600;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 25px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.stat {
  text-align: center;
  padding: 25px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #2e7d32;
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.stat h4 {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  color: #2e7d32;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat p {
  color: #666;
  font-weight: 500;
  margin: 0;
}

.about-image {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design Improvements */
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .about-text h3 {
    font-size: 1.5rem;
  }
}/* Plants 
Page Specific Styles */
.plants-hero {
  background: linear-gradient(135deg, #2e7d32 0%, #388e3c 50%, #4caf50 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.plants-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="plant-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23plant-pattern)"/></svg>');
  opacity: 0.3;
}

.plants-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.plants-hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.plants-hero p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.95;
}

/* Category Filter Buttons */
.category-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.category-btn {
  padding: 12px 24px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-btn:hover,
.category-btn.active {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Plants Main Content */
.plants-main {
  padding: 60px 0;
  min-height: 70vh;
}

/* Plants Toolbar */
.plants-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding: 25px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.plants-search {
  position: relative;
  flex: 1;
  max-width: 400px;
}

.plants-search input {
  width: 100%;
  padding: 15px 50px 15px 20px;
  border: 2px solid #e9ecef;
  border-radius: 25px;
  font-size: 16px;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
}

.plants-search input:focus {
  outline: none;
  border-color: #2e7d32;
  background-color: white;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.plants-search i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 18px;
}

.plants-sort select {
  padding: 15px 20px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 16px;
  background-color: white;
  cursor: pointer;
  min-width: 200px;
  transition: all 0.3s ease;
}

.plants-sort select:focus {
  outline: none;
  border-color: #2e7d32;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

/* Plants Grid */
.plants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.plant-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
}

.plant-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.plant-image {
  height: 220px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.plant-image i {
  font-size: 60px;
  color: #2e7d32;
  opacity: 0.8;
}

.plant-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(46, 125, 50, 0.9);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plant-info {
  padding: 25px;
}

.plant-name {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.plant-description {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.plant-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.plant-detail {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #555;
}

.plant-detail i {
  margin-right: 8px;
  width: 16px;
  color: #2e7d32;
}

.plant-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.current-price {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2e7d32;
}

.original-price {
  font-size: 1rem;
  color: #999;
  text-decoration: line-through;
  margin-left: 10px;
}

.add-to-cart-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #2e7d32 0%, #388e3c 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
}

.add-to-cart-btn:hover {
  background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

/* Load More Button */
.load-more-container {
  text-align: center;
  margin-top: 50px;
}

.load-more-btn {
  padding: 15px 40px;
  background: linear-gradient(135deg, #2e7d32 0%, #388e3c 100%);
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.load-more-btn:hover {
  background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

/* Responsive Design for Plants Page */
@media (max-width: 768px) {
  .plants-hero h1 {
    font-size: 2.2rem;
  }
  
  .plants-hero p {
    font-size: 1rem;
  }
  
  .category-filters {
    gap: 10px;
  }
  
  .category-btn {
    padding: 10px 18px;
    font-size: 12px;
  }
  
  .plants-toolbar {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  
  .plants-search {
    max-width: none;
  }
  
  .plants-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .plant-card {
    border-radius: 12px;
  }
  
  .plant-image {
    height: 180px;
  }
  
  .plant-info {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .plants-grid {
    grid-template-columns: 1fr;
  }
  
  .plants-hero {
    padding: 60px 0;
  }
  
  .plants-main {
    padding: 40px 0;
  }
  
}

main,
main.container,
#plants,

/* Ensure no visual artifacts around scroll arrow */
.scroll-indicator,
.scroll-indicator *,
.scroll-arrow,
.scroll-arrow *,
.arrow-shape {
  border: none !important;
  border-bottom: none !important;
  border-top: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
  outline: none !important;
}

/* ========================================
   MOBILE RESPONSIVE STYLES (768px and below)
   ======================================== */

@media (max-width: 768px) {
  
  /* ===== HEADER & NAVIGATION ===== */
  .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
  }

  .header-right {
    display: flex;
    align-items: center;
  }

  /* Mobile Menu Toggle Button */
  .mobile-menu-toggle {
    display: block !important;
    background: none;
    border: none;
    font-size: 24px;
    color: #555;
    cursor: pointer;
    padding: 10px;
    margin-right: 15px;
  }

  /* Hide desktop navigation on mobile */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 0;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 0;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    font-size: 16px;
    color: #555;
    text-decoration: none;
    font-weight: 500;
  }

  .nav-links a:hover {
    color: #2e7d32;
  }

  /* Header Icons */
  .header-icons {
    margin-top: 0;
    display: flex;
    align-items: center;
  }

  .header-icons a {
    margin-left: 15px;
    font-size: 18px;
  }

  /* ===== HERO SECTION ===== */
  .hero {
    background-attachment: scroll;
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 160px !important;
    height: 48px !important;
    max-width: 160px !important;
  }

  /* ===== PRODUCTS & GRID ===== */
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }

  /* ===== CART SIDEBAR ===== */
  .cart-sidebar {
    width: 100%;
    right: -100%;
  }

  /* ===== MODALS ===== */
  .modal-content {
    width: 95%;
    height: 95vh;
  }

  .payment-options {
    flex-direction: column;
    gap: 10px;
  }

  /* ===== SEARCH MODAL ===== */
  .search-modal {
    padding: 0;
  }
  
  .search-modal-container {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
  }
  
  .search-modal-body {
    max-height: calc(100vh - 80px);
  }
  
  .search-filters {
    justify-content: center;
  }
  
  .filter-btn {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  #searchInput {
    font-size: 16px;
  }
  
  .search-result-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .search-result-meta {
    width: 100%;
    justify-content: space-between;
  }

  /* ===== NEWS SECTION ===== */
  .news-card.featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }

  /* ===== ABOUT SECTION ===== */
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .about-text h3 {
    font-size: 1.5rem;
  }

  /* ===== FOOTER ===== */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 30px;
  }
  
  .footer-content .footer-column:nth-child(2) {
    margin-left: 0;
    text-align: left;
  }

  /* ===== PLANTS PAGE SPECIFIC ===== */
  .plants-hero h1 {
    font-size: 2.2rem;
  }
  
  .plants-hero p {
    font-size: 1rem;
  }
  
  .category-filters {
    gap: 10px;
  }
  
  .category-btn {
    padding: 10px 18px;
    font-size: 12px;
  }
  
  .plants-toolbar {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  
  .plants-search {
    max-width: none;
  }
  
  .plants-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .plant-card {
    border-radius: 12px;
  }
  
  .plant-image {
    height: 180px;
  }
  
  .plant-info {
    padding: 20px;
  }

  /* ===== WHATSAPP FLOAT ===== */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 25px;
  }

}

/* ===== EXTRA SMALL MOBILE (480px and below) ===== */
@media (max-width: 480px) {
  
  .products-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    padding: 12px 24px !important;
    font-size: 14px !important;
    width: 160px !important;
    height: 48px !important;
  }

  .hero {
    padding: 50px 0;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-header h2 {
    margin-bottom: 10px;
  }

  .plants-grid {
    grid-template-columns: 1fr;
  }
  
  .plants-hero {
    padding: 60px 0;
  }
  
  .plants-main {
    padding: 40px 0;
  }

}/* ===== PLA
NT DETAILS MODAL ===== */
.plant-details-modal {
  max-width: 800px;
  width: 95%;
}

.plant-modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.plant-modal-image {
  background-color: #f1f8e9;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plant-modal-discount {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #e53935;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}

.plant-modal-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(46, 125, 50, 0.9);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.plant-modal-info {
  padding: 10px 0;
}

.plant-modal-title {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.plant-modal-description {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.plant-modal-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.plant-modal-detail {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #555;
}

.plant-modal-detail i {
  margin-right: 12px;
  width: 20px;
  color: #2e7d32;
  font-size: 16px;
}

.plant-modal-price {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9ecef;
}

.modal-current-price {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #2e7d32;
}

.modal-original-price {
  font-size: 20px;
  color: #999;
  text-decoration: line-through;
}

.pot-color-selection-modal {
  margin: 25px 0;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 2px solid #e9ecef;
}

.pot-color-selection-modal .pot-color-label {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.required {
  color: #e53935;
  font-weight: bold;
}

.quantity-selection {
  margin: 25px 0;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.quantity-label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  font-size: 16px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-controls .quantity-btn {
  width: 40px;
  height: 40px;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  color: #495057;
  transition: all 0.3s ease;
}

.quantity-controls .quantity-btn:hover {
  background-color: #2e7d32;
  color: white;
  border-color: #2e7d32;
}

.quantity-controls .quantity-input {
  width: 80px;
  height: 40px;
  text-align: center;
  border: 1px solid #ced4da;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
}

.modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.modal-actions .btn {
  flex: 1;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.modal-actions .btn-secondary {
  background-color: #6c757d;
  color: white;
  border: none;
}

.modal-actions .btn-secondary:hover {
  background-color: #5a6268;
  transform: translateY(-2px);
}

.modal-actions .btn-primary {
  background-color: #2e7d32;
  color: white;
  border: none;
}

.modal-actions .btn-primary:hover {
  background-color: #1b5e20;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

/* Mobile responsive for plant details modal */
@media (max-width: 768px) {
  .plant-details-modal {
    width: 100%;
    height: 100vh;
    max-width: 100%;
    border-radius: 0;
  }
  
  .plant-modal-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .plant-modal-image {
    min-height: 200px;
    padding: 30px;
  }
  
  .plant-modal-title {
    font-size: 24px;
  }
  
  .modal-current-price {
    font-size: 28px;
  }
  
  .modal-original-price {
    font-size: 18px;
  }
  
  .modal-actions {
    flex-direction: column;
  }
  
  .modal-actions .btn {
    width: 100%;
  }
}