/* =============================================================
   The Little Corner — styles.css
   Mobile-first. Paleta: crema hueso, café curtido, cobre, café cuero.
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --cream:      #F7F2E9;
  --paper:      #FFFCF6;
  --sand:       #EDE3D1;
  --sand-2:     #E2D4BC;
  --ink:        #3E2A1B;
  --ink-deep:   #22150B;
  --ink-soft:   #5C4633;
  --mute:       #86725F;
  --copper:     #A67C3D;
  --copper-lt:  #C79A55;
  --leather:    #6B4226;
  --line:       rgba(62, 42, 27, .14);
  --line-2:     rgba(62, 42, 27, .24);
  --ok:         #4E6A37;
  --err:        #A3392B;
  --wa:         #25D366;

  --serif: "Zilla Slab", "Rockwell", "Roboto Slab", Georgia, serif;
  --sans:  "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;

  --gutter: 1.15rem;
  --maxw: 1240px;
  --radius: 4px;
  --radius-lg: 10px;
  --header-h: 64px;

  --shadow-sm: 0 1px 2px rgba(34, 21, 11, .06), 0 2px 8px rgba(34, 21, 11, .06);
  --shadow:    0 10px 30px -12px rgba(34, 21, 11, .28);
  --shadow-lg: 0 30px 60px -20px rgba(34, 21, 11, .45);

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
body.is-locked { overflow: hidden; }
img, svg, video, picture { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; text-wrap: balance; }
::selection { background: var(--copper); color: var(--ink-deep); }
:focus-visible { outline: 2px solid var(--copper); outline-offset: 3px; border-radius: 3px; }

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link { position: fixed; top: -100px; left: 1rem; z-index: 9999; padding: .6rem 1rem; background: var(--ink); color: var(--cream); border-radius: var(--radius); font-weight: 600; }
.skip-link:focus { top: 1rem; }
.sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: 4.5rem; position: relative; }
.section--tight { padding-block: 3rem; }
.section--paper { background: var(--paper); }
.section--sand { background: var(--sand); }
.section--dark { background: var(--ink); color: var(--cream); }
.center { text-align: center; }
.muted { color: var(--mute); }

.kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-size: .72rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--copper);
}
.kicker::before { content: ""; width: 22px; height: 0; border-top: 2px dashed currentColor; }
.center .kicker::after { content: ""; width: 22px; height: 0; border-top: 2px dashed currentColor; }

.h-display { font-size: clamp(2.1rem, 8.4vw, 4.4rem); font-weight: 600; }
.h-section { font-size: clamp(1.8rem, 6.2vw, 3rem); margin-top: .7rem; }
.h-section em, .h-display em { font-style: italic; font-weight: 500; color: var(--copper); }
.lead { font-size: 1.05rem; color: var(--ink-soft); max-width: 58ch; margin-top: 1rem; }
.section--dark .lead { color: rgba(247, 242, 233, .78); }
.center .lead { margin-inline: auto; }
.section-head { margin-bottom: 2.25rem; }

/* Costura — detalle de puntada que atraviesa la marca */
.stitch { height: 0; border: 0; border-top: 2px dashed var(--copper); opacity: .55; margin-block: 1.5rem; }
.stitch-frame { position: relative; }
.stitch-frame::after {
  content: ""; position: absolute; inset: 8px; border: 1.5px dashed rgba(166, 124, 61, .6);
  border-radius: calc(var(--radius-lg) - 4px); pointer-events: none;
}

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  --bg: var(--copper); --fg: var(--ink-deep); --bd: var(--copper);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 50px; padding: .8rem 1.5rem;
  background: var(--bg); color: var(--fg); border: 1.5px solid var(--bd);
  border-radius: var(--radius); font-weight: 700; font-size: .92rem; letter-spacing: .06em; text-transform: uppercase;
  transition: background .3s var(--ease-out), color .3s var(--ease-out), border-color .3s var(--ease-out), transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
  text-align: center; line-height: 1.2; white-space: nowrap;
}
.btn:hover { --bg: var(--leather); --fg: var(--cream); --bd: var(--leather); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--dark { --bg: var(--leather); --fg: var(--cream); --bd: var(--leather); }
.btn--dark:hover { --bg: var(--ink); --bd: var(--ink); }
.btn--ghost { --bg: transparent; --fg: var(--ink); --bd: var(--line-2); }
.btn--ghost:hover { --bg: var(--ink); --fg: var(--cream); --bd: var(--ink); }
.btn--ghost-light { --bg: transparent; --fg: var(--cream); --bd: rgba(247, 242, 233, .5); }
.btn--ghost-light:hover { --bg: var(--cream); --fg: var(--ink); --bd: var(--cream); }
.btn--wa { --bg: var(--leather); --fg: var(--cream); --bd: var(--leather); }
.btn--wa:hover { --bg: #1f8f4b; --bd: #1f8f4b; --fg: #fff; }
.btn--block { width: 100%; }
.btn--sm { min-height: 42px; padding: .55rem 1rem; font-size: .8rem; }
.btn[disabled], .btn.is-loading { opacity: .6; pointer-events: none; }
.btn.is-loading::after { content: ""; width: 16px; height: 16px; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; animation: spin .7s linear infinite; }

.link-arrow { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; font-size: .9rem; letter-spacing: .04em; border-bottom: 1.5px solid var(--copper); padding-bottom: 2px; transition: gap .3s var(--ease-out), color .3s; }
.link-arrow:hover { gap: .8rem; color: var(--leather); }

/* =============================================================
   5. Announcement + Header
   ============================================================= */
.announce { background: var(--ink); color: var(--cream); font-size: .76rem; letter-spacing: .06em; text-align: center; padding: .5rem var(--gutter); }
.announce strong { color: var(--copper-lt); font-weight: 700; }

.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(247, 242, 233, .94);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
@supports (backdrop-filter: blur(10px)) { .header { background: rgba(247, 242, 233, .82); backdrop-filter: blur(12px) saturate(140%); -webkit-backdrop-filter: blur(12px) saturate(140%); } }
.header.is-scrolled { border-color: var(--line); box-shadow: 0 6px 20px -16px rgba(34, 21, 11, .5); }
.header-inner { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 1.5px var(--copper); }
.brand-name { font-family: var(--serif); font-weight: 700; font-size: 1.12rem; line-height: 1; letter-spacing: -.01em; }
.brand-name small { display: block; font-family: var(--sans); font-size: .58rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--copper); margin-top: 4px; }
.nav { display: none; }
.nav a { position: relative; font-size: .88rem; font-weight: 600; padding: .3rem 0; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; border-top: 2px dashed var(--copper); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease-out); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: .15rem; }
.icon-btn { position: relative; width: 44px; height: 44px; display: inline-grid; place-items: center; border-radius: 50%; transition: background .25s; }
.icon-btn:hover { background: var(--sand); }
.icon-btn svg { width: 22px; height: 22px; }
.cart-count {
  position: absolute; top: 4px; right: 2px; min-width: 19px; height: 19px; padding: 0 5px;
  display: grid; place-items: center; border-radius: 99px;
  background: var(--copper); color: var(--ink-deep); font-size: .68rem; font-weight: 800;
  transform: scale(0); transition: transform .35s var(--ease-out);
}
.cart-count.has-items { transform: scale(1); }
.cart-count.bump { animation: bump .5s var(--ease-out); }
.hide-mobile { display: none !important; }

