/* =========================================================
   Casa Luma Decor — New Design
   Boho-chic decor retail · Spanish-first · Catalog mode
   Design system: Airbnb + Notion blend, applying the 20
   power-design principles (8pt grid, 60-30-10, AAA contrast,
   single accent, F-pattern hierarchy, modular type scale).
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* 60-30-10 palette
     60% dominant: ivory + cream
     30% secondary: stone, bark, sage, clay
     10% accent: terracotta */
  --cl-ivory:       #f8f3e9;   /* dominant background */
  --cl-cream:       #f1ead9;   /* secondary surface (cards on ivory) */
  --cl-paper:       #fbf7ef;   /* lightest surface */
  --cl-sand:        #e8dcc4;   /* hairline + tinted surface */

  --cl-stone:       #a89a82;   /* muted text + secondary CTA border */
  --cl-bark:        #6b5840;   /* body text */
  --cl-ink:         #3a2f22;   /* headings */

  --cl-sage:        #9aa884;   /* sage secondary */
  --cl-sage-deep:   #6f7d5a;
  --cl-clay:        #c89578;   /* clay tone — used for italics, hairlines */

  --cl-terracotta:      #c1623a;  /* SINGLE accent */
  --cl-terracotta-deep: #9d4929;  /* hover */

  --cl-hairline: rgba(58, 47, 34, 0.12);
  --cl-shadow:   0 1px 2px rgba(58, 47, 34, 0.05),
                 0 8px 24px rgba(58, 47, 34, 0.06);
  --cl-shadow-lift: 0 2px 4px rgba(58, 47, 34, 0.06),
                    0 16px 40px rgba(58, 47, 34, 0.10);

  /* Type — 1.333 modular scale on a 16px base, rounded to 8pt
     Display: 64 → 48 → 36 (italic Playfair)
     UI:      24 → 20 → 18 → 16 → 14 (Inter) */
  --cl-font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --cl-font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* 8pt spacing scale */
  --s-1:  8px;
  --s-2:  16px;
  --s-3:  24px;
  --s-4:  32px;
  --s-5:  48px;
  --s-6:  64px;
  --s-7:  96px;
  --s-8:  128px;

  /* Radii — boho-friendly soft corners */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-pill: 999px;

  --container: 1200px;
  --nav-h: 108px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--cl-font-body);
  font-size: 17px;             /* body ≥16 */
  line-height: 1.65;           /* body line-height 1.4–1.6 (a touch open) */
  color: var(--cl-bark);
  background: var(--cl-ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cl-bark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--cl-terracotta); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 var(--s-4); }
.section { padding: var(--s-7) 0; }
.section--tight { padding: var(--s-6) 0; }
.section--cream { background: var(--cl-cream); }
.section--ivory { background: var(--cl-ivory); }
.section--paper { background: var(--cl-paper); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--cl-font-display);
  color: var(--cl-ink);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin: 0 0 var(--s-3);
}
h1 { font-size: clamp(40px, 6vw, 64px); }
h2 { font-size: clamp(32px, 4.5vw, 48px); }
h3 { font-size: clamp(22px, 2.6vw, 28px); line-height: 1.25; }
h4 { font-size: 20px; line-height: 1.3; }

.display-italic { font-style: italic; font-weight: 400; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--cl-font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cl-clay);
  margin: 0 0 var(--s-3);
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--cl-clay);
  opacity: 0.5;
}
.eyebrow--left::after { display: none; }

.lede {
  font-size: 19px;
  line-height: 1.7;
  color: var(--cl-bark);
  max-width: 58ch;
}
.muted { color: var(--cl-stone); }
.italic-quote {
  font-family: var(--cl-font-display);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.45;
  color: var(--cl-ink);
}

