/** Shopify CDN: Minification failed

Line 439:0 Unexpected "}"

**/
/* ============================================
   MARIACHILL — Design System
   ============================================ */

:root {
  /* Colors */
  --cream: #f5f1e8;
  --cream-2: #ede6d3;
  --cream-3: #e5dcc4;
  --paper: #fbf8f0;
  --ink: #1a1f1b;
  --ink-2: #3d4640;
  --ink-3: #6b736d;
  --line: #d8d0bb;

  --green: #1e7a3d;
  --green-dark: #0f3d20;
  --green-deep: #0a2a16;
  --green-soft: #e3ecd9;
  --green-mist: #eef2e6;

  --gold: #d4a437;
  --gold-dark: #b8862a;
  --gold-soft: #f2e6c1;

  --brick: #b8412a;
  --brick-dark: #8a2f1e;
  --brick-soft: #f0d6cb;

  /* Typography */
  --f-display: 'Yeseva One', 'DM Serif Display', Georgia, serif;
  --f-body: 'Manrope', system-ui, -apple-system, sans-serif;
  --f-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  /* Spacing */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;

  /* Layout */
  --max-w: 1360px;
  --pad-x: clamp(20px, 4vw, 56px);

  /* Radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-xl: 22px;
  --r-full: 999px;

  --shadow-sm: 0 1px 2px rgba(15, 26, 18, 0.06), 0 2px 6px rgba(15, 26, 18, 0.04);
  --shadow-md: 0 6px 18px rgba(15, 26, 18, 0.08), 0 2px 4px rgba(15, 26, 18, 0.04);
  --shadow-lg: 0 24px 56px rgba(15, 26, 18, 0.14), 0 6px 12px rgba(15, 26, 18, 0.06);
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--f-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

h1, h2, h3, h4, h5 { font-family: var(--f-display); font-weight: 400; margin: 0; letter-spacing: -0.01em; line-height: 1.1; color: var(--green-deep); }
h1 { font-size: clamp(40px, 5.6vw, 76px); }
h2 { font-size: clamp(32px, 3.8vw, 52px); }
h3 { font-size: clamp(22px, 2vw, 28px); }

p { margin: 0; text-wrap: pretty; }

::selection { background: var(--green); color: var(--cream); }

/* ============================================
   Utilities
   ============================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.mono { font-family: var(--f-mono); letter-spacing: 0.04em; text-transform: uppercase; font-size: 11px; font-weight: 500; }
.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: currentColor;
}
.section { padding: var(--s-9) 0; }
.section-sm { padding: var(--s-7) 0; }
.flex { display: flex; }
.between { display: flex; align-items: center; justify-content: space-between; }
.gap-2 { gap: var(--s-2); }
.gap-3 { gap: var(--s-3); }
.gap-4 { gap: var(--s-4); }
.gap-5 { gap: var(--s-5); }
.gap-6 { gap: var(--s-6); }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: all 0.18s ease;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--green-dark);
  color: var(--cream);
}
.btn-primary:hover { background: var(--green); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-secondary:hover { background: var(--green-dark); color: var(--cream); }
.btn-gold {
  background: var(--gold);
  color: var(--green-deep);
}
.btn-gold:hover { background: var(--gold-dark); color: var(--cream); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 10px 16px;
}
.btn-ghost:hover { background: var(--cream-2); }
.btn-lg { padding: 18px 32px; font-size: 15px; }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-icon { padding: 12px; border-radius: var(--r-full); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ============================================
   Announcement bar
   ============================================ */
.announce {
  background: var(--green-deep);
  color: var(--cream);
  text-align: center;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}
.announce-track {
  display: inline-flex;
  gap: 40px;
  align-items: center;
}
.announce-sep { color: var(--gold); }

/* ============================================
   Header
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 18px var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}
.brand-logo {
  height: 96px;
  width: auto;
  cursor: pointer;
}
.header-search {
  display: flex;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  padding: 10px 18px;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  gap: 10px;
  transition: border-color 0.2s;
}
.header-search:focus-within { border-color: var(--green); }
.header-search input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  font-size: 14px;
  color: var(--ink);
}
.header-search input::placeholder { color: var(--ink-3); }
.header-actions { display: flex; align-items: center; gap: 4px; }
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--r-full);
  color: var(--ink);
  position: relative;
  transition: background 0.15s;
}
.icon-btn:hover { background: var(--cream-2); }
.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--brick);
  color: var(--cream);
  font-size: 10px;
  font-weight: 700;
  height: 18px;
  min-width: 18px;
  padding: 0 5px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--cream);
}

.nav {
  border-top: 1px solid var(--line);
  background: var(--cream);
}
.nav-inner {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 4px var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav-link {
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.15s;
  cursor: pointer;
}
.nav-link:hover, .nav-link.active { color: var(--green-dark); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--green-dark);
}
.nav-link-mini { font-size: 11px; color: var(--gold-dark); font-weight: 700; margin-left: 6px; }

/* ============================================
   Hero
   ============================================ */
.hero {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
  padding: var(--s-9) 0 var(--s-9);
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.hero-copy { max-width: 540px; }
.hero h1 {
  margin-top: 20px;
  margin-bottom: 24px;
  line-height: 1.02;
}
.hero h1 em {
  font-style: italic;
  color: var(--green);
  position: relative;
}
.hero-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-cta-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-meta {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-meta-item { display: flex; flex-direction: column; gap: 4px; }
.hero-meta-num { font-family: var(--f-display); font-size: 28px; color: var(--green-dark); }
.hero-meta-label { font-size: 12px; color: var(--ink-3); letter-spacing: 0.04em; }

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--green-deep);
}
.hero-product {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(212,164,55,0.16), transparent 50%),
    linear-gradient(160deg, #143d22 0%, #0a2a16 60%, #06200f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-papel {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 32px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 32'><path d='M0,0 L80,0 L80,8 L72,8 L72,18 L66,12 L60,18 L60,8 L52,8 L52,18 L46,12 L40,18 L40,8 L32,8 L32,18 L26,12 L20,18 L20,8 L12,8 L12,18 L6,12 L0,18 Z' fill='%23d4a437' opacity='0.65'/></svg>");
  background-size: 80px 32px;
  background-repeat: repeat-x;
}
.hero-stripes-bg {
  background:
    repeating-linear-gradient(45deg, transparent 0 22px, rgba(212,164,55,0.04) 22px 23px);
}
.hero-tag {
  position: absolute;
  top: 56px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,241,232,0.92);
  color: var(--green-dark);
  border-radius: var(--r-full);
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-tag-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--brick); }
.hero-badge-price {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: var(--cream);
}
.hero-badge-name { font-family: var(--f-display); font-size: 26px; line-height: 1.05; max-width: 240px; }
.hero-badge-sub { font-size: 12px; opacity: 0.75; margin-top: 6px; letter-spacing: 0.06em; }
.hero-badge-price-tag {
  background: var(--gold);
  color: var(--green-deep);
  padding: 10px 14px;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Big illustrative bottle */
.hero-bottle {
    width: 80%;
  height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.5));
}
}