/* Mobile menu */
.menu-sheet {
  position: fixed; inset: 0; z-index: 90; background: var(--ink); color: var(--cream);
  display: flex; flex-direction: column; padding: 1rem var(--gutter) 2rem;
  transform: translateY(-100%); transition: transform .5s var(--ease-out); visibility: hidden;
}
.menu-sheet.is-open { transform: none; visibility: visible; }
.menu-sheet-top { display: flex; justify-content: space-between; align-items: center; height: 48px; }
.menu-sheet nav { margin-top: 2rem; display: grid; gap: .2rem; }
.menu-sheet nav a { font-family: var(--serif); font-size: 2rem; font-weight: 600; padding: .35rem 0; border-bottom: 1px dashed rgba(166, 124, 61, .35); display: flex; justify-content: space-between; align-items: center; }
.menu-sheet nav a span { font-family: var(--sans); font-size: .7rem; letter-spacing: .15em; color: var(--copper-lt); text-transform: uppercase; }
.menu-sheet-foot { margin-top: auto; display: grid; gap: .8rem; }

/* =============================================================
   6. Hero
   ============================================================= */
.hero { position: relative; min-height: calc(100vh - var(--header-h) - 34px); min-height: calc(100svh - var(--header-h) - 34px); display: grid; background: var(--ink); color: var(--cream); overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 55% 40%; animation: kenburns 22s var(--ease-soft) infinite alternate; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(34, 21, 11, .1) 0%, rgba(34, 21, 11, .3) 28%, rgba(34, 21, 11, .86) 52%, rgba(34, 21, 11, .96) 100%); }
.hero .kicker { color: var(--copper-lt); }
.hero-content { position: relative; align-self: end; padding: 2rem var(--gutter) 2.2rem; max-width: 720px; }
.hero-title { font-size: clamp(2rem, 8.6vw, 4.1rem); font-weight: 600; line-height: 1.04; max-width: 18ch; }
.hero-title em { font-style: italic; font-weight: 500; color: var(--copper-lt); }
.hero-sub { margin-top: 1rem; font-size: 1rem; color: rgba(247, 242, 233, .82); max-width: 46ch; }
.hero-ctas { display: grid; gap: .7rem; margin-top: 1.6rem; }
.hero-proof { display: flex; flex-wrap: wrap; gap: .4rem 1rem; margin-top: 1.3rem; font-size: .78rem; color: rgba(247, 242, 233, .75); }
.hero-proof span { display: inline-flex; align-items: center; gap: .4rem; }
.hero-proof svg { width: 15px; height: 15px; color: var(--copper-lt); }
.hero-badge {
  position: absolute; top: 1.1rem; right: var(--gutter); width: 92px; height: 92px; border-radius: 50%;
  display: grid; place-items: center; text-align: center; background: rgba(34, 21, 11, .55); border: 1.5px dashed var(--copper-lt);
  font-family: var(--serif); font-size: .78rem; line-height: 1.15; color: var(--cream); padding: .6rem;
}
@supports (backdrop-filter: blur(4px)) { .hero-badge { backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); } }
.hero-badge b { display: block; font-size: 1.35rem; color: var(--copper-lt); }

/* Page hero (interiores) */
.page-hero { background: var(--ink); color: var(--cream); padding-block: 3rem 2.5rem; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 10px; border-top: 2px dashed rgba(166, 124, 61, .45); }
.page-hero--img { padding-block: 4rem 3rem; }
.page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; opacity: .32; }
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(2rem, 7vw, 3.4rem); margin-top: .6rem; }
.page-hero p { color: rgba(247, 242, 233, .75); margin-top: .7rem; max-width: 60ch; }
.crumbs { font-size: .78rem; color: var(--mute); display: flex; gap: .45rem; flex-wrap: wrap; }
.crumbs a:hover { color: var(--copper); }
.page-hero .crumbs { color: rgba(247, 242, 233, .6); }

/* =============================================================
   7. Marquee
   ============================================================= */
.marquee { background: var(--leather); color: var(--cream); overflow: hidden; border-block: 1px solid rgba(0, 0, 0, .15); }
.marquee-track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee-track span { display: inline-flex; align-items: center; gap: 1.4rem; padding: .85rem 0 .85rem 1.4rem; font-family: var(--serif); font-size: 1.05rem; font-style: italic; white-space: nowrap; }
.marquee-track span::after { content: "✦"; font-style: normal; font-size: .7rem; color: var(--copper-lt); }

/* =============================================================
   8. Trust bar
   ============================================================= */
