/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,700&family=Poppins:wght@300;400;600;700;900&display=swap');

/* ── Tokens ── */
:root {
  --bg:           #ffffff;
  --bg-mid:       #f1f8e9;
  --bg-card:      #ffffff;
  --green:        #2e7d32;
  --green-light:  #43a047;
  --green-dark:   #1b5e20;
  --whatsapp:     #25D366;
  --red:          #e53935;
  --text:         #1a3320;
  --text-muted:   rgba(26,51,32,0.60);
  --text-faint:   rgba(26,51,32,0.38);
  --border:       rgba(46,125,50,0.14);
  --border-hover: rgba(46,125,50,0.30);
  --radius-card:  16px;
  --radius-btn:   50px;
  --container:    1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
button:focus-visible, a:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }

/* ── Container ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ── Animations ── */
[data-animate] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-animate].is-visible { opacity: 1; transform: none; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-btn);
  font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700;
  text-decoration: none; cursor: pointer; border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--whatsapp); color: #fff;
  box-shadow: 0 8px 32px rgba(37,211,102,0.3);
}
.btn--primary:hover { box-shadow: 0 12px 40px rgba(37,211,102,0.45); }
.btn--ghost {
  background: transparent; color: var(--green);
  border: 1.5px solid var(--green);
}
.btn--ghost:hover { background: rgba(46,125,50,0.06); box-shadow: 0 8px 24px rgba(46,125,50,0.12); }
.btn--full { width: 100%; justify-content: center; }

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: #2e7d32;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 2px 16px rgba(46,125,50,0.20);
}
.navbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.navbar__brand { display: flex; align-items: center; gap: 12px; }
.navbar__logo {
  width: 52px; height: 52px; border-radius: 50%;
  object-fit: cover; border: 2px solid rgba(255,255,255,0.6);
}
.navbar__logo-fallback {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.2); font-size: 20px;
  display: none; align-items: center; justify-content: center;
}
.navbar__name { font-size: 18px; font-weight: 700; line-height: 1.1; color: #fff; }
.navbar__tagline { font-size: 10px; color: rgba(255,255,255,0.70); letter-spacing: 1.5px; text-transform: uppercase; }
.navbar__links { display: flex; align-items: center; gap: 40px; list-style: none; margin-left: auto; margin-right: 40px; }
.navbar__links a {
  font-size: 14px; color: rgba(255,255,255,0.75); font-weight: 500;
  letter-spacing: 0.4px; transition: color 0.2s; padding: 8px 0;
}
.navbar__links a:hover, .navbar__links a.active { color: #fff; }
.navbar__actions { display: flex; align-items: center; gap: 14px; }
.navbar__cart-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff; position: relative; transition: transform 0.2s, background 0.2s;
}
.navbar__cart-btn:hover { transform: scale(1.1); background: rgba(255,255,255,0.3); }
.navbar__cart-count {
  position: absolute; top: -4px; right: -4px;
  width: 18px; height: 18px; background: var(--red);
  border-radius: 50%; font-size: 10px; font-weight: 700;
  display: none; align-items: center; justify-content: center; color: #fff;
}
.navbar__cart-count.visible { display: flex; }
.navbar__toggle {
  display: none; flex-direction: column; gap: 5px;
  background: transparent; border: none; cursor: pointer; padding: 4px;
}
.navbar__toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; }
.navbar__mobile {
  display: none; flex-direction: column;
  background: #1b5e20; border-top: 1px solid rgba(255,255,255,0.12);
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease;
}
.navbar__mobile.open { max-height: 300px; }
.navbar__mobile a {
  padding: 14px 24px; font-size: 15px;
  color: rgba(255,255,255,0.80); border-bottom: 1px solid rgba(255,255,255,0.10); display: block;
  transition: color 0.2s;
}
.navbar__mobile a:hover { color: #fff; }

/* ── Hero ── */
.hero {
  min-height: min(100vh, 880px);
  min-height: min(100dvh, 880px);
  background: linear-gradient(160deg, #e8f5e9 0%, #f9fff6 50%, #ffffff 100%);
  display: flex; align-items: center;
  padding: 140px 24px 88px;
}
.hero__inner {
  max-width: var(--container); width: 100%; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  align-items: center; gap: 64px;
}
.hero__content { max-width: 560px; text-align: left; }
.hero__eyebrow {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--green-light); font-weight: 600; margin-bottom: 20px;
}
.hero__title {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: clamp(42px, 6vw, 64px); line-height: 1.05; margin-bottom: 24px;
  color: var(--green-dark);
}
.hero__title span { color: var(--green-light); }
.hero__subtitle {
  font-size: 17px; color: var(--text-muted); line-height: 1.75;
  margin: 0 0 40px; max-width: 520px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero__stats {
  display: flex; gap: 48px;
  padding-top: 40px; border-top: 1px solid var(--border);
}
.hero__visual { position: relative; padding: 16px 8px; }
.hero__img-main {
  width: 100%; height: 460px; object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 32px 80px rgba(27,94,32,0.18);
}
.hero__img-accent {
  position: absolute; width: 150px; height: 150px; object-fit: cover;
  border-radius: 18px; border: 5px solid #fff;
  box-shadow: 0 16px 40px rgba(27,94,32,0.22);
}
.hero__img-accent--1 { top: -12px; left: -28px; transform: rotate(-6deg); }
.hero__img-accent--2 { bottom: -12px; right: -18px; transform: rotate(5deg); }
.hero__stat-num { font-size: 28px; font-weight: 900; color: var(--green); line-height: 1; }
.hero__stat-label { font-size: 11px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ── Sections ── */
.section { padding: 88px 0; text-align: center; }
.section--mid { background: var(--bg-mid); }
.section-eyebrow {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--green-light); font-weight: 600; margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: clamp(28px, 5vw, 42px); line-height: 1.2; margin-bottom: 56px;
  color: var(--green-dark);
}

/* ── Why Grid ── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 28px 22px;
  transition: border-color 0.2s, transform 0.3s, box-shadow 0.3s;
}
.why-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(46,125,50,0.10); }
.why-card__icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(46,125,50,0.10); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.why-card__title { font-size: 14px; font-weight: 700; margin-bottom: 8px; color: var(--green-dark); }
.why-card__desc { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* ── Steps ── */
.steps { display: flex; justify-content: center; gap: 0; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 32px; left: 20%; right: 20%;
  height: 1px; background: var(--border);
}
.step { flex: 1; max-width: 240px; text-align: center; padding: 0 16px; }
.step__circle {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900; color: #fff;
  margin: 0 auto 20px; position: relative; z-index: 1;
}
.step__circle--1 { background: var(--green); }
.step__circle--2 { background: var(--whatsapp); }
.step__circle--3 { background: #f9a825; color: #1a1a1a; }
.step__title { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--green-dark); }
.step__desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1040px; margin: 0 auto;
}
.testimonial {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 28px 24px; text-align: left;
  transition: border-color 0.2s, box-shadow 0.3s;
}
.testimonial:hover { border-color: var(--border-hover); box-shadow: 0 8px 24px rgba(46,125,50,0.08); }
.testimonial__stars { display: flex; gap: 3px; color: #f9a825; margin-bottom: 14px; }
.testimonial__text { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.testimonial__author { font-size: 13px; font-weight: 700; color: var(--green); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 140px 24px 64px; text-align: center;
  background: linear-gradient(160deg, #e8f5e9 0%, #ffffff 100%);
}
.page-hero__title {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: clamp(32px, 6vw, 52px); margin-bottom: 12px;
  color: var(--green-dark);
}
.page-hero__subtitle { font-size: 15px; color: var(--text-muted); }

/* ── Filter Tabs ── */
.filter-bar { display: flex; justify-content: center; gap: 10px; margin-bottom: 48px; flex-wrap: wrap; }
.filter-tab {
  padding: 10px 24px; border-radius: var(--radius-btn);
  border: 1.5px solid var(--border); background: transparent;
  color: var(--text-muted); font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 600; cursor: pointer; transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.filter-tab:hover { border-color: var(--border-hover); color: var(--green); }
.filter-tab.active { background: var(--green); border-color: var(--green); color: #fff; }

/* ── Products Section ── */
.products-section { padding: 48px 0 88px; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ── Product Card ── */
.product-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-card); overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.2s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(46,125,50,0.14);
  border-color: var(--border-hover);
}
.product-card__img {
  height: 220px; width: 100%; display: flex; align-items: center;
  justify-content: center; overflow: hidden; position: relative;
  background: #f7f2ec;
}
.product-card__photo { width: 100%; height: 100%; object-fit: cover; }
.product-card__swatch {
  width: 100px; height: 140px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; text-align: center; line-height: 1.35;
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}
.product-card__body { padding: 18px; }
.product-card__name { font-size: 14px; font-weight: 700; margin-bottom: 5px; color: var(--green-dark); }
.product-card__benefit {
  font-size: 11px; color: var(--text-muted); line-height: 1.55;
  margin-bottom: 12px;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.product-card__tags { display: flex; gap: 6px; margin-bottom: 14px; }
.product-card__tag {
  font-size: 10px; background: rgba(46,125,50,0.08);
  color: var(--green); border-radius: 20px;
  padding: 3px 10px; font-weight: 600;
}
.product-card__footer { display: flex; align-items: center; justify-content: space-between; }
.product-card__price { display: flex; flex-direction: column; gap: 2px; }
.product-card__mrp { font-size: 13px; font-weight: 500; color: var(--text-faint); text-decoration: line-through; margin-right: 7px; }
.product-card__sale { font-size: 20px; font-weight: 900; color: var(--green); }
.product-card__badge {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  font-size: 11px; font-weight: 700; letter-spacing: 0.3px;
  padding: 4px 12px; border-radius: 20px;
}
.product-card__badge--off { background: var(--red); color: #fff; }
.product-card__badge--oos { background: rgba(26,26,26,0.78); color: #fff; }
.product-card__badge--new { left: auto; right: 12px; background: #e91e63; color: #fff; }
.product-card--oos .product-card__photo,
.product-card--oos .product-card__swatch { filter: grayscale(0.85); opacity: 0.55; }
.products-error {
  grid-column: 1 / -1; text-align: center; padding: 56px 24px;
  color: var(--text-muted); font-size: 15px;
}
.product-card__incl { font-size: 10px; color: var(--text-faint); font-weight: 400; }
.add-to-cart-btn {
  background: var(--green); color: #fff; border: none;
  border-radius: 10px; padding: 9px 16px;
  font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 700;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.add-to-cart-btn:hover { background: var(--green-dark); }
.add-to-cart-btn.added { transform: scale(1.1); background: var(--whatsapp); }
.add-to-cart-btn:disabled {
  background: rgba(26,51,32,0.14); color: rgba(26,51,32,0.45);
  cursor: not-allowed;
}

/* ── Cart Bubble ── */
.cart-bubble {
  position: fixed; bottom: 28px; right: 28px; z-index: 300;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--whatsapp);
  display: none; align-items: center; justify-content: center;
  font-size: 22px; cursor: pointer; border: none;
  transition: transform 0.2s;
}
.cart-bubble.visible {
  display: flex;
  animation: bubble-pulse 2.5s infinite;
}
.cart-bubble:hover { transform: scale(1.08); animation: none; }
.cart-bubble__count {
  position: absolute; top: -4px; right: -4px;
  width: 22px; height: 22px; background: var(--red);
  border-radius: 50%; font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Poppins', sans-serif;
}
@keyframes bubble-pulse {
  0%   { box-shadow: 0 8px 32px rgba(37,211,102,0.45), 0 0 0 0   rgba(37,211,102,0.4); }
  70%  { box-shadow: 0 8px 32px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 32px rgba(37,211,102,0.45), 0 0 0 0   rgba(37,211,102,0); }
}

/* ── Cart Panel ── */
.cart-panel { position: fixed; inset: 0; z-index: 400; display: none; }
.cart-panel.open { display: block; }
.cart-panel__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); backdrop-filter: blur(4px); }
.cart-panel__sheet {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: #fff; border-radius: 24px 24px 0 0;
  border-top: 2px solid var(--green); max-height: 85vh;
  display: flex; flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32,0.72,0,1);
}
.cart-panel.open .cart-panel__sheet { transform: translateY(0); }
.cart-panel__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 16px; border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.cart-panel__title { font-size: 16px; font-weight: 700; color: var(--green-dark); }
.cart-panel__close {
  background: rgba(0,0,0,0.06); border: none; cursor: pointer;
  color: var(--text); width: 32px; height: 32px; border-radius: 50%;
  font-size: 14px; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.cart-panel__close:hover { background: rgba(0,0,0,0.10); }
.cart-panel__items { overflow-y: auto; flex: 1; padding: 8px 0; }
.cart-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 24px; border-bottom: 1px solid var(--border);
}
.cart-item__swatch { width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0; }
.cart-item__info { flex: 1; }
.cart-item__name { font-size: 13px; font-weight: 700; color: var(--green-dark); }
.cart-item__price { font-size: 12px; color: var(--green); font-weight: 600; }
.cart-item__controls { display: flex; align-items: center; gap: 10px; }
.cart-qty-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--border); background: rgba(46,125,50,0.06);
  color: var(--green); font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; line-height: 1;
}
.cart-qty-btn:hover { background: rgba(46,125,50,0.14); }
.cart-item__qty { font-size: 14px; font-weight: 700; min-width: 20px; text-align: center; color: var(--text); }
.cart-panel__footer {
  padding: 20px 24px; border-top: 1px solid var(--border); flex-shrink: 0;
}
.cart-panel__total { font-size: 18px; font-weight: 900; color: var(--green); margin-bottom: 14px; text-align: center; }
.cart-panel__empty { text-align: center; padding: 48px 24px; color: var(--text-muted); font-size: 14px; }

/* ── Address Modal ── */
.address-modal { position: fixed; inset: 0; z-index: 500; display: none; }
.address-modal.open { display: block; }
.address-modal__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.50); backdrop-filter: blur(4px);
}
.address-modal__sheet {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: #fff; border-radius: 24px 24px 0 0;
  max-height: 92vh; overflow-y: auto;
  box-shadow: 0 -8px 48px rgba(0,0,0,0.22);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32,0.72,0,1);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.address-modal.open .address-modal__sheet { transform: translateY(0); }
.address-modal__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 0;
}
.address-modal__title { font-size: 17px; font-weight: 700; color: var(--green-dark); }
.address-modal__close {
  width: 32px; height: 32px; border-radius: 50%; border: none;
  background: rgba(0,0,0,0.06); cursor: pointer; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.address-modal__close:hover { background: rgba(0,0,0,0.12); }
.address-modal__sub {
  font-size: 13px; color: var(--text-muted); line-height: 1.55;
  padding: 8px 24px 16px;
}
.address-modal__body { padding: 0 24px; display: flex; flex-direction: column; gap: 14px; }
.addr-field { display: flex; flex-direction: column; gap: 5px; }
.addr-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--green); }
.addr-input {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: 'Poppins', sans-serif; font-size: 14px; color: var(--text);
  background: #fafafa; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.addr-input::placeholder { color: var(--text-faint); }
.addr-input:focus {
  border-color: var(--green); background: #fff;
  box-shadow: 0 0 0 3px rgba(46,125,50,0.10);
}
.addr-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.address-modal__footer {
  padding: 20px 24px 24px; display: flex; flex-direction: column; gap: 14px;
  border-top: 1px solid var(--border); margin-top: 20px;
}
.addr-save-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-muted); cursor: pointer;
  user-select: none;
}
.addr-save-label input[type="checkbox"] {
  width: 18px; height: 18px; accent-color: var(--green); cursor: pointer;
}