/* ============================================
   Hero slider controls
   ============================================ */
.hero-slider { position: relative; }
.hero-slide {
  display: none;
}
.hero-slide.active {
  display: grid;
  animation: heroFade 0.6s ease;
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-arrows {
  position: absolute;
  bottom: var(--s-9);
  right: var(--pad-x);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.hero-arrow {
  width: 52px; height: 52px;
  border-radius: var(--r-full);
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.15s;
}
.hero-arrow:hover { background: var(--green-dark); color: var(--cream); border-color: var(--green-dark); }
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.hero-dot {
  width: 32px;
  height: 4px;
  border-radius: 999px;
  background: var(--line);
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.hero-dot.active { background: var(--green-dark); width: 56px; }
.hero-dot-fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  background: var(--gold);
  width: 0%;
  transition: none;
}
.hero-dot.active .hero-dot-fill {
  width: 100%;
  transition: width 5s linear;
}

/* slide variants */
.hero-visual.variant-gold .hero-product {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(212,164,55,0.3), transparent 50%),
    linear-gradient(160deg, #d4a437 0%, #b8862a 60%, #8a6420 100%);
}
.hero-visual.variant-brick .hero-product {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(245,241,232,0.12), transparent 50%),
    linear-gradient(160deg, #c84a3a 0%, #8a2f1e 60%, #5a1e10 100%);
}

@media (max-width: 980px) {
  .hero-arrows { position: static; justify-content: center; padding: 24px; }
  .hero-dots { bottom: 16px; }
}

/* ============================================
   Trust strip
   ============================================ */
.trust {
  background: var(--green-deep);
  color: var(--cream);
  padding: 28px 0;
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.trust-icon { color: var(--gold); flex-shrink: 0; }
.trust-text strong { display: block; font-weight: 700; }
.trust-text span { font-size: 11px; opacity: 0.7; letter-spacing: 0.08em; text-transform: uppercase; }

/* ============================================
   Section heading
   ============================================ */
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}
.sec-head-left { max-width: 600px; }
.sec-head h2 { margin-top: 12px; }
.sec-head-link {
  font-weight: 600;
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--green-dark);
  cursor: pointer;
}
.sec-head-link:hover { gap: 12px; }

/* ============================================
   Category cards
   ============================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.cat-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.cat-card:hover { transform: translateY(-3px); border-color: var(--green); box-shadow: var(--shadow-md); }
.cat-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--r-full);
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--green-dark);
}
.cat-name { font-family: var(--f-display); font-size: 17px; color: var(--green-deep); margin-bottom: 4px; }
.cat-count { font-size: 11px; color: var(--ink-3); letter-spacing: 0.04em; }

/* ============================================
   Product cards
   ============================================ */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.prod-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}