.trust { background: var(--paper); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; gap: 0; }
.trust-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.4rem 0; border-bottom: 1px dashed var(--line-2); }
.trust-item:last-child { border-bottom: 0; }
.trust-icon { flex: none; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: var(--cream); border: 1.5px dashed var(--copper); color: var(--leather); }
.trust-icon svg { width: 26px; height: 26px; }
.trust-item h3 { font-size: 1.12rem; font-weight: 700; }
.trust-item p { font-size: .88rem; color: var(--ink-soft); margin-top: .2rem; }

/* =============================================================
   9. Category rail
   ============================================================= */
.cat-rail { display: grid; grid-auto-flow: column; grid-auto-columns: 42%; gap: .8rem; overflow-x: auto; overflow-y: visible; scroll-snap-type: x mandatory; padding: .2rem var(--gutter) 1rem; margin-inline: calc(var(--gutter) * -1); scrollbar-width: none; }
.cat-rail::-webkit-scrollbar { display: none; }
.cat-card { scroll-snap-align: start; position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3 / 4; background: var(--sand); color: var(--cream); isolation: isolate; }
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); z-index: -2; }
.cat-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(34, 21, 11, .85)); z-index: -1; }
.cat-card:hover img { transform: scale(1.07); }
.cat-card-label { position: absolute; left: .9rem; right: .9rem; bottom: .8rem; }
.cat-card-label strong { display: block; font-family: var(--serif); font-size: 1.2rem; font-weight: 600; }
.cat-card-label small { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--copper-lt); font-weight: 700; }

/* =============================================================
   10. Product grid & card
   ============================================================= */
.filters { display: flex; gap: .5rem; overflow-x: auto; padding-bottom: .5rem; margin-bottom: 1.5rem; scrollbar-width: none; }
.filters::-webkit-scrollbar { display: none; }
.chip { flex: none; padding: .55rem 1rem; border-radius: 99px; border: 1.5px solid var(--line-2); font-size: .82rem; font-weight: 700; background: transparent; transition: all .25s var(--ease-out); white-space: nowrap; }
.chip:hover { border-color: var(--copper); }
.chip.is-active { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.toolbar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 1.2rem; font-size: .85rem; color: var(--mute); }
.select-sm { padding: .5rem 2rem .5rem .8rem; border: 1.5px solid var(--line-2); border-radius: var(--radius); background: var(--paper) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233E2A1B' stroke-width='1.6' fill='none'/%3E%3C/svg%3E") no-repeat right .7rem center; appearance: none; font-size: .85rem; font-weight: 600; color: var(--ink); }

.grid-products { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.6rem .8rem; }
.pcard { display: flex; flex-direction: column; position: relative; }
.pcard-media { position: relative; display: block; aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden; background: var(--sand); }
.pcard-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(var(--s, 1)); transform-origin: var(--o, 50% 50%); transition: transform .9s var(--ease-out), filter .6s; }
.pcard:hover .pcard-media img { transform: scale(calc(var(--s, 1) * 1.06)); filter: saturate(1.08); }
.pcard-badges { position: absolute; top: .55rem; left: .55rem; right: .55rem; display: flex; flex-wrap: wrap; gap: .3rem; pointer-events: none; }
.badge { display: inline-block; padding: .28rem .5rem; border-radius: 3px; font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; background: var(--cream); color: var(--ink); }
.badge--copper { background: var(--copper); color: var(--ink-deep); }
.badge--dark { background: var(--ink); color: var(--cream); }
.badge--ref { position: absolute; left: .55rem; bottom: .55rem; background: rgba(34, 21, 11, .72); color: var(--cream); font-weight: 600; letter-spacing: .04em; text-transform: none; font-size: .64rem; }
.pcard-body { padding-top: .75rem; display: flex; flex-direction: column; gap: .2rem; flex: 1; }
.pcard-line { font-size: .64rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--copper); }
.pcard-name { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; line-height: 1.2; }
.pcard-name a:hover { color: var(--leather); }
.pcard-short { display: none; font-size: .84rem; color: var(--ink-soft); }
.pcard-foot { margin-top: auto; padding-top: .55rem; display: flex; flex-direction: column; gap: .55rem; }
.price { font-weight: 800; font-size: 1.02rem; letter-spacing: .01em; }
.price small { font-weight: 600; color: var(--mute); font-size: .72rem; margin-left: .25rem; }
.price-quote { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--leather); }
.pcard .btn { min-height: 44px; padding: .6rem .7rem; font-size: .72rem; letter-spacing: .05em; width: 100%; }
.pcard .btn.is-added { --bg: var(--ok); --bd: var(--ok); --fg: #fff; }

/* =============================================================
   11. Manifesto band / lifestyle
   ============================================================= */
.band { position: relative; color: var(--cream); background: var(--ink); overflow: hidden; }
.band-media { position: absolute; inset: 0; }
.band-media img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.band-inner { position: relative; padding-block: 5.5rem; }
.band blockquote { font-family: var(--serif); font-size: clamp(1.7rem, 6vw, 3rem); font-weight: 500; line-height: 1.15; max-width: 22ch; }
.band blockquote em { color: var(--copper-lt); }
.band cite { display: block; margin-top: 1.2rem; font-style: normal; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(247, 242, 233, .75); }

/* =============================================================
   12. Encargos (línea 3)
   ============================================================= */
.commission-grid { display: grid; gap: 1.2rem; }
.ccard { background: rgba(247, 242, 233, .04); border: 1px solid rgba(247, 242, 233, .12); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: border-color .3s, transform .5s var(--ease-out); }
.ccard:hover { border-color: rgba(199, 154, 85, .6); transform: translateY(-4px); }
.ccard-media { aspect-ratio: 16 / 11; overflow: hidden; position: relative; }
.ccard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out); }
.ccard:hover .ccard-media img { transform: scale(1.05); }
.ccard-body { padding: 1.3rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.ccard h3 { font-size: 1.45rem; }
.ccard p { color: rgba(247, 242, 233, .75); font-size: .92rem; }
.ccard-meta { display: flex; flex-wrap: wrap; gap: .4rem .9rem; font-size: .76rem; color: var(--copper-lt); font-weight: 700; letter-spacing: .04em; margin-top: .2rem; }
.ccard .btn { margin-top: auto; }
.steps { display: grid; gap: 0; margin-top: 3rem; counter-reset: step; border-top: 1px dashed rgba(199, 154, 85, .4); }
.step { display: grid; grid-template-columns: 44px 1fr; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px dashed rgba(199, 154, 85, .4); }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--copper-lt); }
.step h4 { font-size: 1.1rem; }
.step p { font-size: .88rem; color: rgba(247, 242, 233, .7); margin-top: .15rem; }

