
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=Dancing+Script:wght@400;500;600;700&display=swap');

:root {

  --clr-primary: #156437;
  --clr-primary-dark: #0B3D20;
  --clr-primary-light: #2E8B57;

  --clr-secondary: #D4A017;
  --clr-secondary-dark: #B8860B;
  --clr-secondary-light: #F0C644;

  --clr-cream: #F5FAF7;
  --clr-cream-dark: #E0EDE5;
  --clr-brown: #3B4A3F;
  --clr-brown-light: #6B7F71;
  --clr-text: #1A2E22;
  --clr-text-light: #5A6B60;
  --clr-white: #ffffff;

  --grad-green: linear-gradient(135deg, #156437 0%, #2E8B57 50%, #3DAA6D 100%);
  --grad-gold: linear-gradient(135deg, #D4A017 0%, #F0C644 100%);
  --grad-hero: linear-gradient(180deg, rgba(5,30,15,0.55) 0%, rgba(5,30,15,0.18) 40%, rgba(5,30,15,0.60) 100%);
  --grad-dark: linear-gradient(135deg, #0B3D20 0%, #156437 100%);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
  --shadow-gold: 0 4px 20px rgba(212, 160, 23, 0.3);

  --ff-heading: 'Playfair Display', Georgia, serif;
  --ff-body: 'Inter', system-ui, sans-serif;
  --ff-script: 'Dancing Script', cursive;

  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.68, -0.55, 0.27, 1.55);

  --section-py: 100px;
  --container-max: 1200px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--ff-body);
  color: var(--clr-text);
  background-color: var(--clr-cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--ff-script);
  font-size: 1.25rem;
  color: var(--clr-secondary-dark);
  display: block;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--clr-primary-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--clr-text-light);
  max-width: 650px;
  margin: 0 auto 48px;
}

.text-center {
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease-out);
}

.btn:hover::before {
  transform: translateX(0);
}

.btn-primary {
  background: var(--grad-green);
  color: var(--clr-white);
  box-shadow: 0 4px 15px rgba(21, 100, 55, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(21, 100, 55, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
  background: var(--clr-white);
  color: var(--clr-primary);
  transform: translateY(-3px);
}

.btn-gold {
  background: var(--grad-gold);
  color: var(--clr-primary-dark);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 160, 23, 0.5);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes grain {
  0% { background-position: 0 0; }
  100% { background-position: 200px 200px; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s var(--ease-out);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s var(--ease-out);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

#preloader {
  position: fixed;
  inset: 0;
  background: var(--clr-cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s, visibility 0.6s;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  margin-bottom: 24px;
}

.preloader-text {
  font-family: var(--ff-heading);
  color: var(--clr-primary);
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.preloader-bar {
  width: 200px;
  height: 4px;
  background: var(--clr-cream-dark);
  border-radius: 2px;
  margin-top: 16px;
  overflow: hidden;
}

.preloader-bar::after {
  content: '';
  display: block;
  width: 60%;
  height: 100%;
  background: var(--grad-green);
  border-radius: 2px;
  animation: loading 1.2s ease-in-out infinite;
}

@keyframes loading {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(250%); }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s var(--ease-out);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}

.nav-brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--clr-secondary);
  transition: transform 0.3s;
}

.nav-brand:hover img {
  transform: rotate(10deg) scale(1.05);
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-name {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2;
  color: var(--clr-white);
  transition: color 0.4s;
}

.navbar.scrolled .nav-brand-name {
  color: var(--clr-primary-dark);
}

.nav-brand-tagline {
  font-family: var(--ff-script);
  font-size: 0.8rem;
  color: var(--clr-secondary-light);
  transition: color 0.4s;
}

.navbar.scrolled .nav-brand-tagline {
  color: var(--clr-secondary-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 18px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s;
  position: relative;
}

.navbar.scrolled .nav-links a {
  color: var(--clr-text);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--clr-white);
  background: rgba(255, 255, 255, 0.15);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--clr-primary);
  background: rgba(21, 100, 55, 0.08);
}

/* Navigation Dropdown styling */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown .dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-dropdown .chevron {
  font-size: 0.65rem;
  transition: transform 0.3s var(--ease-out);
  display: inline-block;
  margin-top: 1px;
}

.nav-dropdown:hover .chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: var(--clr-white);
  min-width: 240px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 10px 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s var(--ease-out);
  z-index: 1010;
  border: 1px solid var(--clr-cream-dark);
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--clr-white);
  border-left: 1px solid var(--clr-cream-dark);
  border-top: 1px solid var(--clr-cream-dark);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(6px);
}