/* ---------- Buttons (one accent, multiple shapes) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-1);
  padding: 14px 28px;
  font-family: var(--cl-font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--cl-terracotta);
  color: #fff;
}
.btn--primary:hover { background: var(--cl-terracotta-deep); color: #fff; transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--cl-ink);
  border-color: var(--cl-ink);
}
.btn--ghost:hover { background: var(--cl-ink); color: #fff; }
.btn--sage {
  background: var(--cl-sage);
  color: #fff;
}
.btn--sage:hover { background: var(--cl-sage-deep); color: #fff; transform: translateY(-1px); }
.btn--text {
  padding: 0;
  background: none;
  color: var(--cl-terracotta);
  letter-spacing: 0.12em;
  border-radius: 0;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}
.btn--text:hover { color: var(--cl-terracotta-deep); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 243, 233, 0.92);
  backdrop-filter: saturate(120%) blur(10px);
  -webkit-backdrop-filter: saturate(120%) blur(10px);
  border-bottom: 1px solid var(--cl-hairline);
}
.site-header__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--s-2);
}
.brand img {
  height: 88px;
  width: auto;
  display: block;
  /* Crisp rendering for the soft gold lineart on cream */
  image-rendering: -webkit-optimize-contrast;
}
.brand__name {
  font-family: var(--cl-font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--cl-ink);
  display: none; /* logo speaks for itself */
}

/* nav */
.nav { display: flex; align-items: center; gap: var(--s-4); }
.nav a {
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cl-bark);
  position: relative;
  padding: 8px 0;
}
.nav a.is-active,
.nav a:hover { color: var(--cl-terracotta); }
.nav a.is-active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--cl-terracotta);
}
.nav__group { position: relative; }
.nav__group > button {
  font: inherit;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cl-bark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
}
.nav__group:hover > button { color: var(--cl-terracotta); }
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 220px;
  padding: var(--s-2);
  background: var(--cl-paper);
  border: 1px solid var(--cl-hairline);
  border-radius: var(--r-md);
  box-shadow: var(--cl-shadow-lift);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .2s ease;
}
.nav__group:hover .nav__dropdown,
.nav__group:focus-within .nav__dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__dropdown a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
  color: var(--cl-bark);
}
.nav__dropdown a:hover { background: var(--cl-cream); color: var(--cl-terracotta); }
.nav__dropdown a:hover::after { display: none; }
.nav__dropdown a span { font-size: 12px; color: var(--cl-stone); font-variant-numeric: tabular-nums; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cl-ink);
  transition: all .25s ease;
  position: relative;
}
.nav-toggle span::before { content: ""; position: absolute; top: -7px; left: 0; right: 0; }
.nav-toggle span::after  { content: ""; position: absolute; top:  7px; left: 0; right: 0; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.is-open span::after  { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Hero ----------
   Hero supports two modes via class swap:
   - .hero--photo  (default) cream gradient overlay + storefront photo background
   - .hero--video  background <video> element with cream scrim on top
   The inner .hero__inner markup (logo + headline + lede + CTAs) is identical in
   both modes — only the background changes. */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--s-7) var(--s-4);
  isolation: isolate;
  overflow: hidden;
  background-color: var(--cl-ivory);
}
/* Default: a bare .hero (no modifier) falls back to the photo treatment so
   the static HTML keeps working without changes. */
.hero:not(.hero--video) {
  background:
    linear-gradient(rgba(248, 243, 233, 0.45), rgba(248, 243, 233, 0.78)),
    url('../images/mood-05.jpg') center 38% / cover no-repeat;
}
.hero--video .hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero--video .hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(248, 243, 233, 0.45), rgba(248, 243, 233, 0.78));
  z-index: 1;
  pointer-events: none;
}
.hero__inner { max-width: 760px; position: relative; z-index: 2; }
.hero__logo {
  display: block;
  width: clamp(140px, 18vw, 200px);
  height: auto;
  margin: 0 auto var(--s-3);
  /* slight drop-shadow to lift the gold off the photo wash */
  filter: drop-shadow(0 2px 12px rgba(255, 255, 255, 0.45))
          drop-shadow(0 1px 2px rgba(58, 47, 34, 0.08));
}
.hero h1 {
  font-style: italic;
  font-weight: 400;
  margin-bottom: var(--s-3);
}
.hero .lede {
  margin: 0 auto var(--s-5);
  color: var(--cl-bark);
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  justify-content: center;
}