/* =============================================================
   13. Artesano & proceso
   ============================================================= */
.maker { display: grid; gap: 2rem; }
.maker-media { position: relative; }
.maker-media .main { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 5; }
.maker-media .main img { width: 100%; height: 100%; object-fit: cover; }
.maker-media .inset { position: absolute; right: -.4rem; bottom: -1.4rem; width: 46%; aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; border: 6px solid var(--cream); box-shadow: var(--shadow); }
.maker-media .inset img { width: 100%; height: 100%; object-fit: cover; }
.maker-sign { font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--leather); margin-top: 1.4rem; }
.maker-sign small { display: block; font-family: var(--sans); font-style: normal; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--mute); margin-top: .2rem; }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; margin-top: 1.8rem; border-block: 1px dashed var(--line-2); padding-block: 1.2rem; }
.fact b { display: block; font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--leather); line-height: 1; }
.fact span { font-size: .74rem; color: var(--ink-soft); line-height: 1.3; display: block; margin-top: .35rem; }

.process { display: grid; gap: 1rem; margin-top: 3rem; }
.pstep { display: grid; grid-template-columns: 96px 1fr; gap: 1rem; align-items: center; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: .7rem; }
.pstep-media { aspect-ratio: 1; border-radius: 6px; overflow: hidden; background: var(--sand); }
.pstep-media img { width: 100%; height: 100%; object-fit: cover; }
.pstep small { font-size: .66rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--copper); }
.pstep h4 { font-size: 1.12rem; margin-top: .1rem; }
.pstep p { font-size: .84rem; color: var(--ink-soft); margin-top: .2rem; line-height: 1.45; }

/* Comparativa de valor */
.compare { margin-top: 3rem; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: var(--paper); }
.compare-row { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.compare-row:first-child { border-top: 0; }
.compare-row > div { padding: .85rem 1rem; font-size: .86rem; line-height: 1.45; }
.compare-row .k { grid-column: 1 / -1; padding-bottom: 0; font-size: .66rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--mute); }
.compare-row .them { color: var(--mute); }
.compare-row .us { color: var(--ink); font-weight: 600; background: rgba(166, 124, 61, .08); }
.compare-head > div { font-family: var(--serif); font-weight: 600; font-size: 1rem; padding-block: 1rem; }
.compare-head .us { background: var(--ink); color: var(--cream); }
.compare-head .k { display: none; }

/* =============================================================
   14. Guarantees + payments
   ============================================================= */
.guarantees { display: grid; gap: 1rem; }
.gcard { padding: 1.6rem 1.4rem; border-radius: var(--radius-lg); background: var(--paper); border: 1px solid var(--line); position: relative; }
.gcard .trust-icon { margin-bottom: 1rem; }
.gcard h3 { font-size: 1.3rem; }
.gcard p { font-size: .9rem; color: var(--ink-soft); margin-top: .5rem; }
.pay-icons { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; margin-top: 1rem; }
.pay-icons svg { height: 26px; width: auto; border-radius: 4px; box-shadow: 0 0 0 1px var(--line); background: #fff; }

/* =============================================================
   15. FAQ
   ============================================================= */
.faq { max-width: 820px; margin-inline: auto; }
.faq details { border-bottom: 1px dashed var(--line-2); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.15rem 0; font-family: var(--serif); font-size: 1.15rem; font-weight: 600; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; border: 1.5px solid var(--line-2); font-family: var(--sans); font-weight: 500; transition: transform .35s var(--ease-out), background .3s; }
.faq details[open] summary::after { transform: rotate(45deg); background: var(--copper); border-color: var(--copper); }
.faq details p { padding: 0 0 1.2rem; color: var(--ink-soft); font-size: .95rem; max-width: 68ch; }

/* =============================================================
   16. Instagram + CTA final
   ============================================================= */
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .35rem; margin-top: 2rem; }
.ig-grid a { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 4px; background: var(--sand); }
.ig-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.ig-grid a::after { content: ""; position: absolute; inset: 0; background: rgba(34, 21, 11, 0); transition: background .3s; }
.ig-grid a:hover img { transform: scale(1.08); }
.ig-grid a:hover::after { background: rgba(34, 21, 11, .25); }

.cta-final { text-align: center; }
.cta-final .h-section { max-width: 18ch; margin-inline: auto; }
.cta-final .btns { display: grid; gap: .7rem; margin-top: 2rem; max-width: 420px; margin-inline: auto; }

/* =============================================================
   17. Footer
   ============================================================= */
