/* =========================================
   FARMACIA LOS ROBLES — DESIGN SYSTEM
   Premium Pharmacy E-commerce
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ── TOKENS ─────────────────────────────── */
:root {
  /* Colors */
  --c-green-deep:    #0A2E1F;
  --c-green-mid:     #174730;
  --c-green-soft:    #2C6E49;
  --c-green-light:   #4A9E6E;
  --c-green-pale:    #C8E6D5;
  --c-green-ghost:   #EDF7F1;
  --c-cream:         #FAF7F2;
  --c-cream-dark:    #F2EDE5;
  --c-gold:          #C9A96E;
  --c-gold-light:    #E8CFA0;
  --c-white:         #FFFFFF;
  --c-charcoal:      #1C1C1E;
  --c-gray-dark:     #3A3A3C;
  --c-gray-mid:      #6B7280;
  --c-gray-light:    #D1D5DB;
  --c-gray-ghost:    #F3F4F6;
  --c-red:           #DC2626;
  --c-red-soft:      #FEE2E2;

  /* Typography */
  --f-display:       'Cormorant Garamond', Georgia, serif;
  --f-heading:       'Playfair Display', Georgia, serif;
  --f-body:          'Inter', -apple-system, sans-serif;

  /* Sizes */
  --size-2xs: 0.625rem;
  --size-xs:  0.75rem;
  --size-sm:  0.875rem;
  --size-base:1rem;
  --size-md:  1.125rem;
  --size-lg:  1.25rem;
  --size-xl:  1.5rem;
  --size-2xl: 2rem;
  --size-3xl: 2.5rem;
  --size-4xl: 3.5rem;
  --size-5xl: 5rem;
  --size-6xl: 7rem;

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;
  --sp-40: 10rem;

  /* Radii */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-xs:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-sm:  0 4px 16px rgba(0,0,0,.07);
  --shadow-md:  0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:  0 16px 64px rgba(0,0,0,.12);
  --shadow-xl:  0 32px 96px rgba(0,0,0,.15);
  --shadow-green: 0 8px 32px rgba(10,46,31,.18);
  --shadow-gold:  0 8px 32px rgba(201,169,110,.25);

  /* Transitions */
  --t-fast:   150ms ease;
  --t-base:   300ms ease;
  --t-slow:   600ms ease;
  --t-spring: 500ms cubic-bezier(0.34,1.56,0.64,1);

  /* Layout */
  --max-w: 1440px;
  --gutter: clamp(1.5rem, 4vw, 4rem);
  --header-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--f-body);
  font-size: var(--size-base);
  color: var(--c-charcoal);
  background: var(--c-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }
strong { font-weight: 600; }

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

/* ── SELECTION ──────────────────────────── */
::selection { background: var(--c-green-pale); color: var(--c-green-deep); }