/* ---------- Section heading block ---------- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--s-5);
}
.section-head--left {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

/* ---------- Collections grid ---------- */
.collections {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
  margin-top: var(--s-5);
}
.collection-card {
  display: flex;
  flex-direction: column;
  padding: var(--s-5) var(--s-4);
  background: var(--cl-paper);
  border-radius: var(--r-lg);
  border: 1px solid var(--cl-hairline);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.collection-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 3px solid transparent;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  transition: border-color .3s ease;
  pointer-events: none;
}
.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--cl-shadow-lift);
  color: var(--cl-bark);
}
.collection-card:hover::before { border-top-color: var(--cl-terracotta); }
.collection-card__count {
  font-family: var(--cl-font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--cl-clay);
  margin-bottom: var(--s-2);
}
.collection-card h3 { margin-bottom: var(--s-2); }
.collection-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--cl-bark);
  margin: 0 0 var(--s-3);
  flex: 1;
}
.collection-card__link {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cl-terracotta);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.collection-card__link::after { content: "→"; transition: transform .3s ease; }
.collection-card:hover .collection-card__link::after { transform: translateX(4px); }

/* ---------- Sobre (about) — 2-col ---------- */
.sobre {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--s-6);
  align-items: center;
}
.sobre__body p { margin: 0 0 var(--s-2); }
.sobre__body p:last-of-type { margin-bottom: var(--s-4); }
.sobre__photo {
  position: relative;
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--cl-shadow-lift);
}
.sobre__photo img { width: 100%; height: 100%; object-fit: cover; }
.sobre__photo::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: calc(var(--r-lg) - 4px);
  pointer-events: none;
}

/* ---------- Encuéntranos (contact) ---------- */
.encuentranos {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.contact-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  margin: var(--s-5) auto;
  padding: var(--s-4);
  border-top: 1px solid var(--cl-hairline);
  border-bottom: 1px solid var(--cl-hairline);
}
.contact-meta__item h4 {
  font-family: var(--cl-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cl-stone);
  margin: 0 0 8px;
}
.contact-meta__item p { margin: 0; font-size: 15px; color: var(--cl-ink); line-height: 1.5; }
.contact-pills {
  display: flex;
  gap: var(--s-2);
  justify-content: center;
  flex-wrap: wrap;
}
.contact-pills .icon { width: 18px; height: 18px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--cl-ink);
  color: var(--cl-cream);
  padding: var(--s-6) 0 var(--s-4);
  margin-top: var(--s-7);
}
.site-footer a { color: var(--cl-cream); }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--s-5);
  margin-bottom: var(--s-5);
}
.footer-logo {
  display: block;
  width: 200px;
  height: auto;
  margin-bottom: var(--s-3);
  /* Invert the gold lineart to a warm ivory for the dark footer */
  filter: brightness(0) invert(1) sepia(0.18) saturate(.55) opacity(0.92);
}
.footer-grid h5 {
  font-family: var(--cl-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 var(--s-2);
  opacity: 0.7;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 8px; font-size: 15px; }
.footer-tagline {
  font-family: var(--cl-font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.35;
  color: #fff;
  margin: 0 0 var(--s-2);
  max-width: 32ch;
}
.footer-meta {
  font-size: 13px;
  opacity: 0.7;
  line-height: 1.6;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--s-3);
  border-top: 1px solid rgba(241, 234, 217, 0.12);
  font-size: 13px;
  opacity: 0.6;
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: var(--s-3);
  right: var(--s-3);
  max-width: 380px;
  padding: var(--s-3);
  background: var(--cl-paper);
  border: 1px solid var(--cl-hairline);
  border-radius: var(--r-md);
  box-shadow: var(--cl-shadow-lift);
  z-index: 100;
  transform: translateY(120%);
  transition: transform .35s ease;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner h4 {
  font-family: var(--cl-font-display);
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--cl-ink);
}
.cookie-banner p {
  font-size: 13px;
  line-height: 1.55;
  margin: 0 0 var(--s-2);
  color: var(--cl-bark);
}
.cookie-banner__actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-banner .btn { padding: 8px 18px; font-size: 12px; }

/* =========================================================
   TIENDA / Category / Product list
   ========================================================= */
.page-hero {
  padding: var(--s-7) 0 var(--s-5);
  text-align: center;
  background: var(--cl-paper);
  border-bottom: 1px solid var(--cl-hairline);
}
.page-hero h1 { font-style: italic; margin-bottom: var(--s-2); }
.page-hero .lede { margin: 0 auto; max-width: 60ch; }
.breadcrumb {
  font-size: 13px;
  color: var(--cl-stone);
  margin-bottom: var(--s-3);
  letter-spacing: 0.04em;
}
.breadcrumb a { color: var(--cl-stone); }
.breadcrumb a:hover { color: var(--cl-terracotta); }
.breadcrumb span { margin: 0 8px; opacity: 0.5; }

/* Toolbar */
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-2);
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--cl-hairline);
  margin-bottom: var(--s-4);
}
.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-pill {
  padding: 8px 18px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cl-bark);
  background: var(--cl-paper);
  border: 1px solid var(--cl-hairline);
  border-radius: var(--r-pill);
  transition: all .2s ease;
}
.filter-pill:hover { color: var(--cl-terracotta); border-color: var(--cl-terracotta); }
.filter-pill.is-active {
  background: var(--cl-ink);
  color: #fff;
  border-color: var(--cl-ink);
}
.filter-pill__count {
  font-size: 11px;
  margin-left: 6px;
  opacity: 0.6;
  font-variant-numeric: tabular-nums;
}
.sort-select {
  font: inherit;
  font-size: 14px;
  padding: 8px 36px 8px 14px;
  border: 1px solid var(--cl-hairline);
  border-radius: var(--r-pill);
  background: var(--cl-paper)
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='none' stroke='%236b5840' stroke-width='1.5' d='M1 1l4 4 4-4'/></svg>")
    no-repeat right 14px center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: var(--cl-bark);
  cursor: pointer;
}
.result-count {
  font-family: var(--cl-font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--cl-clay);
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3) var(--s-3);
}
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--cl-paper);
  border: 1px solid var(--cl-hairline);
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  transition: all .3s ease;
}
.product-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--cl-terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
  z-index: 2;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--cl-shadow-lift);
}
.product-card:hover::before { transform: scaleX(1); }