.footer { background: var(--ink-deep); color: rgba(247, 242, 233, .75); padding-block: 3.5rem 2rem; font-size: .9rem; }
.footer-grid { display: grid; gap: 2.2rem; }
.footer .brand-name { color: var(--cream); }
.footer p { margin-top: .9rem; max-width: 36ch; }
.footer h4 { font-family: var(--sans); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--copper-lt); margin-bottom: .9rem; }
.footer ul { display: grid; gap: .55rem; }
.footer a:hover { color: var(--cream); }
.footer-social { display: flex; gap: .5rem; margin-top: 1.2rem; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(247, 242, 233, .2); transition: background .3s, border-color .3s; }
.footer-social a:hover { background: var(--copper); border-color: var(--copper); color: var(--ink-deep); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { margin-top: 2.8rem; padding-top: 1.4rem; border-top: 1px dashed rgba(199, 154, 85, .35); display: flex; flex-direction: column; gap: .9rem; font-size: .78rem; }
.footer-credits a { text-decoration: underline; text-underline-offset: 3px; }

/* =============================================================
   18. WhatsApp flotante + toast
   ============================================================= */
.wa-float {
  position: fixed; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); z-index: 70;
  width: 58px; height: 58px; border-radius: 50%; background: var(--wa); color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 25px -8px rgba(0, 0, 0, .45);
  transition: transform .35s var(--ease-out), bottom .35s var(--ease-out);
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.08); }
.wa-float::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--wa); animation: ring 2.8s var(--ease-out) infinite; }
.wa-float-label { position: absolute; right: 68px; white-space: nowrap; background: var(--ink); color: var(--cream); font-size: .78rem; font-weight: 700; padding: .45rem .75rem; border-radius: 6px; opacity: 0; transform: translateX(8px); transition: all .3s var(--ease-out); pointer-events: none; }
.wa-float:hover .wa-float-label { opacity: 1; transform: none; }
body.has-sticky-buy .wa-float { bottom: calc(92px + env(safe-area-inset-bottom, 0px)); }

.toast { position: fixed; left: 50%; bottom: calc(22px + env(safe-area-inset-bottom, 0px)); z-index: 120; transform: translate(-50%, 140%); background: var(--ink); color: var(--cream); padding: .8rem 1.1rem; border-radius: 8px; font-size: .88rem; font-weight: 600; box-shadow: var(--shadow-lg); display: flex; gap: .6rem; align-items: center; transition: transform .45s var(--ease-out); max-width: calc(100vw - 32px); }
.toast.is-on { transform: translate(-50%, 0); }
.toast svg { width: 18px; height: 18px; color: var(--copper-lt); flex: none; }

/* =============================================================
   19. Cart drawer
   ============================================================= */
.scrim { position: fixed; inset: 0; z-index: 95; background: rgba(34, 21, 11, .5); opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s; }
.scrim.is-on { opacity: 1; visibility: visible; }
.drawer { position: fixed; top: 0; right: 0; bottom: 0; z-index: 100; width: min(440px, 100%); background: var(--cream); display: flex; flex-direction: column; transform: translateX(105%); transition: transform .5s var(--ease-out); box-shadow: var(--shadow-lg); visibility: hidden; }
.drawer.is-open { transform: none; visibility: visible; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 1rem var(--gutter); border-bottom: 1px solid var(--line); }
.drawer-head h2 { font-size: 1.4rem; }
.drawer-body { flex: 1; overflow-y: auto; padding: .5rem var(--gutter); overscroll-behavior: contain; }
.drawer-foot { padding: 1rem var(--gutter) calc(1rem + env(safe-area-inset-bottom, 0px)); border-top: 1px solid var(--line); background: var(--paper); display: grid; gap: .7rem; }
.ship-meter { padding: .9rem 0 .4rem; font-size: .82rem; }
.ship-meter b { color: var(--leather); }
.meter { height: 6px; border-radius: 99px; background: var(--sand-2); overflow: hidden; margin-top: .45rem; }
.meter i { display: block; height: 100%; background: var(--copper); border-radius: inherit; transition: width .6s var(--ease-out); }
.line-item { display: grid; grid-template-columns: 76px 1fr auto; gap: .8rem; padding: 1rem 0; border-bottom: 1px dashed var(--line-2); }
.line-item-media { width: 76px; aspect-ratio: 4 / 5; border-radius: 6px; overflow: hidden; background: var(--sand); }
.line-item-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(var(--s, 1)); transform-origin: var(--o, 50% 50%); }
.line-item h4 { font-family: var(--serif); font-size: 1rem; line-height: 1.2; }
.line-item .opts { font-size: .74rem; color: var(--mute); margin-top: .2rem; line-height: 1.4; }
.line-item .price { font-size: .92rem; text-align: right; }
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line-2); border-radius: var(--radius); margin-top: .55rem; height: 36px; }
.qty button { width: 34px; height: 100%; display: grid; place-items: center; font-size: 1.1rem; }
.qty button:hover { color: var(--copper); }
.qty span, .qty input { width: 34px; text-align: center; font-weight: 700; font-size: .9rem; border: 0; background: transparent; }
.remove { font-size: .72rem; color: var(--mute); text-decoration: underline; text-underline-offset: 3px; margin-top: .5rem; display: block; margin-left: auto; }
.remove:hover { color: var(--err); }
.row-between { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.total-row { font-size: 1.05rem; font-weight: 800; }
.fine { font-size: .74rem; color: var(--mute); text-align: center; }
.empty { text-align: center; padding: 3rem 1rem; }
.empty svg { width: 56px; height: 56px; margin: 0 auto 1rem; color: var(--copper); }
.empty h3 { font-size: 1.4rem; }
.empty p { color: var(--ink-soft); margin: .5rem 0 1.4rem; font-size: .92rem; }

/* =============================================================
   20. Dialog (vista rápida)
   ============================================================= */
dialog.quick { border: 0; padding: 0; width: min(560px, calc(100% - 24px)); max-height: calc(100svh - 24px); border-radius: var(--radius-lg); background: var(--cream); color: var(--ink); box-shadow: var(--shadow-lg); margin: auto; }
dialog.quick::backdrop { background: rgba(34, 21, 11, .55); }
.quick-inner { display: grid; }
.quick-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--sand); }
.quick-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(var(--s, 1)); transform-origin: var(--o, 50% 50%); }
.quick-body { padding: 1.3rem var(--gutter) 1.4rem; display: grid; gap: 1rem; }
.quick-close { position: absolute; top: .6rem; right: .6rem; background: var(--cream); z-index: 2; }

/* =============================================================
   21. Forms
   ============================================================= */
