/* ============================================================
   99Organics – style.css
   Primary: Deep Forest Green #2d6a4f | Accent: #52b788
   Font: Playfair Display (headings) + DM Sans (body)
   ============================================================ */

/* ---------- RESET & VARIABLES ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:    #1b4332;
  --green-primary: #2d6a4f;
  --green-mid:     #40916c;
  --green-accent:  #52b788;
  --green-light:   #95d5b2;
  --green-pale:    #d8f3dc;
  --green-bg:      #f0faf4;
  --cream:         #faf8f4;
  --cream-dark:    #f4f0e8;
  --text-dark:     #1a2e1e;
  --text-body:     #374840;
  --text-muted:    #6b7f72;
  --white:         #ffffff;
  --shadow-sm:     0 2px 8px rgba(29,67,48,.08);
  --shadow-md:     0 6px 24px rgba(29,67,48,.12);
  --shadow-lg:     0 16px 48px rgba(29,67,48,.16);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --transition:    0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-body);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--green-accent); border-radius: 3px; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text-dark);
  line-height: 1.25;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
p  { font-size: .97rem; line-height: 1.75; color: var(--text-body); }
em { font-style: italic; color: var(--green-primary); }

/* ---------- LAYOUT HELPERS ---------- */
.container { width: 92%; max-width: 1180px; margin: 0 auto; }
.section    { padding: 96px 0; }
.section-header { text-align: center; max-width: 620px; margin: 0 auto 64px; }
.section-header p { margin-top: 14px; color: var(--text-muted); }

.section-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-primary);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 100px;
  font-size: .92rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(45,106,79,.35);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,106,79,.4);
}
.btn-outline {
  background: transparent;
  color: var(--green-primary);
  border: 2px solid var(--green-primary);
}
.btn-outline:hover {
  background: var(--green-pale);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ---------- FADE-IN ANIMATION ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  border-color: var(--green-pale);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1180px;
  width: 92%;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-dark);
}
.logo-text span { color: var(--green-primary); }
.logo-light { color: var(--cream) !important; }
.logo-light span { color: var(--green-light) !important; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  font-size: .88rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  color: var(--text-body);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--green-primary);
  background: var(--green-pale);
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.cart-btn {
  position: relative;
  color: var(--text-dark);
  padding: 6px;
  transition: color var(--transition);
}
.cart-btn:hover { color: var(--green-primary); }
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--green-primary);
  color: var(--white);
  font-size: .62rem;
  font-weight: 700;
  width: 17px; height: 17px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 0;
  background: linear-gradient(135deg, #f0faf4 0%, #faf8f4 60%, #e8f5ed 100%);
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(82,183,136,.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(45,106,79,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  flex: 0 0 55%;
  padding: 80px 0 80px 8vw;
}
.hero-badge {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-primary);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid var(--green-light);
}
.hero h1 { margin-bottom: 20px; }
.hero p  { max-width: 500px; margin-bottom: 36px; font-size: 1.05rem; color: var(--text-muted); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 1.5rem; font-weight: 700; color: var(--green-primary); font-family: 'Playfair Display', serif; }
.stat span   { font-size: .78rem; color: var(--text-muted); font-weight: 500; }
.stat-divider { width: 1px; height: 36px; background: var(--green-pale); }

.hero-image-col {
  flex: 0 0 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 6vw 80px 0;
  position: relative;
  z-index: 2;
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
}
.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: -16px;
  background: linear-gradient(135deg, var(--green-pale), transparent);
  border-radius: 60% 40% 55% 45% / 45% 50% 50% 55%;
  z-index: 0;
}
.hero-img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 56% 44% 50% 50% / 48% 46% 54% 52%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--green-primary);
  padding: 20px 0;
}
.trust-container {
  max-width: 1180px;
  width: 92%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: .88rem;
  font-weight: 500;
}
.trust-item svg { color: var(--green-light); flex-shrink: 0; }