.prod-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--green); }
.prod-img {
  aspect-ratio: 1 / 1;
  background: var(--cream-2);
  position: relative;
  overflow: hidden;
}
.prod-img-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.prod-img-stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0 14px, rgba(15,61,32,0.05) 14px 15px);
}
.prod-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  background: var(--green-dark);
  color: var(--cream);
  z-index: 2;
}
.prod-badge-gold { background: var(--gold); color: var(--green-deep); }
.prod-badge-brick { background: var(--brick); color: var(--cream); }
.prod-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(251,248,240,0.92);
  border-radius: var(--r-full);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  z-index: 2;
  transition: all 0.15s;
}
.prod-wishlist:hover { color: var(--brick); }
.prod-wishlist.on { color: var(--brick); background: var(--cream); }
.prod-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.prod-cat { font-size: 11px; color: var(--ink-3); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.prod-name { font-family: var(--f-display); font-size: 18px; color: var(--green-deep); line-height: 1.2; min-height: 44px; }
.prod-meta { display: flex; gap: 6px; font-size: 11px; color: var(--ink-3); margin-top: 2px; }
.prod-meta-pill {
  border: 1px solid var(--line);
  padding: 3px 8px;
  border-radius: var(--r-full);
  letter-spacing: 0.04em;
}
.prod-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.prod-price { font-family: var(--f-display); font-size: 22px; color: var(--green-deep); }
.prod-price-old { font-family: var(--f-body); font-size: 13px; color: var(--ink-3); text-decoration: line-through; margin-right: 6px; font-weight: 500; }
.prod-add {
  width: 38px;
  height: 38px;
  border-radius: var(--r-full);
  background: var(--green-dark);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.prod-add:hover { background: var(--gold); color: var(--green-deep); transform: scale(1.08); }

/* Product image variations (placeholder bottles) */
.bottle {
  width: 38%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* ============================================
   Edukacja / Info banner
   ============================================ */
.edu {
  background: var(--green-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.edu::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent 0 60px, rgba(212,164,55,0.04) 60px 61px);
  pointer-events: none;
}
.edu-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.edu-visual {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  background:
    radial-gradient(ellipse at 70% 30%, rgba(212,164,55,0.15), transparent 60%),
    linear-gradient(180deg, #143d22 0%, #06200f 100%);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212,164,55,0.2);
}
.edu h2 { color: var(--cream); margin: 16px 0 24px; }
.edu p { color: rgba(245,241,232,0.8); font-size: 16px; line-height: 1.7; max-width: 520px; }
.edu-eyebrow { color: var(--gold); }
.edu-points {
  list-style: none;
  padding: 0;
  margin: 36px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.edu-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(245,241,232,0.88);
}
.edu-point-num {
  font-family: var(--f-display);
  color: var(--gold);
  font-size: 16px;
  min-width: 28px;
}

/* ============================================
   Promo banner
   ============================================ */
.promo-banner {
  background: var(--gold);
  color: var(--green-deep);
  border-radius: var(--r-xl);
  padding: 40px 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.promo-banner-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0 24px, rgba(15,61,32,0.05) 24px 25px);
  pointer-events: none;
}
.promo-eyebrow {
  display: inline-block;
  background: var(--green-deep);
  color: var(--gold);
  padding: 6px 12px;
  border-radius: var(--r-full);
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.promo-banner h2 { color: var(--green-deep); margin-bottom: 12px; }
.promo-banner p { font-size: 15px; color: var(--green-dark); margin-bottom: 24px; max-width: 360px; }
.promo-img {
  height: 220px;
  border-radius: var(--r-lg);
  background:
    radial-gradient(ellipse at 50% 20%, rgba(15,61,32,0.2), transparent 60%),
    linear-gradient(170deg, var(--green) 0%, var(--green-deep) 100%);
  position: relative;
  overflow: hidden;
}

/* ============================================
   Blog cards
   ============================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { cursor: pointer; }
.blog-img {
  aspect-ratio: 2 / 1;
  border-radius: var(--r-lg);
  background: var(--green-mist);
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
}
.blog-img-stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, var(--green-soft) 0 18px, var(--paper) 18px 19px);
}
.blog-img-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--green-dark);
  text-transform: uppercase;
  opacity: 0.4;
}
.blog-card:hover .blog-img { transform: translateY(-2px); }
.blog-img { transition: transform 0.2s; }
.blog-meta { display: flex; gap: 16px; font-size: 12px; color: var(--ink-3); margin-bottom: 10px; }
.blog-cat { color: var(--green); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.blog-title { font-family: var(--f-display); font-size: 22px; color: var(--green-deep); line-height: 1.25; margin-bottom: 10px; }
.blog-excerpt { font-size: 14px; color: var(--ink-2); line-height: 1.6; }

/* ============================================
   Newsletter
   ============================================ */
.newsletter {
  background: var(--green-mist);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.newsletter-papel {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 14'><path d='M0,0 L60,0 L60,4 L54,4 L54,12 L48,7 L42,12 L42,4 L36,4 L36,12 L30,7 L24,12 L24,4 L18,4 L18,12 L12,7 L6,12 L6,4 L0,4 Z' fill='%231e7a3d' opacity='0.18'/></svg>");
  background-size: 60px 14px;
  background-repeat: repeat-x;
}
.news-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.news-form { display: flex; gap: 8px; }
.news-form input {
  flex: 1;
  padding: 16px 22px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--line);
  background: var(--paper);
  font-size: 15px;
  outline: none;
  transition: border-color 0.15s;
}
.news-form input:focus { border-color: var(--green); }
.newsletter h2 { font-size: clamp(28px, 3vw, 40px); }
.newsletter p { color: var(--ink-2); font-size: 15px; margin: 12px 0 28px; max-width: 440px; }
.news-fine { font-size: 11px; color: var(--ink-3); margin-top: 12px; letter-spacing: 0.02em; }

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--green-deep);
  color: rgba(245,241,232,0.78);
  padding: 80px 0 0;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
}
.footer-brand p { max-width: 320px; line-height: 1.6; margin: 20px 0 28px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 38px; height: 38px;
  border-radius: var(--r-full);
  background: rgba(245,241,232,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  transition: background 0.15s;
}
.footer-social:hover { background: var(--gold); color: var(--green-deep); }
.footer h4 { font-family: var(--f-body); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 700; }
.footer-links { display: flex; flex-direction: column; gap: 12px; list-style: none; padding: 0; margin: 0; }
.footer-links a { color: rgba(245,241,232,0.78); transition: color 0.15s; cursor: pointer; }
.footer-links a:hover { color: var(--gold); }
.footer-disclaimer {
  border-top: 1px solid rgba(245,241,232,0.12);
  padding: 28px 0;
  font-size: 11px;
  color: rgba(245,241,232,0.55);
  line-height: 1.6;
  max-width: 900px;
}
.footer-bottom {
  border-top: 1px solid rgba(245,241,232,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(245,241,232,0.5);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo { height: 64px; width: auto; filter: brightness(0) invert(1); opacity: 0.95; }

/* ============================================
   Collection page
   ============================================ */
.crumbs { padding: 18px 0; font-size: 12px; color: var(--ink-3); letter-spacing: 0.04em; }
.crumbs a { cursor: pointer; }
.crumbs a:hover { color: var(--green); }
.crumbs-sep { margin: 0 8px; opacity: 0.4; }

.coll-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
  gap: 32px;
}
.coll-head h1 { font-size: clamp(36px, 4vw, 56px); margin-bottom: 12px; }
.coll-head p { color: var(--ink-2); max-width: 520px; font-size: 15px; }

.coll-layout { display: grid; grid-template-columns: 260px 1fr; gap: 48px; padding-bottom: 96px; }
.filters { display: flex; flex-direction: column; gap: 28px; position: sticky; top: 130px; align-self: start; }
.filter-block { border-bottom: 1px solid var(--line); padding-bottom: 24px; }
.filter-block h4 { font-family: var(--f-body); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; color: var(--green-deep); font-weight: 700; }
.filter-opts { display: flex; flex-direction: column; gap: 10px; }
.filter-opt { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-2); cursor: pointer; }
.filter-opt input { accent-color: var(--green); }
.filter-opt-count { color: var(--ink-3); font-size: 12px; margin-left: auto; }
.filter-opt:hover { color: var(--green-dark); }
.price-range {
  display: flex;
  gap: 8px;
  align-items: center;
}
.price-range input {
  width: 80px;
  padding: 8px 10px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 13px;
  outline: none;
}
.coll-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.coll-count { font-size: 13px; color: var(--ink-3); }
.coll-sort { display: flex; align-items: center; gap: 8px; }
.coll-sort select {
  padding: 8px 28px 8px 14px;
  border-radius: var(--r-full);
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 13px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='%231a1f1b'><path d='M2 4 L6 8 L10 4 Z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

/* ============================================
   Product detail
   ============================================ */
.pd-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; padding-bottom: 64px; }
.pd-gallery { display: grid; grid-template-columns: 80px 1fr; gap: 16px; }
.pd-thumbs { display: flex; flex-direction: column; gap: 10px; }
.pd-thumb {
  aspect-ratio: 1;
  border-radius: var(--r-md);
  border: 1.5px solid var(--line);
  background: var(--cream-2);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: border-color 0.15s;
}
.pd-thumb.active { border-color: var(--green-dark); }
.pd-main {
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  background: var(--cream-2);
  overflow: hidden;
  position: relative;
}
.pd-info h1 { font-size: clamp(34px, 3.4vw, 48px); margin-bottom: 12px; line-height: 1.1; }
.pd-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 13px; color: var(--ink-3); }
.pd-stars { display: flex; gap: 2px; color: var(--gold); }
.pd-price-row { display: flex; align-items: baseline; gap: 12px; margin: 20px 0 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.pd-price { font-family: var(--f-display); font-size: 40px; color: var(--green-deep); }
.pd-price-old { font-size: 18px; color: var(--ink-3); text-decoration: line-through; }
.pd-discount {
  background: var(--brick-soft);
  color: var(--brick-dark);
  padding: 4px 10px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
}
.pd-desc { color: var(--ink-2); line-height: 1.7; margin-bottom: 28px; font-size: 15px; }
.pd-opt-label { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: var(--ink-2); margin-bottom: 12px; font-weight: 600; letter-spacing: 0.04em; }
.pd-opt-label span:last-child { color: var(--green-dark); font-weight: 700; }
.pd-opts { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.pd-opt {
  padding: 12px 18px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--line);
  background: var(--paper);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.15s;
  color: var(--ink);
}
.pd-opt:hover { border-color: var(--green); }
.pd-opt.active { border-color: var(--green-dark); background: var(--green-dark); color: var(--cream); }
.pd-actions { display: flex; gap: 12px; margin: 28px 0 32px; }
.pd-qty {
  display: flex; align-items: center;
  border: 1.5px solid var(--line);
  border-radius: var(--r-full);
  background: var(--paper);
  padding: 4px;
}
.pd-qty button {
  width: 36px; height: 36px;
  border-radius: var(--r-full);
  font-size: 18px;
  color: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
}
.pd-qty button:hover { background: var(--cream-2); }
.pd-qty input {
  width: 40px;
  text-align: center;
  border: none;
  background: none;
  font-weight: 700;
  outline: none;
  color: var(--green-deep);
}
.pd-add { flex: 1; padding: 16px; font-size: 15px; }
.pd-trust-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 20px;
  background: var(--green-mist);
  border-radius: var(--r-md);
  margin-bottom: 24px;
}
.pd-trust-item { display: flex; gap: 10px; align-items: center; font-size: 12px; color: var(--green-dark); font-weight: 600; }
.pd-trust-item svg { color: var(--green); flex-shrink: 0; }

.accordion-item { border-top: 1px solid var(--line); }
.accordion-item:last-child { border-bottom: 1px solid var(--line); }
.accordion-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
  font-weight: 700;
  cursor: pointer;
  color: var(--green-deep);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.accordion-body { padding-bottom: 18px; color: var(--ink-2); line-height: 1.7; font-size: 14px; }
.accordion-body ul { padding-left: 18px; }
.accordion-body li { margin-bottom: 6px; }

/* ============================================
   Cart drawer + page
   ============================================ */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 26, 16, 0.5);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: 480px;
  max-width: 100vw;
  background: var(--cream);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.22,.61,.36,1);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.drawer-head h3 { font-size: 22px; }