.field { display: grid; gap: .35rem; }
.field label, .field .label { font-size: .78rem; font-weight: 700; letter-spacing: .04em; color: var(--ink-soft); }
.field label .add { color: var(--copper); font-weight: 700; }
.input, .select {
  width: 100%; min-height: 50px; padding: .75rem .9rem; border: 1.5px solid var(--line-2); border-radius: var(--radius);
  background: var(--paper); font-size: 16px; color: var(--ink); transition: border-color .25s, box-shadow .25s; appearance: none;
}
.select { background: var(--paper) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233E2A1B' stroke-width='1.6' fill='none'/%3E%3C/svg%3E") no-repeat right .9rem center; padding-right: 2.4rem; }
.input:focus, .select:focus { outline: none; border-color: var(--copper); box-shadow: 0 0 0 3px rgba(166, 124, 61, .2); }
.input.is-invalid, .select.is-invalid { border-color: var(--err); }
.field-error { font-size: .74rem; color: var(--err); font-weight: 600; display: none; }
.field.has-error .field-error { display: block; }
.field.has-error .input, .field.has-error .select { border-color: var(--err); }
.form-grid { display: grid; gap: .9rem; }
.form-row { display: grid; gap: .9rem; grid-template-columns: 1fr 1fr; }
.swatches { display: flex; flex-wrap: wrap; gap: .45rem; }
.swatch input { position: absolute; opacity: 0; pointer-events: none; }
.swatch span { display: inline-flex; align-items: center; gap: .45rem; padding: .5rem .8rem; border-radius: 99px; border: 1.5px solid var(--line-2); font-size: .84rem; font-weight: 600; cursor: pointer; transition: all .2s; background: var(--paper); }
.swatch span i { width: 14px; height: 14px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .15); }
.swatch input:checked + span { border-color: var(--ink); background: var(--ink); color: var(--cream); }
.swatch input:focus-visible + span { outline: 2px solid var(--copper); outline-offset: 2px; }

/* =============================================================
   22. Product page
   ============================================================= */
.pdp { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1.6rem; padding-block: 1.2rem 4rem; }
.pdp > *, .checkout > *, .pdp-info > *, .form-grid > * { min-width: 0; }
.pdp-gallery { display: grid; gap: .6rem; }
.pdp-main { position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden; background: var(--sand); margin-inline: calc(var(--gutter) * -1); border-radius: 0; }
.pdp-main img { width: 100%; height: 100%; object-fit: cover; transform: scale(var(--s, 1)); transform-origin: var(--o, 50% 50%); }
.pdp-thumbs { display: flex; gap: .5rem; }
.pdp-thumbs button { width: 70px; aspect-ratio: 1; border-radius: 6px; overflow: hidden; border: 2px solid transparent; opacity: .7; transition: all .25s; }
.pdp-thumbs button.is-active { border-color: var(--copper); opacity: 1; }
.pdp-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.pdp-info { display: grid; gap: 1.1rem; align-content: start; }
.pdp-info h1 { font-size: clamp(1.9rem, 7vw, 2.8rem); }
.pdp-price { font-size: 1.6rem; font-weight: 800; }
.pdp-price small { font-size: .78rem; font-weight: 600; color: var(--mute); margin-left: .4rem; }
.pdp-short { color: var(--ink-soft); font-size: 1rem; }
.pdp-perks { display: grid; gap: .55rem; padding: 1rem; background: var(--paper); border: 1px dashed var(--line-2); border-radius: var(--radius-lg); font-size: .86rem; }
.pdp-perks li { display: flex; gap: .6rem; align-items: flex-start; }
.pdp-perks svg { width: 18px; height: 18px; color: var(--copper); flex: none; margin-top: 2px; }
.pdp-actions { display: grid; gap: .6rem; }
.pdp-actions .qty { margin-top: 0; height: 50px; }
.pdp-actions .qty button { width: 44px; }
.pdp-actions .qty input { width: 40px; }
.pdp-actions { grid-template-columns: minmax(0, 1fr); }
.pdp-buy-row { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: .6rem; }
.pdp-buy-row .btn { padding-inline: .8rem; white-space: normal; }
.pdp-acc details { border-bottom: 1px dashed var(--line-2); }
.pdp-acc summary { list-style: none; cursor: pointer; padding: 1rem 0; font-weight: 700; display: flex; justify-content: space-between; }
.pdp-acc summary::-webkit-details-marker { display: none; }
.pdp-acc summary::after { content: "+"; font-weight: 500; font-size: 1.2rem; line-height: 1; transition: transform .3s; }
.pdp-acc details[open] summary::after { transform: rotate(45deg); }
.pdp-acc .acc-body { padding-bottom: 1rem; font-size: .92rem; color: var(--ink-soft); }
.pdp-acc ul { display: grid; gap: .35rem; }
.pdp-acc li { padding-left: 1.1rem; position: relative; }
.pdp-acc li::before { content: ""; position: absolute; left: 0; top: .62em; width: 8px; border-top: 2px dashed var(--copper); }
.ref-note { font-size: .78rem; color: var(--mute); background: var(--sand); padding: .6rem .8rem; border-radius: 6px; }
.quote-box { background: var(--ink); color: var(--cream); padding: 1.3rem; border-radius: var(--radius-lg); display: grid; gap: .8rem; }
.quote-box h3 { font-size: 1.3rem; }
.quote-box ol { display: grid; gap: .4rem; font-size: .88rem; color: rgba(247, 242, 233, .8); counter-reset: q; }
.quote-box ol li { counter-increment: q; display: flex; gap: .6rem; }
.quote-box ol li::before { content: counter(q); flex: none; width: 22px; height: 22px; border-radius: 50%; border: 1.5px dashed var(--copper-lt); display: grid; place-items: center; font-size: .72rem; font-weight: 800; color: var(--copper-lt); }