.dropdown-menu a {
  display: block !important;
  width: 100% !important;
  padding: 10px 16px !important;
  color: var(--clr-text) !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  text-align: left !important;
  border-radius: 8px !important;
  background: transparent !important;
  transition: all 0.2s !important;
}

.dropdown-menu a:hover {
  color: var(--clr-primary) !important;
  background: rgba(21, 100, 55, 0.06) !important;
}

.nav-cta {
  margin-left: 8px;
}

.nav-cta .btn {
  padding: 10px 24px;
  font-size: 0.9rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 2;
  padding: 8px;
}

.hamburger span {
  width: 28px;
  height: 2.5px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: all 0.4s var(--ease-out);
}

.navbar.scrolled .hamburger span {
  background: var(--clr-primary-dark);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 8s ease-out;
}

.hero-slide.active img {
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  z-index: 1;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--clr-white);
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInUp 1s var(--ease-out) 0.3s both;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--clr-secondary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: var(--ff-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 1s var(--ease-out) 0.5s both;
  text-shadow: 2px 4px 12px rgba(0,0,0,0.3);
}

.hero h1 .highlight {
  color: var(--clr-secondary-light);
  display: block;
}

.hero-tagline {
  font-family: var(--ff-script);
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--clr-secondary-light);
  margin-bottom: 12px;
  animation: fadeInUp 1s var(--ease-out) 0.7s both;
}

.hero-desc {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 36px;
  opacity: 0.9;
  line-height: 1.7;
  animation: fadeInUp 1s var(--ease-out) 0.9s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 1s var(--ease-out) 1.1s both;
}

.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.4s;
  border: none;
}

.hero-dot.active {
  background: var(--clr-secondary);
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(212, 160, 23, 0.6);
}

.scroll-indicator {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInUp 1s var(--ease-out) 1.4s both;
}

.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 13px;
  position: relative;
}

.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--clr-secondary);
  border-radius: 2px;
  animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

.stats-bar {
  background: var(--clr-white);
  padding: 40px 0;
  margin-top: -60px;
  position: relative;
  z-index: 10;
  border-radius: 20px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-lg);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 20px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--clr-cream-dark), transparent);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
}

.stat-number {
  font-family: var(--ff-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--clr-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--clr-text-light);
  font-weight: 500;
}

.about {
  padding: var(--section-py) 0;
  background: var(--clr-cream);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-img-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.about-img-main:hover img {
  transform: scale(1.05);
}

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--clr-white);
}

.about-img-secondary img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--grad-gold);
  color: var(--clr-primary-dark);
  padding: 16px 24px;
  border-radius: 16px;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow-gold);
  animation: float 4s ease-in-out infinite;
  z-index: 2;
}

.about-badge span {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 2px;
}

.about-content .section-label {
  text-align: left;
}

.about-content .section-title {
  text-align: left;
}

.about-text {
  color: var(--clr-text-light);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.about-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--clr-white);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.about-highlight-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.about-highlight-item .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(21, 100, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.about-highlight-item .text {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--clr-text);
  line-height: 1.3;
}

.features {
  padding: var(--section-py) 0;
  background: var(--grad-dark);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.features .section-label {
  color: var(--clr-secondary-light);
}

.features .section-title {
  color: var(--clr-white);
}

.features .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 32px;
  backdrop-filter: blur(10px);
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: left 0.6s;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-8px);
  border-color: rgba(212, 160, 23, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: var(--grad-gold);
  color: var(--clr-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
  box-shadow: 0 8px 16px rgba(212, 160, 23, 0.25);
  transition: transform 0.4s var(--ease-spring);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  color: var(--clr-white);
  margin-bottom: 12px;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

.products {
  padding: var(--section-py) 0;
  background: var(--clr-cream);
  position: relative;
}

.products-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 8px 22px;
  border-radius: 50px;
  border: 2px solid var(--clr-cream-dark);
  background: var(--clr-white);
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--clr-text-light);
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--clr-primary);
  color: var(--clr-white);
  border-color: var(--clr-primary);
  box-shadow: 0 4px 12px rgba(21, 100, 55, 0.25);
}

.products-scroll-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, #000 4%, #000 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 4%, #000 96%, transparent 100%);
  padding: 10px 0 20px;
}

.products-grid {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: productsScroll var(--scroll-duration, 90s) linear infinite;
  will-change: transform;
}

