@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  color-scheme: light only;
  
  /* Branding Color Palette */
  --forest-green: #123D2A;
  --primary-green: #2E7D32;
  --leaf-green: #65A844;
  --lime-accent: #A7D948;
  --soil-brown: #795548;
  --bg-cream: #F7F6ED;
  --white: #FFFFFF;
  --dark-text: #17231A;
  --muted-text: #455A4F;
  --border-light: #E1E8E4;

  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* UI Metrics & Layout */
  --container-width: 1240px;
  --header-height: 85px;

  /* Shadow Library */
  --shadow-sm: 0 2px 8px rgba(18, 61, 42, 0.04);
  --shadow-md: 0 8px 24px rgba(18, 61, 42, 0.06);
  --shadow-lg: 0 16px 40px rgba(18, 61, 42, 0.09);
  --shadow-hover: 0 24px 50px rgba(18, 61, 42, 0.14);

  /* Organic Leaf Curved Border Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-leaf-1: 40px 0 40px 0;
  --radius-leaf-2: 0 40px 0 40px;
  --radius-full: 9999px;

  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- BASE STYLES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  color-scheme: light only;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-green) var(--bg-cream);
  background-color: #F7F6ED;
}

body {
  color-scheme: light only;
  font-family: var(--font-body);
  background-color: #F7F6ED !important;
  color: var(--dark-text) !important;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--forest-green);
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- LOADER SCREEN --- */
#pageLoader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-cream);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 5px solid var(--border-light);
  border-top: 5px solid var(--primary-green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

.loader-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--forest-green);
}

/* --- STICKY RESPONSIVE HEADER --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
  background-color: rgba(247, 246, 237, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

header.scrolled {
  height: 75px;
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid var(--border-light);
}

.header-container {
  width: 92%;
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.company-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  background: transparent;
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: #1B5E20; /* Vibrant Leaf Green - never looks black */
}

.brand-tagline {
  font-size: 0.75rem;
  color: #4E6E5D;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted-text);
  padding: 6px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background-color: var(--leaf-green);
  transition: var(--transition);
  border-radius: var(--radius-full);
}

.nav-link:hover, .nav-link.active {
  color: var(--forest-green);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language selector */
.lang-selector {
  position: relative;
  display: inline-block;
}

.lang-selector select {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background-color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--forest-green);
  transition: var(--transition);
}

.lang-selector select:hover {
  border-color: var(--primary-green);
}

/* Burger Button */
.burger-menu {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1100;
}

.burger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--forest-green);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: var(--radius-full);
}

/* Hamburger active transformation */
.burger-menu.active .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.burger-menu.active .line2 {
  opacity: 0;
}
.burger-menu.active .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  gap: 8px;
  border: 2px solid transparent;
  font-size: 0.95rem;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-green);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(46, 125, 50, 0.15);
}

.btn-primary:hover {
  background-color: #246327;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(46, 125, 50, 0.25);
}

.btn-secondary {
  background-color: transparent;
  color: var(--forest-green);
  border-color: var(--forest-green);
}

.btn-secondary:hover {
  background-color: var(--forest-green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--white);
  color: var(--forest-green);
}

.btn-white:hover {
  background-color: var(--bg-cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.btn-youtube-red {
  background-color: #FF0000;
  color: var(--white);
  box-shadow: 0 4px 10px rgba(255, 0, 0, 0.15);
}

.btn-youtube-red:hover {
  background-color: #CC0000;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 0, 0, 0.25);
}

/* --- SECTIONS --- */
.section {
  padding: 85px 0;
  position: relative;
}

.section-white {
  background-color: var(--white);
}

.section-cream {
  background-color: var(--bg-cream);
}

.section-forest {
  background-color: var(--forest-green);
  color: var(--white);
}

.section-forest h1, .section-forest h2, .section-forest h3 {
  color: var(--white);
}

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 55px auto;
}

.section-tag {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--leaf-green);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--muted-text);
  line-height: 1.6;
}

.section-forest .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

/* --- DECORATIVE ELEMENTS --- */
.leaf-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 25px 0;
}