/* ── LAYOUT UTILS ───────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--sp-32);
}

.section--sm { padding-block: var(--sp-20); }
.section--lg { padding-block: clamp(5rem, 10vw, 10rem); }

.grid { display: grid; gap: var(--sp-8); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* ── TYPOGRAPHY ─────────────────────────── */
.display-1 {
  font-family: var(--f-display);
  font-size: clamp(3.5rem, 8vw, 9rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
}

.display-2 {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.h1 {
  font-family: var(--f-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.h2 {
  font-family: var(--f-heading);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.h3 {
  font-family: var(--f-display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.3;
}

.h4 {
  font-family: var(--f-body);
  font-size: var(--size-lg);
  font-weight: 600;
  line-height: 1.4;
}

.eyebrow {
  font-family: var(--f-body);
  font-size: var(--size-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-green-soft);
}

.eyebrow--gold { color: var(--c-gold); }
.eyebrow--white { color: rgba(255,255,255,.65); }

.lead {
  font-size: var(--size-lg);
  font-weight: 300;
  line-height: 1.7;
  color: var(--c-gray-mid);
}

.body-sm { font-size: var(--size-sm); line-height: 1.6; }

/* ── BUTTONS ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.875rem 2rem;
  border-radius: var(--r-full);
  font-size: var(--size-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.15);
  transform: translateX(-100%);
  transition: transform var(--t-base);
}

.btn:hover::before { transform: translateX(0); }

.btn--primary {
  background: var(--c-green-deep);
  color: var(--c-white);
  box-shadow: var(--shadow-green);
}

.btn--primary:hover {
  background: var(--c-green-mid);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(10,46,31,.25);
}

.btn--primary:active { transform: translateY(0); }

.btn--gold {
  background: var(--c-gold);
  color: var(--c-white);
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  background: #b8934a;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,169,110,.35);
}

.btn--outline {
  background: transparent;
  color: var(--c-green-deep);
  border: 1.5px solid var(--c-green-deep);
}

.btn--outline:hover {
  background: var(--c-green-deep);
  color: var(--c-white);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--c-white);
  border: 1.5px solid rgba(255,255,255,.5);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--c-white);
}

.btn--ghost {
  background: var(--c-green-ghost);
  color: var(--c-green-deep);
}

.btn--ghost:hover {
  background: var(--c-green-pale);
  transform: translateY(-2px);
}

.btn--icon {
  width: 48px;
  height: 48px;
  padding: 0;
  justify-content: center;
  border-radius: var(--r-full);
}

.btn--sm { padding: 0.625rem 1.25rem; font-size: var(--size-xs); }
.btn--lg { padding: 1.125rem 2.5rem; font-size: var(--size-base); }

/* ── BADGE ──────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-full);
  font-size: var(--size-2xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge--green { background: var(--c-green-ghost); color: var(--c-green-soft); }
.badge--gold  { background: #FDF6EA; color: #8B6914; }
.badge--red   { background: var(--c-red-soft); color: var(--c-red); }
.badge--white { background: rgba(255,255,255,.2); color: var(--c-white); }

/* ── CARDS ──────────────────────────────── */
.card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card__image {
  position: relative;
  overflow: hidden;
  background: var(--c-gray-ghost);
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.card:hover .card__image img { transform: scale(1.05); }

.card__body { padding: var(--sp-6); }
.card__body--lg { padding: var(--sp-8); }

/* ── PRODUCT CARD ───────────────────────── */
.product-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  transition: transform var(--t-base), box-shadow var(--t-base);
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(0,0,0,.05);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-card__media {
  position: relative;
  aspect-ratio: 1;
  background: var(--c-gray-ghost);
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--sp-4);
  transition: transform var(--t-slow);
}

.product-card:hover .product-card__media img { transform: scale(1.08); }

.product-card__actions {
  position: absolute;
  bottom: var(--sp-4);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  transition: all var(--t-base);
  display: flex;
  gap: var(--sp-2);
  white-space: nowrap;
}

.product-card:hover .product-card__actions {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-card__badges {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.product-card__wishlist {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  width: 36px;
  height: 36px;
  background: var(--c-white);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xs);
  opacity: 0;
  transition: all var(--t-base);
  cursor: pointer;
}

.product-card:hover .product-card__wishlist { opacity: 1; }
.product-card__wishlist:hover { background: var(--c-red-soft); color: var(--c-red); }

.product-card__info { padding: var(--sp-5) var(--sp-5) var(--sp-6); }

.product-card__brand {
  font-size: var(--size-2xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-green-soft);
  margin-bottom: var(--sp-1);
}

.product-card__name {
  font-size: var(--size-sm);
  font-weight: 500;
  line-height: 1.4;
  color: var(--c-charcoal);
  margin-bottom: var(--sp-3);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__price {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.product-card__price-current {
  font-family: var(--f-display);
  font-size: var(--size-xl);
  font-weight: 600;
  color: var(--c-charcoal);
}

.product-card__price-original {
  font-size: var(--size-sm);
  color: var(--c-gray-mid);
  text-decoration: line-through;
}

.product-card__stars {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  margin-bottom: var(--sp-2);
}

.star { color: var(--c-gold); font-size: 12px; }
.star--empty { color: var(--c-gray-light); }

.product-card__reviews { font-size: var(--size-2xs); color: var(--c-gray-mid); }

/* ── SECTION HEADER ─────────────────────── */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-6);
  margin-bottom: var(--sp-16);
}

.section-header__left { max-width: 520px; }

.section-header .eyebrow { margin-bottom: var(--sp-3); }
.section-header .h2 { margin-bottom: var(--sp-4); }
.section-header .lead { font-size: var(--size-base); }

/* ── HEADER / NAV ───────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--t-base), box-shadow var(--t-base), backdrop-filter var(--t-base);
}

.site-header.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
}

.site-header--transparent { background: transparent; }

.nav {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--f-display);
  font-size: var(--size-xl);
  font-weight: 600;
  color: var(--c-green-deep);
  transition: opacity var(--t-fast);
}

.nav__logo:hover { opacity: .75; }

.nav__logo-mark {
  width: 40px;
  height: 40px;
  background: var(--c-green-deep);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  font-size: var(--size-lg);
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}

.nav__logo--white .nav__logo-mark { background: var(--c-white); color: var(--c-green-deep); }
.nav__logo--white span { color: var(--c-white); }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  margin-right: auto;
}

.nav__link {
  position: relative;
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--size-sm);
  font-weight: 500;
  color: var(--c-charcoal);
  border-radius: var(--r-full);
  transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--c-green-deep);
  background: var(--c-green-ghost);
}

.nav__link.active { color: var(--c-green-deep); background: var(--c-green-ghost); }

.nav__link--white { color: rgba(255,255,255,.85); }
.nav__link--white:hover { color: var(--c-white); background: rgba(255,255,255,.12); }

.nav__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--c-white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--sp-6);
  min-width: 600px;
  opacity: 0;
  pointer-events: none;
  transition: all var(--t-base);
  border: 1px solid rgba(0,0,0,.05);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.nav__link:hover .nav__dropdown,
.nav__dropdown-wrap:hover .nav__dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-wrap {
  position: relative;
}

.nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3);
  border-radius: var(--r-md);
  transition: background var(--t-fast);
}

.nav__dropdown-item:hover { background: var(--c-green-ghost); }

.nav__dropdown-icon {
  width: 36px;
  height: 36px;
  background: var(--c-green-ghost);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.nav__dropdown-text { font-size: var(--size-sm); font-weight: 500; }
.nav__dropdown-sub { font-size: var(--size-xs); color: var(--c-gray-mid); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.nav__action-btn {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-full);
  color: var(--c-charcoal);
  transition: all var(--t-fast);
  font-size: 20px;
}

.nav__action-btn:hover { background: var(--c-green-ghost); color: var(--c-green-deep); }
.nav__action-btn--white { color: rgba(255,255,255,.85); }
.nav__action-btn--white:hover { background: rgba(255,255,255,.12); color: var(--c-white); }

.nav__badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: var(--c-green-soft);
  color: var(--c-white);
  border-radius: var(--r-full);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  color: var(--c-charcoal);
  transition: background var(--t-fast);
}

.nav__mobile-toggle:hover { background: var(--c-green-ghost); }

/* ── SEARCH BAR ─────────────────────────── */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10,46,31,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: flex-start;
  padding-top: 15vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
}

.search-overlay.open { opacity: 1; pointer-events: all; }

.search-overlay__inner {
  width: 100%;
  max-width: 680px;
  margin-inline: auto;
  padding-inline: var(--gutter);
  transform: translateY(20px);
  transition: transform var(--t-base);
}

.search-overlay.open .search-overlay__inner { transform: translateY(0); }

.search-form {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--c-white);
  border-radius: var(--r-full);
  padding: var(--sp-2) var(--sp-3) var(--sp-2) var(--sp-6);
  box-shadow: var(--shadow-xl);
}

.search-form input {
  flex: 1;
  border: none;
  background: none;
  font-size: var(--size-lg);
  color: var(--c-charcoal);
  outline: none;
  padding-right: var(--sp-4);
}

.search-form input::placeholder { color: var(--c-gray-mid); }

.search-close {
  position: absolute;
  top: var(--sp-6);
  right: var(--gutter);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.15);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  font-size: 24px;
  cursor: pointer;
  transition: background var(--t-fast);
}

.search-close:hover { background: rgba(255,255,255,.25); }

.search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-6);
}

.search-tag {
  padding: var(--sp-2) var(--sp-4);
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.8);
  border-radius: var(--r-full);
  font-size: var(--size-sm);
  cursor: pointer;
  transition: all var(--t-fast);
  border: 1px solid rgba(255,255,255,.2);
}

.search-tag:hover { background: rgba(255,255,255,.2); color: var(--c-white); }

/* ── MOBILE NAV ─────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: var(--c-green-deep);
  transform: translateX(-100%);
  transition: transform var(--t-slow) cubic-bezier(0.76,0,0.24,1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-6) var(--sp-8);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.mobile-nav__close {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.1);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  font-size: 24px;
  cursor: pointer;
}

.mobile-nav__links {
  padding: var(--sp-8);
  flex: 1;
}

.mobile-nav__link {
  display: block;
  padding: var(--sp-5) 0;
  font-family: var(--f-display);
  font-size: var(--size-3xl);
  font-weight: 300;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color var(--t-fast);
}

.mobile-nav__link:hover { color: var(--c-white); }
.mobile-nav__link:last-child { border-bottom: none; }

.mobile-nav__footer {
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  border-top: 1px solid rgba(255,255,255,.1);
}

.mobile-nav__social {
  display: flex;
  gap: var(--sp-3);
}

.mobile-nav__social-link {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.1);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  transition: background var(--t-fast);
}

.mobile-nav__social-link:hover { background: rgba(255,255,255,.2); }

/* ── HERO ───────────────────────────────── */
.hero {
  min-height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-green-deep);
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero__slide.active { opacity: 1; }

.hero__slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero__slide.active .hero__slide-img { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,46,31,.92) 0%,
    rgba(10,46,31,.7) 50%,
    rgba(10,46,31,.3) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-top: var(--header-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 100dvh;
  gap: var(--sp-16);
}

.hero__text { max-width: 640px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: rgba(255,255,255,.1);
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,.2);
  margin-bottom: var(--sp-6);
  font-size: var(--size-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold-light);
}