.products-scroll-wrapper:hover .products-grid {
  animation-play-state: paused;
}

.products-grid .product-card {
  flex: 0 0 300px;
  min-width: 300px;
  max-width: 300px;
}

@keyframes productsScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.product-card {
  background: var(--clr-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s var(--ease-out);
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.product-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.product-card:hover .product-img img {
  transform: scale(1.1);
}

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--grad-green);
  color: var(--clr-white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.product-organic {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: var(--clr-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}

.product-info {
  padding: 20px 24px;
  text-align: center;
}

.product-info h3 {
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  color: var(--clr-primary-dark);
  margin-bottom: 16px;
}

.view-product-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 50px;
  background: linear-gradient(135deg, #2bcbba 0%, #156437 100%);
  color: var(--clr-white);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.3px;
}

.view-product-btn:hover {
  box-shadow: 0 6px 18px rgba(43, 203, 186, 0.4);
  transform: translateY(-2px);
}

.view-product-btn svg {
  transition: transform 0.3s;
}

.view-product-btn:hover svg {
  transform: translateX(3px);
}

.product-info p {
  color: var(--clr-text-light);
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.product-specs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.spec-tag {
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(21, 100, 55, 0.06);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--clr-primary);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--clr-cream-dark);
}

.product-footer .enquiry-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: 50px;
  background: var(--grad-green);
  color: var(--clr-white);
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.product-footer .enquiry-btn:hover {
  box-shadow: 0 4px 12px rgba(21, 100, 55, 0.3);
  transform: translateY(-2px);
}

.product-footer .uses {
  font-size: 0.78rem;
  color: var(--clr-text-light);
  font-style: italic;
}

.mission-vision {
  padding: var(--section-py) 0;
  background: var(--clr-white);
  position: relative;
  overflow: hidden;
}

.mission-vision::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(21, 100, 55, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.mv-card {
  padding: 48px 40px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
}

.mv-card.mission {
  background: var(--grad-dark);
  color: var(--clr-white);
}

.mv-card.vision {
  background: var(--clr-cream);
  border: 2px solid var(--clr-cream-dark);
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.mv-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
}

.mv-card.mission .mv-icon {
  background: rgba(255, 255, 255, 0.1);
}

.mv-card.vision .mv-icon {
  background: rgba(21, 100, 55, 0.08);
}

.mv-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.mv-card.vision h3 {
  color: var(--clr-primary-dark);
}

.mv-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.9;
}

.mv-card.vision p {
  color: var(--clr-text-light);
}

.mv-quote {
  margin-top: 64px;
  text-align: center;
  padding: 48px;
  background: var(--clr-cream);
  border-radius: 24px;
  border: 2px solid var(--clr-cream-dark);
  position: relative;
}

.mv-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 40px;
  font-family: var(--ff-heading);
  font-size: 6rem;
  color: var(--clr-secondary);
  opacity: 0.3;
  line-height: 1;
}

.mv-quote p {
  font-family: var(--ff-body);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--clr-primary-dark);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.gallery {
  padding: var(--section-py) 0 60px;
  background: var(--clr-cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-flow: dense;
  gap: 20px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  height: 240px;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:nth-child(7n+1) {
  grid-column: span 2;
  grid-row: span 2;
  height: 500px;
}

.gallery-item:nth-child(7n+4) {
  grid-column: span 1;
  grid-row: span 2;
  height: 500px;
}

.gallery-item:nth-child(7n+6) {
  grid-column: span 2;
  grid-row: span 1;
  height: 240px;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
  }
  .gallery-item,
  .gallery-item:nth-child(7n+1),
  .gallery-item:nth-child(7n+4),
  .gallery-item:nth-child(7n+6) {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    height: 220px !important;
  }
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.video-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 240px;
  background: var(--clr-primary-dark);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-out);
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

@media (max-width: 992px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .video-card {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .video-card {
    height: 200px;
  }
}

.contact {
  padding: var(--section-py) 0;
  background: var(--clr-cream);
  position: relative;
}

.contact-header {
  margin-bottom: 60px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 0;
  background: var(--clr-white);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.contact-info-panel {
  background: var(--grad-dark);
  color: var(--clr-white);
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.contact-info-panel::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.contact-info-panel::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.contact-info-panel h3 {
  font-family: var(--ff-heading);
  font-size: 2rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.contact-info-panel .info-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.method-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.method-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s;
}

.method-item:hover .method-icon {
  background: var(--clr-secondary);
  color: var(--clr-white);
  transform: scale(1.05);
}

.method-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.method-text p,
.method-text a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  transition: color 0.3s;
}

.method-text a:hover {
  color: var(--clr-secondary);
}

.contact-social {
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.contact-social h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-social .social-links {
  display: flex;
  gap: 12px;
}

.contact-social .social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.contact-social .social-link:hover {
  background: var(--clr-secondary);
  transform: translateY(-4px);
}

.contact-form-panel {
  padding: 60px 50px;
  background: var(--clr-white);
}

.contact-form-panel h3 {
  font-family: var(--ff-heading);
  font-size: 2.2rem;
  color: var(--clr-primary-dark);
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--clr-text);
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1.5px solid var(--clr-cream-dark);
  background: var(--clr-cream);
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--clr-text);
  transition: all 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-primary);
  background: var(--clr-white);
  box-shadow: 0 0 0 4px rgba(21, 100, 55, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-submit {
  width: 20%;
  padding: 18px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  margin-top: 10px;
}

.footer {
  background: var(--clr-primary-dark);
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.footer-main {
  padding: 80px 0 40px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid var(--clr-secondary);
  margin-bottom: 16px;
}

.footer-brand h3 {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  color: var(--clr-white);
  margin-bottom: 4px;
}

.footer-brand .tagline {
  font-family: var(--ff-script);
  color: var(--clr-secondary);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer h4 {
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  color: var(--clr-white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--clr-secondary);
  border-radius: 2px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '→';
  font-size: 0.8rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-links a:hover {
  color: var(--clr-secondary);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.footer-contact-item .emoji {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  transition: color 0.3s;
}

.footer-contact-item a:hover {
  color: var(--clr-secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  position: relative;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: var(--clr-secondary);
}

.mobile-overlay {
  display: none;
}

@media (max-width: 992px) {
  :root {
    --section-py: 60px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .hamburger {
    display: flex;
    z-index: 101;
  }

  .mobile-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
    z-index: 99;
  }

  .mobile-overlay.visible {
    opacity: 1;
    visibility: visible;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 80vw;
    height: 100vh;
    background: var(--clr-primary-dark);
    flex-direction: column;
    padding: 100px 30px 40px;
    transition: right 0.4s var(--ease-out);
    align-items: flex-start;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    z-index: 100;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 12px 20px;
    width: 100%;
    color: var(--clr-white) !important;
  }

  .navbar.scrolled .nav-links a {
    color: var(--clr-white) !important;
  }

  .navbar.scrolled .nav-links a:hover,
  .navbar.scrolled .nav-links a.active,
  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(255, 255, 255, 0.15);
  }

  /* Mobile Dropdown styles */
  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown .dropdown-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown.open .chevron {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    box-shadow: none;
    padding: 0 0 0 15px;
    max-height: 0;
    overflow: hidden;
    min-width: 100%;
    border-radius: 0;
    transition: max-height 0.35s var(--ease-out);
  }

  .dropdown-menu::before {
    display: none;
  }

  /* Keep the submenu nested in the slide-out panel — neutralize the
     desktop hover transform that otherwise shifts it off to the side on tap */
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown.open .dropdown-menu {
    transform: none;
  }

  .nav-dropdown:hover .dropdown-menu {
    max-height: 0;
  }

  .nav-dropdown.open .dropdown-menu,
  .nav-dropdown.open:hover .dropdown-menu {
    max-height: 350px;
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .dropdown-menu a {
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 10px 20px !important;
    font-size: 1rem !important;
  }

  .dropdown-menu a:hover {
    color: var(--clr-secondary-light) !important;
    background: transparent !important;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info-panel::before,
  .contact-info-panel::after {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .stats-bar {
    margin-top: 0;
    border-radius: 0;
    padding: 30px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .filter-btn {
    padding: 6px 16px;
    font-size: 0.85rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-submit {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
  }

  .about-img-main img {
    height: 300px;
  }

  .about-img-secondary {
    width: 140px;
    bottom: -20px;
    right: -10px;
  }

  .about-img-secondary img {
    height: 120px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .nav-brand img {
    width: 40px;
    height: 40px;
  }

  .nav-brand-text {
    max-width: 160px;
  }

  .nav-brand-name {
    font-size: 0.85rem;
  }

  .nav-brand-tagline {
    font-size: 0.65rem;
  }

  .contact-form-panel {
    padding: 40px 20px;
  }

  .mv-card {
    padding: 30px 20px;
  }

  .scroll-indicator {
    display: none;
  }

  .hero-dots {
    bottom: 20px;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float a {
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.whatsapp-float a:hover {
  transform: scale(1.1) rotate(-5deg);
}

.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #25d366;
  border-radius: 50%;
  z-index: -1;
  animation: pulse-ring 2s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

.whatsapp-float .tooltip {
  position: absolute;
  right: 75px;
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.whatsapp-float .tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent rgba(0, 0, 0, 0.85);
}

.whatsapp-float a:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 52px;
  height: 52px;
  background: var(--grad-green);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(21, 100, 55, 0.4);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(21, 100, 55, 0.6);
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float a {
    width: 54px;
    height: 54px;
    font-size: 28px;
  }
  .whatsapp-float .tooltip {
    display: none; 
  }
  .back-to-top {
    bottom: 86px;
    right: 22px;
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}

.navbar.product-page {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
}

.navbar.product-page .nav-brand-name {
  color: var(--clr-primary-dark);
}

.navbar.product-page .nav-brand-tagline {
  color: var(--clr-secondary-dark);
}

.navbar.product-page .nav-links a {
  color: var(--clr-text);
}

.navbar.product-page .nav-links a:hover,
.navbar.product-page .nav-links a.active {
  color: var(--clr-primary);
  background: rgba(21, 100, 55, 0.08);
}

.navbar.product-page .hamburger span {
  background: var(--clr-primary-dark);
}

.product-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.product-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 61, 32, 0.7) 0%, rgba(11, 61, 32, 0.5) 50%, rgba(11, 61, 32, 0.8) 100%);
  z-index: 1;
}

.product-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--clr-white);
  padding: 100px 24px 40px;
  max-width: 700px;
  animation: fadeInUp 0.8s var(--ease-out) both;
}

.product-hero-emoji {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 16px;
  animation: float 3s ease-in-out infinite;
}

.product-hero-content h1 {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 16px;
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
}

.product-hero-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.7;
  max-width: 550px;
  margin: 0 auto;
}

.breadcrumb {
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-cream-dark);
  padding: 14px 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--clr-text-light);
  flex-wrap: wrap;
}

.breadcrumb-list a {
  color: var(--clr-primary);
  font-weight: 500;
  transition: color 0.3s;
}

.breadcrumb-list a:hover {
  color: var(--clr-secondary-dark);
}

.breadcrumb-list .separator {
  color: var(--clr-cream-dark);
  font-size: 0.8rem;
}

.breadcrumb-list span:last-child {
  color: var(--clr-text);
  font-weight: 600;
}

.product-detail-info {
  padding: 48px 0;
  background: var(--clr-cream);
}

.product-detail-specs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.spec-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  background: var(--clr-white);
  border: 1.5px solid var(--clr-cream-dark);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clr-primary);
  transition: all 0.3s;
}

.spec-badge:hover {
  border-color: var(--clr-primary);
  background: rgba(21, 100, 55, 0.05);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.product-detail-desc {
  font-size: 1.08rem;
  color: var(--clr-text-light);
  line-height: 1.8;
  max-width: 800px;
  margin-bottom: 36px;
}

.product-detail-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--clr-white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-out);
}

.meta-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.meta-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(21, 100, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.meta-text {
  display: flex;
  flex-direction: column;
}

.meta-text strong {
  font-size: 0.85rem;
  color: var(--clr-text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.meta-text span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-primary-dark);
}

.product-type-section {
  padding: 60px 0;
  position: relative;
}

.product-type-section:nth-child(even) {
  background: var(--clr-white);
}

.product-type-section:nth-child(odd) {
  background: var(--clr-cream);
}

.type-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 36px;
}

.type-number {
  font-family: var(--ff-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--clr-secondary);
  line-height: 1;
  opacity: 0.4;
  flex-shrink: 0;
  min-width: 60px;
}

.type-header h3 {
  font-family: var(--ff-heading);
  font-size: 1.6rem;
  color: var(--clr-primary-dark);
  line-height: 1.3;
}

.type-header h3 span {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--clr-text-light);
  margin-top: 6px;
  line-height: 1.6;
}

.type-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 220px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s var(--ease-out);
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 61, 32, 0.6) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
}

.gallery-card-overlay span {
  color: var(--clr-white);
  font-weight: 600;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-cta {
  padding: 80px 0;
  background: var(--grad-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.product-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.product-cta h2 {
  font-family: var(--ff-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--clr-white);
  margin-bottom: 16px;
  position: relative;
}

.product-cta p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.product-cta .btn {
  position: relative;
}

@media (max-width: 768px) {
  .product-hero {
    height: 320px;
  }

  .product-hero-content {
    padding: 80px 20px 30px;
  }

  .product-hero-emoji {
    font-size: 2.5rem;
  }

  .product-hero-content h1 {
    font-size: 1.8rem;
  }

  .product-detail-specs {
    gap: 8px;
  }

  .spec-badge {
    padding: 6px 14px;
    font-size: 0.82rem;
  }

  .product-detail-meta {
    grid-template-columns: 1fr;
  }

  .type-header {
    flex-direction: column;
    gap: 8px;
  }

  .type-number {
    font-size: 2rem;
    min-width: auto;
  }

  .type-header h3 {
    font-size: 1.3rem;
  }

  .type-gallery {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
  }

  .gallery-card {
    height: 180px;
  }

  .product-cta {
    padding: 60px 0;
  }

  .product-type-section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .product-hero {
    height: 280px;
  }

  .product-hero-content h1 {
    font-size: 1.5rem;
  }

  .product-hero-content p {
    font-size: 0.95rem;
  }

  .type-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .gallery-card {
    height: 150px;
  }

  .meta-item {
    padding: 16px 18px;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  background: none;
  border: none;
  color: white;
  font-size: 36px;
  cursor: pointer;
  transition: transform 0.3s;
  z-index: 10001;
}

.lightbox-close:hover {
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 30px;
  }
}

/* ==========================================================================
   EXTRA RESPONSIVENESS OVERRIDES (Mobile, Tablet, Desktop)
   ========================================================================== */

/* Prevent spec details grid from overflowing on narrow mobile devices */
.product-specs-details {
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)) !important;
}

/* Perfect alignment for extra-small mobile devices (e.g. 320px - 360px) */
@media (max-width: 360px) {
  .container {
    padding: 0 16px !important;
  }
  
  .nav-brand {
    gap: 8px !important;
  }
  
  .nav-brand img {
    width: 34px !important;
    height: 34px !important;
  }
  
  .nav-brand-text {
    max-width: 135px !important;
  }
  
  .nav-brand-name {
    font-size: 0.78rem !important;
  }
  
  .nav-brand-tagline {
    font-size: 0.6rem !important;
  }
}

/* ============================================
   LEGAL PAGES (Terms & Privacy Policy)
   ============================================ */
.legal-hero {
  background: linear-gradient(135deg, var(--clr-primary-dark) 0%, var(--clr-primary) 100%);
  color: var(--clr-white);
  padding: 170px 0 60px;
  text-align: center;
}

@media (max-width: 992px) {
  .legal-hero {
    padding: 150px 0 50px;
  }
}

@media (max-width: 600px) {
  .legal-hero {
    padding: 160px 0 45px;
  }
}

.legal-hero h1 {
  color: var(--clr-white);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 12px;
}

.legal-hero p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

.legal-hero .legal-updated {
  display: inline-block;
  margin-top: 18px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}

.legal-content {
  padding: 60px 0 80px;
  background: var(--clr-cream);
}

.legal-content .container {
  max-width: 900px;
}

.legal-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-cream-dark);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: clamp(28px, 5vw, 56px);
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-family: var(--ff-heading);
  color: var(--clr-primary-dark);
  font-size: 1.4rem;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1.5px dashed var(--clr-cream-dark);
}

.legal-section h3 {
  font-family: var(--ff-body);
  color: var(--clr-primary);
  font-size: 1.05rem;
  margin: 20px 0 8px;
}

.legal-section p {
  color: var(--clr-text-light);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-section ul li {
  position: relative;
  padding-left: 26px;
  color: var(--clr-text-light);
  line-height: 1.65;
}

.legal-section ul li::before {
  content: "🌾";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.9rem;
}

.legal-section a {
  color: var(--clr-primary);
  font-weight: 600;
}

.legal-section a:hover {
  color: var(--clr-secondary-dark);
}

.legal-toc {
  background: var(--clr-cream);
  border: 1px solid var(--clr-cream-dark);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 40px;
}

.legal-toc h4 {
  font-family: var(--ff-body);
  color: var(--clr-primary-dark);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.legal-toc ol {
  margin: 0;
  padding-left: 20px;
  color: var(--clr-text-light);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 6px 24px;
}

.legal-toc ol li a {
  color: var(--clr-text-light);
  font-weight: 500;
}

.legal-toc ol li a:hover {
  color: var(--clr-primary);
}