.leaf-divider::before, .leaf-divider::after {
  content: '';
  height: 2px;
  width: 60px;
  background-color: var(--leaf-green);
}

.leaf-icon-svg {
  color: var(--leaf-green);
  animation: pulse 2s ease-in-out infinite;
}

/* --- ENTRANCE ANIMATIONS (SAFE FALLBACK FOR DYNAMIC RENDERING) --- */
.reveal {
  opacity: 1;
  transform: none;
}

.reveal.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.animate-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* --- GLOBAL FOOTER --- */
footer {
  background-color: var(--forest-green);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 25px 0;
  border-top: 5px solid var(--leaf-green);
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.8fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand .logo-block {
  margin-bottom: 20px;
}

.footer-brand .brand-name {
  color: var(--white);
}

.footer-brand .brand-tagline {
  color: var(--lime-accent);
}

.footer-brand p {
  margin-bottom: 25px;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-btn:hover {
  background-color: var(--primary-green);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(46, 125, 50, 0.3);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2.5px;
  background-color: var(--lime-accent);
  border-radius: var(--radius-full);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact-item svg {
  color: var(--lime-accent);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a:hover {
  color: var(--white);
}

/* --- SCROLL TO TOP --- */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: -60px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: var(--primary-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  z-index: 900;
  transition: var(--transition);
}

.scroll-top.visible {
  right: 30px;
}

.scroll-top:hover {
  background-color: var(--forest-green);
  transform: translateY(-3px);
}

/* --- MOCK IMAGE COMING SOON VIEW --- */
.image-placeholder-card {
  width: 100%;
  height: 100%;
  background-color: var(--bg-cream);
  border: 2px dashed var(--leaf-green);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 15px;
  color: var(--forest-green);
  aspect-ratio: 1;
}

.image-placeholder-card svg {
  color: var(--leaf-green);
  margin-bottom: 12px;
  animation: bounce 3s infinite;
}

.image-placeholder-card p {
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--font-heading);
}

/* --- KEYFRAMES --- */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.85; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Header & Nav Bar Responsive Spacing Overrides */
@media (max-width: 1220px) {
  .nav-links {
    gap: 12px;
  }
  .nav-link {
    font-size: 0.88rem;
  }
  .header-actions {
    gap: 10px;
  }
}

@media (max-width: 1100px) {
  /* Hide redundant "Explore Products" header button on medium screens to free space for links */
  header .header-actions .btn-primary {
    display: none;
  }
}

@media (max-width: 991px) {
  /* Hide tagline on smaller tablets to keep brand name from pushing links */
  .brand-tagline {
    display: none;
  }
  .brand-name {
    font-size: 1.2rem;
  }
}

/* --- GLOBAL RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 75px;
  }

  .burger-menu {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    padding: 100px 30px;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 1050;
    transition: var(--transition);
  }

  .nav-links.open {
    right: 0;
  }

  .header-actions {
    margin-right: 15px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .section {
    padding: 65px 0;
  }

  .section-title {
    font-size: 1.95rem;
  }
}

/* --- PREMIUM PRODUCT QUICK-VIEW MODAL --- */
.product-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18, 61, 42, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.product-modal-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.2);
  width: 100%;
  max-width: 980px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transform: scale(0.92) translateY(24px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.product-modal-backdrop.active .product-modal-container {
  transform: scale(1) translateY(0);
}

.product-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  color: var(--dark-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 1.2rem;
  transition: var(--transition);
}

.product-modal-close:hover {
  background: #ff5252;
  color: var(--white);
  border-color: #ff5252;
  transform: rotate(90deg) scale(1.08);
}

.product-modal-scroll {
  overflow-y: auto;
  padding: 36px 36px 30px 36px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-green) var(--bg-cream);
}

.product-modal-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 36px;
  align-items: start;
}

.product-modal-gallery {
  background: linear-gradient(145deg, #ffffff 0%, var(--bg-cream) 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  position: sticky;
  top: 0;
  box-shadow: var(--shadow-sm);
}

.product-modal-img-box {
  width: 100%;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.product-modal-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.12));
  transition: transform 0.35s ease;
}

.product-modal-gallery:hover img {
  transform: scale(1.05);
}