.hero__title {
  font-family: var(--f-display);
  font-size: clamp(3.5rem, 7vw, 8rem);
  font-weight: 300;
  line-height: .95;
  color: var(--c-white);
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-6);
}

.hero__title em {
  font-style: italic;
  color: var(--c-gold-light);
  display: block;
}

.hero__desc {
  font-size: var(--size-lg);
  font-weight: 300;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: var(--sp-10);
  max-width: 440px;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: var(--sp-8);
  margin-top: var(--sp-12);
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,.12);
}

.hero__stat-num {
  font-family: var(--f-display);
  font-size: var(--size-3xl);
  font-weight: 300;
  color: var(--c-white);
  line-height: 1;
}

.hero__stat-label {
  font-size: var(--size-xs);
  color: rgba(255,255,255,.6);
  margin-top: var(--sp-1);
}

.hero__visual { position: relative; }

.hero__featured-product {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  max-width: 320px;
  margin-left: auto;
  animation: float 6s ease-in-out infinite;
}

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

.hero__fp-badge {
  margin-bottom: var(--sp-4);
}

.hero__fp-img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin: 0 auto var(--sp-5);
}

.hero__fp-name {
  font-size: var(--size-sm);
  font-weight: 500;
  color: var(--c-white);
  margin-bottom: var(--sp-2);
}

.hero__fp-price {
  font-family: var(--f-display);
  font-size: var(--size-2xl);
  color: var(--c-gold-light);
  margin-bottom: var(--sp-4);
}

.hero__dots {
  position: absolute;
  bottom: var(--sp-10);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--sp-2);
  z-index: 10;
}

.hero__dot {
  width: 6px;
  height: 6px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: all var(--t-base);
}

.hero__dot.active {
  width: 24px;
  background: var(--c-white);
}

.hero__scroll-hint {
  position: absolute;
  bottom: var(--sp-10);
  left: var(--gutter);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: rgba(255,255,255,.5);
  font-size: var(--size-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 10;
}

.hero__scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,.3);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-white);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

/* ── MARQUEE STRIP ──────────────────────── */
.marquee-strip {
  background: var(--c-green-deep);
  padding-block: var(--sp-4);
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.marquee-inner {
  display: flex;
  gap: var(--sp-12);
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

.marquee-inner:hover { animation-play-state: paused; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--size-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  flex-shrink: 0;
}

.marquee-item svg, .marquee-item span.dot {
  width: 5px;
  height: 5px;
  background: var(--c-gold);
  border-radius: 50%;
}

/* ── CATEGORIES SECTION ─────────────────── */
.categories-section { background: var(--c-cream); }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}

.category-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--t-base);
  text-decoration: none;
}