.drawer-body { flex: 1; overflow-y: auto; padding: 4px 28px; }
.drawer-foot { padding: 24px 28px; border-top: 1px solid var(--line); background: var(--paper); }
.cart-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.cart-row:last-child { border-bottom: none; }
.cart-thumb {
  aspect-ratio: 1;
  background: var(--cream-2);
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
}
.cart-row-name { font-family: var(--f-display); color: var(--green-deep); font-size: 16px; line-height: 1.25; margin-bottom: 4px; }
.cart-row-meta { font-size: 12px; color: var(--ink-3); margin-bottom: 8px; }
.cart-row-bottom { display: flex; align-items: center; justify-content: space-between; }
.cart-qty {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line); border-radius: var(--r-full);
  background: var(--paper);
}
.cart-qty button { width: 28px; height: 28px; font-size: 14px; }
.cart-qty span { padding: 0 8px; font-size: 13px; font-weight: 700; min-width: 24px; text-align: center; }
.cart-row-price { font-family: var(--f-display); color: var(--green-deep); font-size: 18px; }
.cart-remove { font-size: 11px; color: var(--ink-3); text-decoration: underline; cursor: pointer; margin-top: 6px; display: block; }
.cart-empty { padding: 56px 0; text-align: center; color: var(--ink-3); }
.cart-empty h3 { color: var(--green-deep); margin-bottom: 12px; }