.product-card__media {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--cl-cream), var(--cl-sand));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card__media-mark {
  font-family: var(--cl-font-display);
  font-style: italic;
  font-size: 64px;
  color: var(--cl-clay);
  opacity: 0.35;
  letter-spacing: -0.02em;
}
.product-card__cat-chip {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(248, 243, 233, 0.85);
  color: var(--cl-bark);
  border-radius: var(--r-pill);
  backdrop-filter: blur(4px);
}
.product-card__body {
  padding: var(--s-3);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__sku {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cl-stone);
  margin-bottom: 6px;
}
.product-card__title {
  font-family: var(--cl-font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--cl-ink);
  margin: 0 0 8px;
  line-height: 1.25;
}
.product-card__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--cl-bark);
  margin: 0 0 var(--s-3);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.product-card__cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-2);
  margin-top: auto;
}
.product-card__link {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cl-terracotta);
  font-weight: 500;
}
.product-card__wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--r-pill);
  background: var(--cl-sage);
  color: #fff;
  transition: all .25s ease;
}
.product-card__wa:hover { background: var(--cl-sage-deep); color: #fff; transform: scale(1.08); }
.product-card__wa svg { width: 16px; height: 16px; }

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: var(--s-6) 0 var(--s-2);
}
.pagination a, .pagination span {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: var(--r-sm);
  color: var(--cl-bark);
}
.pagination a:hover { background: var(--cl-cream); color: var(--cl-terracotta); }
.pagination .is-current {
  background: var(--cl-ink);
  color: #fff;
}

/* =========================================================
   Product detail page
   ========================================================= */
.product-detail {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--s-6);
  align-items: start;
}
.product-detail__media {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--cl-cream), var(--cl-sand));
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-detail__media-mark {
  font-family: var(--cl-font-display);
  font-style: italic;
  font-size: 160px;
  color: var(--cl-clay);
  opacity: 0.3;
}
.product-detail__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-1);
  margin-top: var(--s-2);
}
.product-detail__thumbs .thumb {
  aspect-ratio: 1;
  background: var(--cl-cream);
  border-radius: var(--r-sm);
  border: 1px solid var(--cl-hairline);
}
.product-detail__info .sku {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cl-stone);
  margin-bottom: var(--s-2);
}
.product-detail__info h1 {
  font-style: italic;
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: var(--s-3);
}
.product-detail__desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--cl-bark);
  margin: 0 0 var(--s-4);
}
.product-spec {
  border-top: 1px solid var(--cl-hairline);
  padding-top: var(--s-3);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px 24px;
  font-size: 14px;
  margin-bottom: var(--s-4);
}
.product-spec dt {
  color: var(--cl-stone);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}