.category-card:hover { transform: translateY(-6px); }

.category-card--tall { grid-row: span 2; }
.category-card--wide { grid-column: span 2; }

.category-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--t-slow);
}

.category-card:hover .category-card__bg { transform: scale(1.06); }

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,46,31,.85) 0%, rgba(10,46,31,.1) 60%, transparent 100%);
}

.category-card__content {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-6);
}

.category-card--tall .category-card__content { min-height: 500px; }

.category-card__count {
  font-size: var(--size-xs);
  color: rgba(255,255,255,.6);
  margin-bottom: var(--sp-2);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.category-card__name {
  font-family: var(--f-display);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--c-white);
  line-height: 1.1;
  margin-bottom: var(--sp-3);
}

.category-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--size-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  transition: gap var(--t-fast);
}

.category-card:hover .category-card__arrow { gap: var(--sp-3); }

/* ── FEATURED PRODUCTS ──────────────────── */
.products-section { background: var(--c-white); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.products-grid--5 { grid-template-columns: repeat(5, 1fr); }
.products-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ── BRANDS SECTION ─────────────────────── */
.brands-section { background: var(--c-green-ghost); }

.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-4);
  align-items: center;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6) var(--sp-4);
  background: var(--c-white);
  border-radius: var(--r-lg);
  filter: grayscale(1) opacity(.5);
  transition: all var(--t-base);
  cursor: pointer;
  border: 1px solid rgba(0,0,0,.04);
}

.brand-item:hover {
  filter: none;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.brand-item img { max-height: 40px; object-fit: contain; }

.brand-item__name {
  font-family: var(--f-display);
  font-size: var(--size-lg);
  font-weight: 600;
  color: var(--c-gray-dark);
  letter-spacing: -0.01em;
}

/* ── PROMO BANNER ───────────────────────── */
.promo-section {
  background: var(--c-green-deep);
  position: relative;
  overflow: hidden;
}

.promo-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,.15) 0%, transparent 70%);
  pointer-events: none;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
}

.promo-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  min-height: 400px;
  cursor: pointer;
}

.promo-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--t-slow);
}

.promo-card:hover .promo-card__bg { transform: scale(1.04); }

.promo-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,46,31,.9) 0%, rgba(10,46,31,.4) 100%);
}

.promo-card__content {
  position: relative;
  z-index: 2;
  padding: var(--sp-10);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.promo-card__discount {
  font-family: var(--f-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--c-gold-light);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.promo-card__title {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--c-white);
  margin-bottom: var(--sp-3);
}

.promo-card__subtitle {
  font-size: var(--size-sm);
  color: rgba(255,255,255,.65);
  margin-bottom: var(--sp-6);
}

/* ── BENEFITS ───────────────────────────── */
.benefits-section { background: var(--c-white); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.benefit-card {
  padding: var(--sp-8);
  background: var(--c-cream);
  border-radius: var(--r-xl);
  transition: all var(--t-base);
  border: 1px solid transparent;
}

.benefit-card:hover {
  background: var(--c-white);
  border-color: var(--c-green-pale);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.benefit-card__icon {
  width: 60px;
  height: 60px;
  background: var(--c-green-ghost);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: var(--sp-5);
  transition: all var(--t-base);
}

.benefit-card:hover .benefit-card__icon {
  background: var(--c-green-deep);
  transform: scale(1.1) rotate(-5deg);
}

.benefit-card__title {
  font-family: var(--f-display);
  font-size: var(--size-xl);
  font-weight: 500;
  margin-bottom: var(--sp-2);
}

.benefit-card__desc {
  font-size: var(--size-sm);
  color: var(--c-gray-mid);
  line-height: 1.6;
}

/* ── REVIEWS ────────────────────────────── */
.reviews-section { background: var(--c-cream-dark); overflow: hidden; }

.reviews-track {
  display: flex;
  gap: var(--sp-6);
  padding-bottom: var(--sp-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.reviews-track::-webkit-scrollbar { display: none; }
.reviews-track.dragging { cursor: grabbing; }

.review-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base);
}

.review-card:hover { transform: translateY(-4px); }

.review-card__stars { display: flex; gap: 3px; margin-bottom: var(--sp-4); }

.review-card__text {
  font-family: var(--f-display);
  font-size: var(--size-lg);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--c-charcoal);
  margin-bottom: var(--sp-6);
}

.review-card__footer { display: flex; align-items: center; gap: var(--sp-3); }

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: var(--c-green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--size-base);
  font-weight: 600;
  color: var(--c-green-deep);
  flex-shrink: 0;
}

.review-card__name { font-weight: 600; font-size: var(--size-sm); }
.review-card__date { font-size: var(--size-xs); color: var(--c-gray-mid); }

/* ── NEWSLETTER ─────────────────────────── */
.newsletter-section {
  background: var(--c-green-deep);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(201,169,110,.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(74,158,110,.1) 0%, transparent 50%);
}

.newsletter-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
}

.newsletter-inner .h2 { color: var(--c-white); margin-bottom: var(--sp-3); }
.newsletter-inner .lead { color: rgba(255,255,255,.65); margin-bottom: var(--sp-10); }

.newsletter-form {
  display: flex;
  gap: var(--sp-3);
  max-width: 480px;
  margin-inline: auto;
}

.newsletter-input {
  flex: 1;
  padding: 0.875rem 1.5rem;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--r-full);
  color: var(--c-white);
  font-size: var(--size-sm);
  outline: none;
  transition: all var(--t-fast);
}

.newsletter-input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-input:focus { border-color: var(--c-gold); background: rgba(255,255,255,.15); }