.cart-summary-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 8px; }
.cart-summary-row.total { font-weight: 700; color: var(--green-deep); font-size: 18px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.cart-summary-row.total .num { font-family: var(--f-display); font-size: 24px; }

/* Promo code */
.promo-input { display: flex; gap: 6px; margin: 16px 0; }
.promo-input input {
  flex: 1; padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  background: var(--paper); font-size: 13px; outline: none;
}

/* Cart full page */
.cart-page { display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px; padding-bottom: 96px; }
.cart-page-rows .cart-row {
  grid-template-columns: 100px 1fr auto auto;
  gap: 24px;
}
.cart-summary-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  position: sticky;
  top: 130px;
  align-self: start;
}
.cart-summary-box h3 { margin-bottom: 20px; }

/* ============================================
   Checkout
   ============================================ */
.checkout-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; padding-bottom: 96px; }
.checkout-section { margin-bottom: 40px; }
.checkout-section h3 {
  font-family: var(--f-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 6px;
  font-weight: 700;
}
.checkout-section h2 { font-size: 28px; margin-bottom: 20px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row.full { grid-column: 1 / -1; }
.form-row label { font-size: 12px; font-weight: 600; color: var(--ink-2); letter-spacing: 0.04em; }
.form-row input, .form-row select {
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  background: var(--paper);
  font-size: 14px;
  outline: none;
  color: var(--ink);
  transition: border-color 0.15s;
}
.form-row input:focus, .form-row select:focus { border-color: var(--green); }
.delivery-opts, .pay-opts { display: flex; flex-direction: column; gap: 10px; }
.delivery-opt, .pay-opt {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  background: var(--paper);
  cursor: pointer;
  transition: all 0.15s;
}
.delivery-opt.active, .pay-opt.active { border-color: var(--green-dark); background: var(--green-mist); }
.delivery-radio {
  width: 18px; height: 18px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  flex-shrink: 0;
  position: relative;
}
.delivery-opt.active .delivery-radio, .pay-opt.active .delivery-radio { border-color: var(--green-dark); }
.delivery-opt.active .delivery-radio::after, .pay-opt.active .delivery-radio::after {
  content: ''; position: absolute; inset: 3px; border-radius: 999px; background: var(--green-dark);
}
.delivery-name { flex: 1; font-weight: 600; color: var(--green-deep); }
.delivery-sub { font-size: 12px; color: var(--ink-3); font-weight: 400; margin-top: 2px; }
.delivery-price { font-weight: 700; color: var(--green-deep); }
.checkout-summary {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  position: sticky;
  top: 130px;
  align-self: start;
}
.order-rows { margin-bottom: 20px; display: flex; flex-direction: column; gap: 14px; }
.order-row { display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; align-items: center; }
.order-row .cart-thumb { aspect-ratio: 1; }
.order-row-name { font-size: 13px; color: var(--green-deep); font-weight: 600; }
.order-row-qty { font-size: 11px; color: var(--ink-3); }
.order-row-price { font-family: var(--f-display); font-size: 15px; color: var(--green-deep); }

/* ============================================
   About page
   ============================================ */
.about-hero { padding: var(--s-9) 0 0; }
.about-hero-inner { max-width: 720px; }
.about-hero h1 { font-size: clamp(48px, 6vw, 84px); line-height: 1.0; margin: 20px 0 24px; }
.about-hero p { font-size: 18px; color: var(--ink-2); line-height: 1.7; }
.about-img-band {
  margin: 64px calc(-1 * var(--pad-x)) 0;
  height: 480px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212,164,55,0.15), transparent 60%),
    linear-gradient(180deg, var(--green) 0%, var(--green-deep) 100%);
  position: relative;
  overflow: hidden;
}
.about-img-band-pattern {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0 30px, rgba(212,164,55,0.05) 30px 31px);
}
.about-img-band-label {
  position: absolute; bottom: 24px; left: 32px;
  font-family: var(--f-mono); font-size: 11px; color: rgba(245,241,232,0.5);
  letter-spacing: 0.1em; text-transform: uppercase;
}

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.value-card {
  padding: 32px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.value-num {
  font-family: var(--f-mono);
  color: var(--gold-dark);
  font-size: 11px;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}
.value-card h3 { font-size: 24px; margin-bottom: 12px; }
.value-card p { color: var(--ink-2); font-size: 14px; line-height: 1.6; }

.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-grid h2 { margin-bottom: 24px; }
.story-grid p { color: var(--ink-2); font-size: 15px; line-height: 1.7; margin-bottom: 16px; max-width: 480px; }
.story-img {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  background:
    repeating-linear-gradient(45deg, var(--green-soft) 0 24px, var(--paper) 24px 25px);
  border: 1px solid var(--line);
  position: relative;
}
.story-img-label {
  position: absolute; bottom: 20px; left: 24px;
  font-family: var(--f-mono); font-size: 10px;
  color: var(--green-dark);
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* Blog page list */
.blog-list-head { padding: var(--s-9) 0 var(--s-6); }
.blog-list-head h1 { font-size: clamp(48px, 5.6vw, 76px); margin: 16px 0 16px; }
.blog-list-head p { font-size: 16px; color: var(--ink-2); max-width: 520px; }
.blog-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; padding-bottom: 96px; }
.blog-list .blog-card { padding: 0; }

/* ============================================
   Toast
   ============================================ */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--green-deep);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  z-index: 300;
  opacity: 0;
  transition: all 0.3s;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast svg { color: var(--gold); }

/* ============================================
   Responsive (basic — mobile is secondary)
   ============================================ */
@media (max-width: 980px) {
  .hero-grid, .edu-grid, .coll-layout, .pd-layout, .cart-page, .checkout-layout, .news-inner, .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .prod-grid, .values-grid, .blog-grid, .blog-list { grid-template-columns: repeat(2, 1fr); }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-search { display: none; }
  .nav-inner { overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; }
  .filters { position: static; }
  .drawer { width: 100%; }
}


/* ============================================
   Shopify-specific: accordion vanilla state
   ============================================ */
.accordion-body { display: none; }
.accordion-item.open .accordion-body { display: block; }
.accordion-item .accordion-head svg { transition: transform 0.2s ease; }
.accordion-item.open .accordion-head svg { transform: rotate(180deg); }

/* Customer account tables */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--green-deep);
  color: var(--cream);
  padding: 12px 20px;
  z-index: 9999;
  border-radius: 0 0 8px 0;
}
.skip-to-content:focus { top: 0; }

/* Header logo link unstyled */
.header-logo-link { display: inline-flex; }

/* Cart-thumb fix for Shopify images */
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