/* ============================================================
   PRODUCTS
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--green-primary);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  z-index: 5;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.product-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.07); }
.product-info { padding: 22px 24px 24px; }
.product-info h3 { margin-bottom: 8px; }
.product-info p  { font-size: .88rem; color: var(--text-muted); margin-bottom: 18px; line-height: 1.6; }
.product-footer  { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-price   { font-size: 1.3rem; font-weight: 700; color: var(--green-primary); font-family: 'Playfair Display', serif; }
.btn-cart {
  background: var(--green-pale);
  color: var(--green-primary);
  border: 1.5px solid var(--green-light);
  padding: 9px 18px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-cart:hover {
  background: var(--green-primary);
  color: var(--white);
  border-color: var(--green-primary);
  transform: scale(1.03);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { background: var(--cream-dark); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
}
.about-img-accent {
  position: absolute;
  bottom: -32px; right: -32px;
  width: 48%;
  border-radius: var(--radius-md);
  object-fit: cover;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about-years {
  position: absolute;
  top: 28px; right: -24px;
  background: var(--green-primary);
  color: var(--white);
  padding: 18px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.3;
  box-shadow: var(--shadow-md);
}
.about-years span { display: block; font-size: 2rem; font-family: 'Playfair Display', serif; font-weight: 700; }
.about-content { padding-bottom: 32px; }
.about-content h2  { margin-bottom: 20px; }
.about-content p   { margin-bottom: 18px; }
.about-content .btn { margin-top: 12px; }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits-section { background: var(--green-bg); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.benefit-icon {
  width: 68px; height: 68px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--green-primary);
  transition: background var(--transition);
}
.benefit-card:hover .benefit-icon { background: var(--green-primary); color: var(--white); }
.benefit-card h3  { margin-bottom: 10px; }
.benefit-card p   { font-size: .88rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 67, 50, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--cream-dark); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--green-pale);
  position: absolute;
  top: 10px; left: 22px;
  line-height: 1;
}
.testimonial-card:hover { transform: translateY(-4px); }
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testimonial-card p { font-size: .92rem; color: var(--text-body); margin-bottom: 24px; line-height: 1.75; position: relative; z-index: 1; }
.reviewer { display: flex; align-items: center; gap: 14px; }
.reviewer-avatar {
  width: 46px; height: 46px;
  background: var(--green-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem;
  font-weight: 700;
  flex-shrink: 0;
}
.reviewer-info strong { display: block; font-size: .9rem; color: var(--text-dark); font-weight: 600; }
.reviewer-info span  { font-size: .78rem; color: var(--text-muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--green-bg); }
.faq-list    { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--green-pale);
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: .97rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--green-primary); }
.faq-question[aria-expanded="true"] { color: var(--green-primary); }
.faq-chevron {
  flex-shrink: 0;
  color: var(--green-accent);
  transition: transform var(--transition);
}
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-answer.open { max-height: 300px; }
.faq-answer p {
  padding: 0 24px 20px;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.contact-info h2  { margin-bottom: 16px; }
.contact-info p   { margin-bottom: 36px; color: var(--text-muted); }
.contact-details  { display: flex; flex-direction: column; gap: 18px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: .9rem;
  color: var(--text-body);
  line-height: 1.5;
}
.contact-item svg { flex-shrink: 0; color: var(--green-primary); margin-top: 2px; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--green-pale);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-accent);
  box-shadow: 0 0 0 3px rgba(82,183,136,.15);
  background: var(--white);
}
.form-success {
  display: none;
  margin-top: 16px;
  color: var(--green-primary);
  font-weight: 600;
  font-size: .9rem;
  text-align: center;
}
.form-success.show { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--green-dark); color: rgba(255,255,255,.75); }
.footer-top { padding: 72px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand p {
  margin-top: 18px;
  margin-bottom: 28px;
  font-size: .88rem;
  line-height: 1.75;
  color: rgba(255,255,255,.6);
  max-width: 300px;
}
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.75);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.social-links a:hover {
  background: var(--green-accent);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-col h4 {
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  letter-spacing: .12em;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--green-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom-inner a {
  color: var(--green-light);
  font-weight: 600;
  transition: color var(--transition);
}
.footer-bottom-inner a:hover { color: var(--white); }

/* ============================================================
   MODAL / LIGHTBOX
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal-content {
  position: relative;
  max-width: 860px;
  width: 100%;
  transform: scale(.95);
  transition: transform var(--transition);
}
.modal-overlay.active .modal-content { transform: scale(1); }
.modal-content img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.modal-content p {
  text-align: center;
  color: rgba(255,255,255,.75);
  margin-top: 14px;
  font-size: .9rem;
}
.modal-close {
  position: absolute;
  top: -48px; right: 0;
  color: var(--white);
  padding: 6px;
  transition: color var(--transition);
}
.modal-close:hover { color: var(--green-light); }

/* ============================================================
   CART TOAST
   ============================================================ */
.cart-toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: var(--green-primary);
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  transform: translateY(80px);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
  z-index: 1500;
  max-width: 260px;
}
.cart-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 32px; left: 32px;
  width: 44px; height: 44px;
  background: var(--green-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all var(--transition);
  z-index: 1500;
}
.scroll-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.scroll-top:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
}

/* ============================================================
   RESPONSIVE – TABLET (max 960px)
   ============================================================ */
@media (max-width: 960px) {
  .section { padding: 72px 0; }

  /* Hero */
  .hero { flex-direction: column; min-height: unset; padding-top: 100px; }
  .hero-content { flex: unset; padding: 48px 6vw 0; text-align: center; }
  .hero-content p { margin: 0 auto 32px; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image-col { flex: unset; padding: 32px 6vw 64px; }
  .hero-img-wrap  { max-width: 380px; margin: 0 auto; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { max-width: 520px; margin: 0 auto; }
  .about-img-accent { right: -16px; bottom: -24px; }
  .about-years { right: -12px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1/-1; }
}

/* ============================================================
   RESPONSIVE – MOBILE (max 680px)
   ============================================================ */
@media (max-width: 680px) {
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 44px; }

  /* Navbar */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px 24px 32px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    transform: translateY(-110%);
    transition: transform var(--transition);
    z-index: 999;
    border-bottom: 2px solid var(--green-pale);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-link { font-size: 1rem; padding: 12px 16px; border-radius: 8px; }

  /* Hero */
  .hero-content { padding: 40px 6vw 0; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { gap: 18px; }
  .stat-divider { display: none; }

  /* Products */
  .products-grid { grid-template-columns: 1fr; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Contact form */
  .contact-form-wrap { padding: 28px 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: unset; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  /* Trust */
  .trust-container { justify-content: center; gap: 20px; }

  /* Misc */
  .about-img-accent { display: none; }
  .about-years { position: static; display: inline-block; margin-top: 16px; }
  .cart-toast { right: 16px; left: 16px; bottom: 24px; }
}