.newsletter-privacy {
  margin-top: var(--sp-4);
  font-size: var(--size-xs);
  color: rgba(255,255,255,.4);
}

/* ── BLOG ───────────────────────────────── */
.blog-section { background: var(--c-white); }

.blog-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--sp-6);
}

.blog-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--c-cream);
  transition: transform var(--t-base), box-shadow var(--t-base);
  cursor: pointer;
}

.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.blog-card--featured .blog-card__media { aspect-ratio: 16/10; }
.blog-card__media {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--c-green-ghost);
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.blog-card:hover .blog-card__media img { transform: scale(1.06); }

.blog-card__body { padding: var(--sp-6); }

.blog-card__cat {
  font-size: var(--size-2xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-green-soft);
  margin-bottom: var(--sp-2);
}

.blog-card__title {
  font-family: var(--f-heading);
  font-size: var(--size-lg);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--sp-3);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card--featured .blog-card__title { font-size: var(--size-2xl); -webkit-line-clamp: 4; }

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--size-xs);
  color: var(--c-gray-mid);
}

.blog-card__meta-dot { width: 3px; height: 3px; background: var(--c-gray-light); border-radius: 50%; }

/* ── FAQ ────────────────────────────────── */
.faq-section { background: var(--c-cream); }

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-16);
  align-items: start;
}

.faq-sticky {
  position: sticky;
  top: calc(var(--header-h) + var(--sp-8));
}

.faq-list { display: flex; flex-direction: column; gap: var(--sp-3); }

.faq-item {
  background: var(--c-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.05);
  transition: box-shadow var(--t-fast);
}

.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.open { box-shadow: var(--shadow-md); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  cursor: pointer;
  font-weight: 600;
  font-size: var(--size-base);
  transition: color var(--t-fast);
  user-select: none;
}

.faq-item.open .faq-question { color: var(--c-green-deep); }

.faq-icon {
  width: 32px;
  height: 32px;
  background: var(--c-green-ghost);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--t-base);
  font-size: 18px;
  color: var(--c-green-soft);
}

.faq-item.open .faq-icon {
  background: var(--c-green-deep);
  color: var(--c-white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) ease;
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 var(--sp-6) var(--sp-6);
  font-size: var(--size-sm);
  color: var(--c-gray-mid);
  line-height: 1.7;
}

/* ── FOOTER ─────────────────────────────── */
.footer {
  background: var(--c-charcoal);
  color: rgba(255,255,255,.6);
}

.footer__top {
  padding-block: var(--sp-24);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__brand { max-width: 280px; }

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.footer__logo-mark {
  width: 40px;
  height: 40px;
  background: var(--c-green-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  font-family: var(--f-display);
  font-size: var(--size-lg);
  font-weight: 700;
}

.footer__logo-text {
  font-family: var(--f-display);
  font-size: var(--size-lg);
  font-weight: 500;
  color: var(--c-white);
}

.footer__brand p {
  font-size: var(--size-sm);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}

.footer__social { display: flex; gap: var(--sp-3); }

.footer__social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.08);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all var(--t-fast);
  font-size: 16px;
}

.footer__social-link:hover { background: var(--c-green-soft); color: var(--c-white); }

.footer__col-title {
  font-size: var(--size-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: var(--sp-5);
}

.footer__links { display: flex; flex-direction: column; gap: var(--sp-3); }

.footer__link {
  font-size: var(--size-sm);
  color: rgba(255,255,255,.5);
  transition: color var(--t-fast);
}

.footer__link:hover { color: var(--c-white); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--size-sm);
  margin-bottom: var(--sp-3);
}

.footer__contact-icon {
  width: 18px;
  color: var(--c-green-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__hours { font-size: var(--size-sm); line-height: 1.8; }

.footer__bottom {
  padding-block: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  font-size: var(--size-xs);
  flex-wrap: wrap;
}

.footer__payments { display: flex; align-items: center; gap: var(--sp-3); }

.payment-badge {
  height: 24px;
  background: rgba(255,255,255,.08);
  border-radius: var(--r-sm);
  padding: 0 var(--sp-2);
  display: flex;
  align-items: center;
  font-size: var(--size-xs);
  color: rgba(255,255,255,.5);
  font-weight: 600;
}

.footer__legal { display: flex; gap: var(--sp-6); }
.footer__legal a { color: rgba(255,255,255,.4); transition: color var(--t-fast); }
.footer__legal a:hover { color: rgba(255,255,255,.7); }

/* ── WHATSAPP FAB ───────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: var(--sp-8);
  right: var(--sp-8);
  z-index: 500;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: all var(--t-spring);
  color: white;
  font-size: 28px;
}

.whatsapp-fab:hover {
  transform: scale(1.1) rotate(-10deg);
  box-shadow: 0 8px 32px rgba(37,211,102,.5);
}

.whatsapp-fab::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--r-full);
  border: 2px solid rgba(37,211,102,.4);
  animation: pulse-ring 2s ease infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ── BACK TO TOP ────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: var(--sp-8);
  right: calc(var(--sp-8) + 70px);
  z-index: 500;
  width: 48px;
  height: 48px;
  background: var(--c-green-deep);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: all var(--t-base);
  font-size: 20px;
  transform: translateY(10px);
}

.back-to-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-to-top:hover { background: var(--c-green-mid); transform: translateY(-4px); }

/* ── CART DRAWER ────────────────────────── */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 440px;
  max-width: 100vw;
  background: var(--c-white);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform var(--t-slow) cubic-bezier(0.76,0,0.24,1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

.cart-drawer.open { transform: translateX(0); }

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,46,31,.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
}

.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-header {
  padding: var(--sp-6) var(--sp-8);
  border-bottom: 1px solid var(--c-gray-ghost);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h3 { font-family: var(--f-display); font-size: var(--size-xl); }

.cart-items { flex: 1; overflow-y: auto; padding: var(--sp-6) var(--sp-8); }

.cart-item {
  display: flex;
  gap: var(--sp-4);
  padding-block: var(--sp-5);
  border-bottom: 1px solid var(--c-gray-ghost);
}

.cart-item__img {
  width: 80px;
  height: 80px;
  border-radius: var(--r-md);
  background: var(--c-gray-ghost);
  object-fit: contain;
  padding: var(--sp-2);
  flex-shrink: 0;
}

.cart-item__details { flex: 1; }
.cart-item__name { font-size: var(--size-sm); font-weight: 500; margin-bottom: var(--sp-1); }
.cart-item__brand { font-size: var(--size-xs); color: var(--c-gray-mid); margin-bottom: var(--sp-3); }

.cart-item__qty {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--c-gray-ghost);
  border-radius: var(--r-full);
  padding: var(--sp-1) var(--sp-3);
}

.cart-item__qty button { font-size: 16px; color: var(--c-charcoal); }
.cart-item__qty span { font-size: var(--size-sm); font-weight: 600; min-width: 20px; text-align: center; }

.cart-item__price {
  font-family: var(--f-display);
  font-size: var(--size-lg);
  font-weight: 500;
  white-space: nowrap;
}

.cart-footer {
  padding: var(--sp-6) var(--sp-8);
  border-top: 1px solid var(--c-gray-ghost);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-6);
}

.cart-total__label { font-size: var(--size-sm); color: var(--c-gray-mid); }

.cart-total__value {
  font-family: var(--f-display);
  font-size: var(--size-2xl);
  font-weight: 500;
}

/* ── PAGE: TIENDA ───────────────────────── */
.shop-hero {
  background: var(--c-cream);
  padding-block: var(--sp-20) var(--sp-16);
  padding-top: calc(var(--header-h) + var(--sp-20));
}

.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--sp-10);
  align-items: start;
}