.product-spec dd { margin: 0; color: var(--cl-ink); }
.product-detail__ctas { display: flex; gap: var(--s-2); flex-wrap: wrap; margin-bottom: var(--s-3); }
.product-detail__note {
  font-size: 13px;
  color: var(--cl-stone);
  background: var(--cl-cream);
  border-left: 3px solid var(--cl-sage);
  padding: var(--s-2);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

/* =========================================================
   Bryela landing
   ========================================================= */
.bryela-hero {
  text-align: center;
  padding: var(--s-7) var(--s-3) var(--s-6);
  background:
    radial-gradient(ellipse at top, var(--cl-paper), var(--cl-ivory) 70%);
}
.bryela-hero__logo {
  /* No pill, no border, no plaque — let the lineart breathe on cream */
  display: block;
  width: clamp(240px, 32vw, 360px);
  height: auto;
  margin: 0 auto var(--s-4);
  background: none;
  border: 0;
  filter: drop-shadow(0 2px 8px rgba(58, 47, 34, 0.08));
}
.bryela-hero__logo img {
  width: 100%;
  height: auto;
  display: block;
}
.bryela-hero h1 {
  font-style: italic;
  font-size: clamp(44px, 6vw, 72px);
  margin-bottom: var(--s-2);
}
.bryela-hero .tagline {
  font-family: var(--cl-font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--cl-clay);
  margin-bottom: var(--s-4);
}
.bryela-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
  margin: var(--s-5) 0;
}
.bryela-pillar {
  text-align: center;
  padding: var(--s-3);
}
.bryela-pillar h3 { font-style: italic; margin-bottom: 8px; }
.bryela-pillar p { font-size: 15px; color: var(--cl-bark); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .collections     { grid-template-columns: repeat(2, 1fr); }
  .product-grid    { grid-template-columns: repeat(3, 1fr); }
  .footer-grid     { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
  .product-detail  { grid-template-columns: 1fr; gap: var(--s-4); }
  .sobre           { grid-template-columns: 1fr; gap: var(--s-4); }
  .bryela-pillars  { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .section { padding: var(--s-6) 0; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    background: var(--cl-paper);
    border-bottom: 1px solid var(--cl-hairline);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--s-3);
    transform: translateY(-110%);
    transition: transform .3s ease;
    box-shadow: var(--cl-shadow-lift);
  }
  .nav.is-open { transform: translateY(0); }
  .nav a, .nav__group > button {
    padding: 14px 8px;
    border-bottom: 1px solid var(--cl-hairline);
    text-align: left;
    width: 100%;
  }
  .nav__group { width: 100%; }
  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: var(--cl-cream);
    padding: var(--s-1) 0;
    margin: 0 0 var(--s-2);
    display: none;
  }
  .nav__group.is-open .nav__dropdown { display: block; }
  .product-grid    { grid-template-columns: repeat(2, 1fr); }
  .collections     { grid-template-columns: 1fr; }
  .contact-meta    { grid-template-columns: 1fr; gap: var(--s-2); }
  .footer-grid     { grid-template-columns: 1fr; gap: var(--s-3); }
  .cookie-banner   { left: var(--s-2); right: var(--s-2); max-width: none; bottom: var(--s-2); }
  .shop-toolbar    { flex-direction: column; align-items: flex-start; }
  .filter-pills    { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; width: 100%; }
  .filter-pill     { white-space: nowrap; flex-shrink: 0; }
  .product-detail__media-mark { font-size: 96px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .hero { min-height: 70vh; }
  .product-card__media { aspect-ratio: 16 / 11; }
}

/* ---------- Accessibility ---------- */
:focus-visible {
  outline: 2px solid var(--cl-terracotta);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