/* ── About ── */
.about-story { max-width: 640px; margin: 0 auto 64px; font-size: 16px; color: var(--text-muted); line-height: 1.8; text-align: center; }
.about-story p { margin-bottom: 16px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 800px; margin: 0 auto 56px; }
.info-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-card); padding: 28px 24px; text-align: left; box-shadow: 0 4px 16px rgba(46,125,50,0.06); }
.info-card__label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--green-light); font-weight: 600; margin-bottom: 12px; }
.info-card__name { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--green-dark); }
.info-card__address { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.info-card__lic { margin-top: 14px; font-size: 12px; color: var(--green); font-weight: 600; }
.contact-box { max-width: 480px; margin: 0 auto; text-align: center; }
.contact-box__title { font-family: 'Playfair Display', serif; font-style: italic; font-size: 28px; margin-bottom: 10px; color: var(--green-dark); }
.contact-box__sub { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.contact-btns { display: flex; flex-direction: column; gap: 12px; }

/* ── Footer ── */
.footer { background: var(--green-dark); padding: 56px 0 32px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer__brand-name { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.footer__tagline { font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 12px; line-height: 1.6; }
.footer__address { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer__col-title { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; color: rgba(255,255,255,0.7); }
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 10px; }
.footer__links a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer__links a:hover { color: #fff; }
.footer__social { display: flex; gap: 10px; }
.footer__social-link {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: background 0.2s, transform 0.2s;
}
.footer__social-link:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
  display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
  font-size: 11px; color: rgba(255,255,255,0.35); text-align: center;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero { padding: 110px 24px 64px; min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; gap: 56px; }
  .hero__content { max-width: 640px; margin: 0 auto; text-align: center; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__ctas, .hero__stats { justify-content: center; }
  .hero__visual { max-width: 400px; margin: 0 auto; width: 100%; }
  .hero__img-main { height: 340px; }
  .hero__img-accent { width: 110px; height: 110px; }
  .hero__img-accent--1 { left: -10px; }
  .hero__img-accent--2 { right: -10px; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .navbar__links { display: none; }
  .navbar__toggle { display: flex; }
  .navbar__mobile { display: flex; }
  .steps { flex-direction: column; align-items: center; gap: 32px; }
  .steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; }
  .about-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .products-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-card__img { height: 260px; }
}
@media (max-width: 640px) {
  .hero__stats { gap: 24px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  [data-animate] { transition: none; opacity: 1; transform: none; }
  .cart-bubble { animation: none; }
  .cart-panel__sheet { transition: none; }
  .address-modal__sheet { transition: none; }
}