.shop-filters {
  position: sticky;
  top: calc(var(--header-h) + var(--sp-6));
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(0,0,0,.04);
}

.filter-group { margin-bottom: var(--sp-8); }
.filter-group:last-child { margin-bottom: 0; }

.filter-group__title {
  font-size: var(--size-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gray-dark);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--c-gray-ghost);
}

.filter-option {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-2) 0;
  cursor: pointer;
  font-size: var(--size-sm);
  color: var(--c-gray-dark);
  transition: color var(--t-fast);
}

.filter-option:hover { color: var(--c-green-deep); }

.filter-option input[type="checkbox"] { display: none; }

.filter-checkbox {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--c-gray-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
  flex-shrink: 0;
  font-size: 11px;
  color: transparent;
}

.filter-option input:checked + .filter-checkbox {
  background: var(--c-green-deep);
  border-color: var(--c-green-deep);
  color: var(--c-white);
}

.price-range {
  padding-block: var(--sp-2);
}

.price-range input[type="range"] {
  width: 100%;
  accent-color: var(--c-green-soft);
}

.price-labels {
  display: flex;
  justify-content: space-between;
  font-size: var(--size-xs);
  color: var(--c-gray-mid);
  margin-top: var(--sp-2);
}

.shop-main {}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-8);
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.shop-results { font-size: var(--size-sm); color: var(--c-gray-mid); }
.shop-results strong { color: var(--c-charcoal); font-weight: 600; }

.sort-select {
  padding: var(--sp-2) var(--sp-4);
  border: 1.5px solid var(--c-gray-light);
  border-radius: var(--r-full);
  font-size: var(--size-sm);
  color: var(--c-charcoal);
  background: var(--c-white);
  outline: none;
  cursor: pointer;
  transition: border-color var(--t-fast);
}

.sort-select:focus { border-color: var(--c-green-soft); }

.view-toggle { display: flex; gap: var(--sp-1); }

.view-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gray-mid);
  transition: all var(--t-fast);
  font-size: 18px;
}

.view-btn.active { background: var(--c-green-ghost); color: var(--c-green-deep); }
.view-btn:hover { color: var(--c-green-deep); }

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  margin-top: var(--sp-16);
}

.page-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--size-sm);
  font-weight: 500;
  transition: all var(--t-fast);
  color: var(--c-gray-dark);
  border: 1.5px solid transparent;
}

.page-btn:hover { background: var(--c-green-ghost); color: var(--c-green-deep); }
.page-btn.active { background: var(--c-green-deep); color: var(--c-white); border-color: transparent; }

/* ── PAGE: PRODUCTO ─────────────────────── */
.product-hero {
  padding-top: calc(var(--header-h) + var(--sp-10));
  padding-bottom: var(--sp-20);
  background: var(--c-white);
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}

.product-gallery { position: sticky; top: calc(var(--header-h) + var(--sp-6)); }

.product-main-img {
  aspect-ratio: 1;
  background: var(--c-gray-ghost);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-8);
}

.product-main-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--t-slow);
}

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

.product-thumbs {
  display: flex;
  gap: var(--sp-3);
  overflow-x: auto;
  scrollbar-width: none;
}

.product-thumbs::-webkit-scrollbar { display: none; }

.product-thumb {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background: var(--c-gray-ghost);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--t-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-2);
}

.product-thumb.active { border-color: var(--c-green-deep); }
.product-thumb img { width: 100%; height: 100%; object-fit: contain; }

.product-info { padding-top: var(--sp-4); }

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--size-xs);
  color: var(--c-gray-mid);
  margin-bottom: var(--sp-5);
}