.sticky-buy { position: fixed; left: 0; right: 0; bottom: 0; z-index: 65; background: var(--paper); border-top: 1px solid var(--line); padding: .7rem var(--gutter) calc(.7rem + env(safe-area-inset-bottom, 0px)); display: flex; gap: .8rem; align-items: center; transform: translateY(110%); transition: transform .45s var(--ease-out); box-shadow: 0 -10px 30px -18px rgba(34, 21, 11, .5); }
.sticky-buy.is-on { transform: none; }
.sticky-buy .meta { flex: 1; min-width: 0; }
.sticky-buy .meta strong { display: block; font-family: var(--serif); font-size: .98rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-buy .meta span { font-weight: 800; font-size: .92rem; }
.sticky-buy .btn { min-height: 46px; padding: .6rem 1rem; font-size: .76rem; }

/* =============================================================
   23. Checkout
   ============================================================= */
.checkout { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1.5rem; padding-block: 1.5rem 4rem; }
.co-steps { display: flex; gap: .4rem; align-items: center; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--mute); margin-bottom: .4rem; flex-wrap: wrap; }
.co-steps span.is-active { color: var(--ink); }
.co-steps a:hover { color: var(--copper); }
.checkout aside { order: -1; }
.checkout aside .pdp-perks, .checkout aside > .link-arrow { display: none; }
.page-checkout .brand-name small { display: none; }
.page-checkout .header .secure-note { white-space: nowrap; }
.rcard .pay-icons { gap: .25rem; }
.page-checkout .header .secure-note svg { width: 18px; height: 18px; color: var(--ok); margin-top: 0; }
.co-steps i { width: 18px; border-top: 1.5px dashed var(--line-2); }
.co-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.3rem var(--gutter); }
.co-card + .co-card { margin-top: 1rem; }
.co-card h2 { font-size: 1.35rem; display: flex; align-items: center; gap: .6rem; margin-bottom: 1.1rem; }
.co-card h2 b { width: 28px; height: 28px; border-radius: 50%; display: inline-grid; place-items: center; background: var(--ink); color: var(--cream); font-family: var(--sans); font-size: .8rem; }
.radio-cards { display: grid; gap: .6rem; }
.rcard { position: relative; display: block; cursor: pointer; }
.rcard input { position: absolute; opacity: 0; pointer-events: none; }
.rcard > span { display: grid; grid-template-columns: 22px 1fr auto; gap: .8rem; align-items: center; padding: .95rem 1rem; border: 1.5px solid var(--line-2); border-radius: var(--radius); background: var(--cream); transition: border-color .2s, background .2s; }
.rcard > span::before { content: ""; width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--line-2); transition: all .2s; }
.rcard input:checked + span { border-color: var(--ink); background: var(--paper); box-shadow: 0 0 0 1px var(--ink); }
.rcard input:checked + span::before { border: 6px solid var(--copper); }
.rcard input:focus-visible + span { outline: 2px solid var(--copper); outline-offset: 2px; }
.rcard strong { display: block; font-size: .92rem; }
.rcard small { display: block; font-size: .76rem; color: var(--mute); }
.rcard .rprice { font-weight: 800; font-size: .9rem; }
.rcard .pay-icons { margin-top: 0; }
.rcard .pay-icons svg { height: 20px; }
.pay-panel { display: none; margin-top: .8rem; padding: 1rem; border-radius: var(--radius); background: var(--cream); border: 1px dashed var(--line-2); }
.pay-panel.is-on { display: grid; gap: .9rem; }
.card-input-wrap { position: relative; }
.card-brand { position: absolute; right: .7rem; top: 50%; transform: translateY(-50%); height: 22px; display: flex; gap: .25rem; }
.card-brand svg { height: 22px; width: auto; opacity: .35; transition: opacity .2s; border-radius: 3px; box-shadow: 0 0 0 1px var(--line); background: #fff; }
.card-brand svg.is-on { opacity: 1; }
.secure-note { display: flex; gap: .6rem; align-items: flex-start; font-size: .78rem; color: var(--ink-soft); }
.secure-note svg { width: 18px; height: 18px; color: var(--ok); flex: none; margin-top: 1px; }
.demo-note { font-size: .78rem; background: #fbf1dc; border: 1px solid #e8cf98; color: #6b4a12; padding: .7rem .85rem; border-radius: 6px; }
.summary { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.summary-toggle { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1rem var(--gutter); font-weight: 700; background: var(--sand); }
.summary-toggle span { display: inline-flex; gap: .5rem; align-items: center; color: var(--leather); font-size: .9rem; }
.summary-toggle svg { width: 16px; height: 16px; transition: transform .3s; }
.summary.is-open .summary-toggle svg { transform: rotate(180deg); }
.summary-body { display: none; padding: .2rem var(--gutter) 1.2rem; }
.summary.is-open .summary-body { display: block; }
.summary .line-item { grid-template-columns: 60px 1fr auto; }
.summary .line-item-media { width: 60px; position: relative; overflow: visible; }
.summary .line-item-media img { border-radius: 6px; }
.summary .line-item-media b { position: absolute; top: -7px; right: -7px; min-width: 20px; height: 20px; border-radius: 99px; background: var(--ink); color: var(--cream); font-size: .68rem; display: grid; place-items: center; padding: 0 5px; }
.totals { display: grid; gap: .5rem; padding-top: 1rem; font-size: .9rem; }
.totals .total-row { border-top: 1px solid var(--line); padding-top: .8rem; margin-top: .3rem; font-size: 1.15rem; }
.place-order { margin-top: 1.2rem; }
.confirm { text-align: center; max-width: 620px; margin-inline: auto; padding-block: 3rem 5rem; }
.confirm-seal { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 1.4rem; display: grid; place-items: center; background: var(--ink); color: var(--copper-lt); border: 2px dashed var(--copper); }
.confirm-seal svg { width: 44px; height: 44px; }
.confirm h1 { font-size: clamp(2rem, 7vw, 3rem); }
.confirm .order-id { display: inline-block; margin-top: 1rem; padding: .45rem .9rem; border-radius: 99px; background: var(--sand); font-weight: 800; letter-spacing: .08em; }
.confirm .co-card { text-align: left; margin-top: 2rem; }
.confirm .btns { display: grid; gap: .7rem; margin-top: 2rem; }

/* =============================================================
   24. Políticas / créditos
   ============================================================= */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.7rem; margin-top: 2.8rem; padding-top: 1rem; border-top: 1px dashed var(--line-2); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.15rem; margin-top: 1.5rem; }
.prose p, .prose li { color: var(--ink-soft); margin-top: .8rem; }
.prose ul { padding-left: 1.1rem; list-style: disc; }
.prose a { color: var(--leather); text-decoration: underline; text-underline-offset: 3px; }
.toc { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.credits-list { display: grid; gap: .9rem; margin-top: 1.5rem; }
.credits-list li { font-size: .88rem; color: var(--ink-soft); padding-bottom: .9rem; border-bottom: 1px dashed var(--line-2); }
.credits-list a { color: var(--leather); text-decoration: underline; }

/* =============================================================
   25. Effects
   ============================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); transition-delay: var(--d, 0s); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }
html:not(.js) .reveal { opacity: 1; transform: none; }

@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.12) translate(-1.5%, -1%); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes ring { 0% { transform: scale(1); opacity: .7; } 70%, 100% { transform: scale(1.45); opacity: 0; } }
@keyframes bump { 0% { transform: scale(1); } 40% { transform: scale(1.45); } 100% { transform: scale(1); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.hero-content > * { animation: rise 1s var(--ease-out) both; }
.hero-content > *:nth-child(2) { animation-delay: .12s; }
.hero-content > *:nth-child(3) { animation-delay: .24s; }
.hero-content > *:nth-child(4) { animation-delay: .36s; }
.hero-content > *:nth-child(5) { animation-delay: .48s; }

/* =============================================================
   26. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .hero-ctas { grid-template-columns: auto auto; justify-content: start; }
  .cat-rail { grid-auto-columns: 30%; }
  .pcard .btn { font-size: .76rem; }
  .cta-final .btns { grid-template-columns: 1fr 1fr; max-width: 560px; }
  .confirm .btns { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 720px) {
  :root { --gutter: 2rem; --header-h: 72px; }
  .section { padding-block: 6rem; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-item { border-bottom: 0; border-right: 1px dashed var(--line-2); padding: 1.8rem 1.5rem; }
  .trust-item:first-child { padding-left: 0; }
  .trust-item:last-child { border-right: 0; }
  .grid-products { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2.2rem 1.2rem; }
  .pcard-short { display: block; }
  .pcard-foot { flex-direction: row; align-items: center; justify-content: space-between; }
  .pcard .btn { width: auto; }
  .commission-grid { grid-template-columns: repeat(3, 1fr); }
  .guarantees { grid-template-columns: repeat(3, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .ig-grid { grid-template-columns: repeat(6, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .compare-row { grid-template-columns: 1.1fr 1.4fr 1.4fr; }
  .compare-row .k { grid-column: auto; padding-bottom: .85rem; align-self: center; }
  .compare-head .k { display: block; visibility: hidden; }
  .steps { grid-template-columns: repeat(5, 1fr); border-top: 0; gap: 1rem; }
  .step { grid-template-columns: 1fr; border-bottom: 0; border-top: 1px dashed rgba(199, 154, 85, .4); gap: .4rem; }
  .pdp-main { margin-inline: 0; border-radius: var(--radius-lg); }
  .hero-badge { width: 112px; height: 112px; font-size: .85rem; top: 2rem; right: 2rem; }
  .hero-badge b { font-size: 1.6rem; }
}

@media (min-width: 960px) {
  .nav { display: flex; gap: 1.8rem; }
  .menu-btn { display: none !important; }
  .hide-mobile { display: inline-grid !important; }
  .hero { grid-template-columns: 1.05fr .95fr; min-height: min(86vh, 820px); }
  .hero-media { position: relative; grid-column: 2; grid-row: 1; }
  .hero-shade { grid-column: 2; grid-row: 1; background: linear-gradient(90deg, rgba(62, 42, 27, 1) 0%, rgba(62, 42, 27, 0) 22%); }
  .hero-content { grid-column: 1; grid-row: 1; align-self: center; padding: 4rem 3rem 4rem max(2rem, calc((100vw - var(--maxw)) / 2 + 2rem)); max-width: none; }
  .hero-title { font-size: clamp(2.8rem, 4.4vw, 4.4rem); }
  .hero-sub { font-size: 1.1rem; }
  .cat-rail { grid-auto-flow: row; grid-template-columns: repeat(6, 1fr); overflow: visible; margin-inline: 0; padding-inline: 0; }
  .maker { grid-template-columns: 1fr 1.05fr; gap: 4.5rem; align-items: center; }
  .process { grid-template-columns: repeat(5, 1fr); }
  .pstep { grid-template-columns: 1fr; padding: .7rem .7rem 1.1rem; align-items: start; }
  .pstep-media { aspect-ratio: 4 / 3; }
  .pdp { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 3.5rem; padding-top: 2rem; }
  .pdp-gallery { position: sticky; top: calc(var(--header-h) + 1.5rem); align-self: start; }
  .checkout { grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: 2.5rem; align-items: start; }
  .checkout aside { position: sticky; top: calc(var(--header-h) + 1.5rem); order: 0; }
  .checkout aside .pdp-perks { display: grid; }
  .checkout aside > .link-arrow { display: inline-flex; }
  .page-checkout .brand-name small { display: block; }
  .summary-toggle { display: none; }
  .summary-body { display: block; padding-top: 1.2rem; }
  .summary-title { display: block !important; }
  .sticky-buy { display: none; }
  body.has-sticky-buy .wa-float { bottom: 16px; }
  .band-inner { padding-block: 8rem; }
}

@media (min-width: 1280px) {
  .grid-products { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .grid-products.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* =============================================================
   27. Reduced motion — sólo lo intrusivo
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media img { animation: none; }
  .wa-float::before { animation: none; display: none; }
}