.product-modal-badge {
  display: inline-block;
  padding: 5px 16px;
  background: var(--primary-green);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.product-modal-content h2 {
  font-size: 1.95rem;
  color: var(--forest-green);
  margin-bottom: 6px;
  line-height: 1.2;
}

.product-modal-tech {
  font-size: 1.05rem;
  color: var(--soil-brown);
  font-weight: 600;
  margin-bottom: 16px;
}

.product-modal-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.product-modal-pill {
  padding: 5px 14px;
  background: rgba(46, 125, 50, 0.1);
  color: var(--primary-green);
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 700;
}

.product-modal-desc {
  font-size: 0.95rem;
  color: var(--muted-text);
  margin-bottom: 20px;
  line-height: 1.65;
}

.product-modal-section-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--forest-green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-modal-benefits {
  list-style: none;
  margin-bottom: 18px;
}

.product-modal-benefits li {
  position: relative;
  padding-left: 24px;
  font-size: 0.92rem;
  color: var(--dark-text);
  margin-bottom: 8px;
  line-height: 1.55;
}

.product-modal-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-green);
  font-weight: 900;
  font-size: 1.05rem;
}

.product-modal-info-box {
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 18px;
  font-size: 0.9rem;
}

.product-modal-crops-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.product-modal-crop-tag {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--forest-green);
  font-weight: 600;
}

.product-modal-price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.product-modal-price-table th, .product-modal-price-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.product-modal-price-table th {
  background: var(--bg-cream);
  font-weight: 700;
  color: var(--forest-green);
}

.product-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
}

/* ==========================================================================
   COMPREHENSIVE MOBILE-FRIENDLY RESPONSIVE DESIGN SUITE
   ========================================================================== */

/* 1. Tablet & Medium Screens (max-width: 991px) */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
  }
}

/* 2. Mobile Screens (max-width: 768px) */
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  /* Sticky Header & Navigation */
  .header-container {
    width: 94%;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 82%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    padding: 85px 25px 40px 25px;
    align-items: stretch;
    gap: 16px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 1050;
    transition: right 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow-y: auto;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-link {
    font-size: 1.05rem;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: var(--bg-cream);
  }

  .nav-link.active {
    background: rgba(46, 125, 50, 0.12);
    color: var(--primary-green);
  }

  /* Filter Tabs (Horizontal Scroll with Momentum) */
  .filter-bar {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 4px 15px 4px;
    gap: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .filter-bar::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex: 0 0 auto;
    padding: 10px 18px;
    font-size: 0.88rem;
    border-radius: var(--radius-full);
  }

  /* Product Quick-View Modal (Sleek Mobile Bottom Sheet) */
  .product-modal-backdrop {
    padding: 0;
    align-items: flex-end;
  }

  .product-modal-container {
    max-width: 100vw;
    width: 100%;
    max-height: 90vh;
    border-radius: 24px 24px 0 0;
    margin: 0;
  }

  .product-modal-scroll {
    padding: 24px 18px 30px 18px;
  }

  .product-modal-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-modal-gallery {
    position: static;
  }

  .product-modal-img-box {
    height: 190px;
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(240, 245, 241, 1) 100%);
  }

  .product-modal-close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }

  .product-modal-price-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .product-modal-actions {
    flex-direction: column;
    gap: 10px;
  }

  .product-modal-actions .btn {
    width: 100%;
    padding: 14px 18px;
    font-size: 0.95rem;
  }

  /* Hero & Stats Grid */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
  }

  .stat-card {
    padding: 16px;
    text-align: center;
  }

  .stat-num {
    font-size: 1.8rem;
  }

  /* Inputs & Forms (Prevent iOS Zoom) */
  input, select, textarea {
    font-size: 16px !important;
  }

  .btn {
    min-height: 46px;
  }
}

/* 3. Small Mobile Phones (max-width: 480px) */
@media (max-width: 480px) {
  .section-title {
    font-size: 1.65rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .hero-title {
    font-size: 1.85rem;
    line-height: 1.2;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .featured-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-bottom {
    font-size: 0.82rem;
  }
}