.product-breadcrumb a { transition: color var(--t-fast); }
.product-breadcrumb a:hover { color: var(--c-green-deep); }
.product-breadcrumb span { opacity: .5; }

.product-brand {
  font-size: var(--size-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-green-soft);
  margin-bottom: var(--sp-3);
}

.product-name {
  font-family: var(--f-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-charcoal);
  margin-bottom: var(--sp-4);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.product-rating__count { font-size: var(--size-sm); color: var(--c-gray-mid); }
.product-rating__write { font-size: var(--size-sm); color: var(--c-green-soft); text-decoration: underline; cursor: pointer; }

.product-price-block { margin-bottom: var(--sp-6); }

.product-price-current {
  font-family: var(--f-display);
  font-size: var(--size-5xl);
  font-weight: 300;
  color: var(--c-charcoal);
  line-height: 1;
}

.product-price-original {
  font-size: var(--size-lg);
  color: var(--c-gray-mid);
  text-decoration: line-through;
  margin-left: var(--sp-2);
}

.product-price-save {
  display: inline-flex;
  padding: 0.2rem 0.6rem;
  background: var(--c-red-soft);
  color: var(--c-red);
  border-radius: var(--r-full);
  font-size: var(--size-xs);
  font-weight: 700;
  margin-left: var(--sp-2);
}

.product-desc {
  font-size: var(--size-sm);
  color: var(--c-gray-mid);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid var(--c-gray-ghost);
}

.product-variants { margin-bottom: var(--sp-6); }
.product-variants__label { font-size: var(--size-sm); font-weight: 600; margin-bottom: var(--sp-3); }

.variant-options { display: flex; gap: var(--sp-2); flex-wrap: wrap; }

.variant-btn {
  padding: var(--sp-2) var(--sp-4);
  border: 1.5px solid var(--c-gray-light);
  border-radius: var(--r-full);
  font-size: var(--size-xs);
  font-weight: 500;
  transition: all var(--t-fast);
  cursor: pointer;
}

.variant-btn:hover { border-color: var(--c-green-soft); color: var(--c-green-deep); }
.variant-btn.active { background: var(--c-green-deep); border-color: var(--c-green-deep); color: var(--c-white); }

.product-quantity {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  margin-bottom: var(--sp-6);
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  background: var(--c-gray-ghost);
  border-radius: var(--r-full);
  padding: var(--sp-2) var(--sp-5);
}

.quantity-control button { font-size: 20px; color: var(--c-charcoal); padding: var(--sp-1); transition: color var(--t-fast); }
.quantity-control button:hover { color: var(--c-green-deep); }
.quantity-control span { font-weight: 600; min-width: 24px; text-align: center; }

.product-actions {
  display: flex;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}

.product-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  padding: var(--sp-6);
  background: var(--c-cream);
  border-radius: var(--r-lg);
}

.product-trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--size-xs);
  color: var(--c-gray-mid);
}

.product-trust-icon { font-size: 20px; }

/* ── PAGE: NOSOTROS ─────────────────────── */
.about-hero {
  min-height: 70vh;
  background: var(--c-green-deep);
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(201,169,110,.1) 0%, transparent 60%);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.value-card {
  padding: var(--sp-10);
  background: var(--c-white);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-base);
}

.value-card:hover { transform: translateY(-6px); }

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-green-soft), var(--c-gold));
}

.value-card__num {
  font-family: var(--f-display);
  font-size: var(--size-6xl);
  font-weight: 300;
  color: var(--c-green-ghost);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.team-card {
  text-align: center;
  cursor: pointer;
}

.team-card__photo {
  aspect-ratio: 3/4;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--c-green-ghost);
  margin-bottom: var(--sp-4);
  position: relative;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.team-card:hover .team-card__photo img { transform: scale(1.06); }

.team-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,46,31,.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-base);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-6);
}

.team-card:hover .team-card__overlay { opacity: 1; }

.team-card__name { font-family: var(--f-display); font-size: var(--size-lg); font-weight: 500; margin-bottom: var(--sp-1); }
.team-card__role { font-size: var(--size-xs); color: var(--c-gray-mid); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }

/* ── PAGE: BLOG ─────────────────────────── */
.blog-hero {
  background: var(--c-cream);
  padding-block: var(--sp-20) var(--sp-16);
  padding-top: calc(var(--header-h) + var(--sp-20));
}

.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

.article-hero {
  padding-top: calc(var(--header-h) + var(--sp-12));
  padding-bottom: var(--sp-16);
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--sp-16);
  align-items: start;
}

.article-sidebar {
  position: sticky;
  top: calc(var(--header-h) + var(--sp-6));
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.article-sidebar-card {
  background: var(--c-cream);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
}

.article-content {
  font-size: var(--size-md);
  line-height: 1.8;
  color: var(--c-gray-dark);
}

.article-content h2 {
  font-family: var(--f-heading);
  font-size: var(--size-2xl);
  color: var(--c-charcoal);
  margin-block: var(--sp-10) var(--sp-5);
}

.article-content h3 {
  font-family: var(--f-display);
  font-size: var(--size-xl);
  color: var(--c-charcoal);
  margin-block: var(--sp-8) var(--sp-4);
}

.article-content p { margin-bottom: var(--sp-5); }

.article-content blockquote {
  margin-block: var(--sp-8);
  padding: var(--sp-6) var(--sp-8);
  background: var(--c-green-ghost);
  border-left: 4px solid var(--c-green-soft);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  font-family: var(--f-display);
  font-size: var(--size-xl);
  font-style: italic;
  color: var(--c-green-deep);
}

/* ── PAGE: CONTACTO ─────────────────────── */
.contact-hero {
  background: var(--c-cream);
  padding-block: var(--sp-20) var(--sp-16);
  padding-top: calc(var(--header-h) + var(--sp-20));
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-16);
}

.contact-form-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  box-shadow: var(--shadow-md);
}

.form-group { margin-bottom: var(--sp-6); }

.form-label {
  display: block;
  font-size: var(--size-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gray-dark);
  margin-bottom: var(--sp-2);
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: var(--c-cream);
  border: 1.5px solid transparent;
  border-radius: var(--r-md);
  font-size: var(--size-sm);
  color: var(--c-charcoal);
  outline: none;
  transition: all var(--t-fast);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--c-green-soft);
  background: var(--c-white);
  box-shadow: 0 0 0 4px rgba(44,110,73,.08);
}

.form-textarea { min-height: 140px; resize: vertical; }

.map-container {
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 400px;
  margin-top: var(--sp-8);
}

.map-container iframe { width: 100%; height: 100%; border: none; }

.contact-info-card {
  background: var(--c-green-deep);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  color: var(--c-white);
}

.contact-info-item {
  display: flex;
  gap: var(--sp-4);
  padding-block: var(--sp-5);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.contact-info-item:last-of-type { border-bottom: none; }

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.contact-info-label { font-size: var(--size-xs); color: rgba(255,255,255,.5); margin-bottom: var(--sp-1); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.contact-info-value { font-size: var(--size-sm); }

/* ── PAGE: CUENTA ───────────────────────── */
.auth-page {
  min-height: 100dvh;
  background: var(--c-cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.auth-visual {
  background: var(--c-green-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--sp-16);
  position: relative;
  overflow: hidden;
}

.auth-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(201,169,110,.12) 0%, transparent 60%);
}

.auth-form-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-16);
}

.auth-card {
  width: 100%;
  max-width: 440px;
}

/* ── PAGE: CHECKOUT ─────────────────────── */
.checkout-page {
  min-height: 100dvh;
  background: var(--c-cream);
  padding-top: var(--header-h);
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--sp-10);
  align-items: start;
  padding-block: var(--sp-16);
}

.checkout-section {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  margin-bottom: var(--sp-5);
}

.checkout-section__title {
  font-family: var(--f-display);
  font-size: var(--size-xl);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--c-gray-ghost);
}

.checkout-summary {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  position: sticky;
  top: calc(var(--header-h) + var(--sp-6));
  box-shadow: var(--shadow-sm);
}

/* ── ANIMATIONS ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal--left {
  transform: translateX(-30px);
}

.reveal--left.visible { transform: translateX(0); }

.reveal--right {
  transform: translateX(30px);
}

.reveal--right.visible { transform: translateX(0); }

.reveal--scale {
  transform: scale(0.92);
}

.reveal--scale.visible { transform: scale(1); }

.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger.visible > * { opacity: 1; transform: translateY(0); }

.stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 400ms; }
.stagger.visible > *:nth-child(7) { transition-delay: 480ms; }
.stagger.visible > *:nth-child(8) { transition-delay: 560ms; }

/* ── SKELETON LOADING ───────────────────── */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.skeleton {
  background: linear-gradient(90deg, var(--c-gray-ghost) 25%, var(--c-gray-light) 50%, var(--c-gray-ghost) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--r-sm);
}

/* ── TOAST ──────────────────────────────── */
.toast-container {
  position: fixed;
  top: calc(var(--header-h) + 1rem);
  right: var(--sp-6);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  background: var(--c-charcoal);
  color: var(--c-white);
  border-radius: var(--r-lg);
  font-size: var(--size-sm);
  box-shadow: var(--shadow-lg);
  pointer-events: all;
  animation: toastIn .3s ease forwards;
  max-width: 320px;
}

.toast--success { background: var(--c-green-deep); }
.toast--error { background: var(--c-red); }

@keyframes toastIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(20px); }
}

.toast.leaving { animation: toastOut .3s ease forwards; }

/* ── CURSOR ─────────────────────────────── */
.custom-cursor {
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: difference;
  transition: opacity var(--t-fast);
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--c-white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255,255,255,.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor-ring.hovered {
  width: 60px;
  height: 60px;
  border-color: rgba(255,255,255,.8);
}

/* ── MEDIA QUERIES ──────────────────────── */
@media (max-width: 1280px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
  .footer__top { grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: var(--sp-8); }
}

@media (max-width: 1024px) {
  :root { --header-h: 72px; }

  .hero__content { grid-template-columns: 1fr; gap: var(--sp-10); }
  .hero__visual { display: none; }

  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .promo-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sticky { position: static; }
  .blog-list-grid { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .auth-page { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
  .checkout-layout { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr 1fr; }
  .product-layout { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-filters { position: static; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
}

@media (max-width: 768px) {
  :root { --gutter: 1.25rem; }

  .nav__links { display: none; }
  .nav__mobile-toggle { display: flex; }
  .nav__actions .btn { display: none; }

  .section { padding-block: var(--sp-16); }
  .section--lg { padding-block: var(--sp-20); }

  .section-header { flex-direction: column; align-items: flex-start; }

  .hero__title { font-size: clamp(3rem, 10vw, 5rem); }

  .categories-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
  .category-card--wide { grid-column: span 1; }
  .category-card--tall { grid-row: span 1; }
  .category-card__content { min-height: 180px; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
  .benefits-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-list-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-values { grid-template-columns: 1fr; }

  .newsletter-form { flex-direction: column; }
  .hero__stats { gap: var(--sp-6); }

  .footer__top { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }

  .product-actions { flex-direction: column; }
  .product-trust { grid-template-columns: 1fr; }

  .custom-cursor { display: none; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero__stats { flex-direction: column; gap: var(--sp-4); }
}
