/* =================================================================
   VDM — sitio-vdm/styles.css
   Carta de la maker · estilo personal, asimétrico, tipografía amable
   ================================================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Satisfy&display=swap');

:root {
  --c-cream:        #F7F6F1;
  --c-cream-deep:   #F1EFE7;
  --c-linen:        #EDEAE0;
  --c-sage:         #A8C1B0;
  --c-sage-700:     #8AAA94;
  --c-sage-300:     #C7D8CD;
  --c-sage-100:     #E6EEEA;
  --c-gold:         #C2A978;
  --c-gold-700:     #A88E5C;
  --c-gold-100:     #E8DEC8;
  --c-ink:          #1F2421;
  --c-stone:        #6B6A63;
  --c-stone-40:     #BFBDB4;
  --c-rescue:       #B0524A;
  --c-rescue-100:   #F1DBD7;
  --c-scrim:        rgba(31, 36, 33, 0.30);

  --font-ui:        'Montserrat', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-accent:    'Satisfy', 'Brush Script MT', cursive;

  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-float:   0 8px 24px rgba(31, 36, 33, 0.10);
  --shadow-modal:   0 24px 60px rgba(31, 36, 33, 0.14);
  --shadow-photo:   0 8px 32px rgba(31,36,33,0.08);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
a { color: inherit; }

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

.wrap { max-width: 1320px; margin: 0 auto; padding: 0 48px; }
.wrap-narrow { max-width: 920px; margin: 0 auto; padding: 0 48px; }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-weight: 400; letter-spacing: -0.01em; margin: 0; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
.script { font-family: var(--font-accent); color: var(--c-gold); line-height: 1; }
.eyebrow { font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--c-stone); font-weight: 500; }
.muted { color: var(--c-stone); }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  letter-spacing: 0.01em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 150ms var(--ease);
}
.btn:active { transform: scale(0.99); }
.btn-primary { background: var(--c-sage); color: var(--c-ink); }
.btn-primary:hover { background: var(--c-sage-700); }
.btn-secondary { background: transparent; color: var(--c-ink); border-color: var(--c-stone-40); }
.btn-secondary:hover { background: var(--c-linen); }
.btn-link { background: transparent; color: var(--c-ink); padding: 14px 0; border: none; border-bottom: 1px solid var(--c-ink); border-radius: 0; }
.btn-link:hover { color: var(--c-sage-700); border-color: var(--c-sage-700); }
.btn-large { padding: 16px 30px; font-size: 15px; }
.btn-full { width: 100%; padding: 16px 24px; }
.btn-disabled { background: var(--c-linen); color: var(--c-stone-40); cursor: not-allowed; }

/* ---------- Header ---------- */
.header { padding: 22px 48px; display: flex; align-items: center; justify-content: space-between; max-width: 1320px; margin: 0 auto; }
.brand-mark { font-weight: 600; font-size: 22px; letter-spacing: 0.18em; color: var(--c-ink); text-decoration: none; }
.nav { display: flex; gap: 28px; font-size: 14px; }
.nav a { color: var(--c-ink); text-decoration: none; transition: color 150ms var(--ease); }
.nav a:hover, .nav a.active { color: var(--c-sage-700); }
.nav a.active { font-weight: 500; }
.header-icons { display: flex; gap: 18px; align-items: center; }
.header-icons a { color: var(--c-ink); display: flex; align-items: center; gap: 4px; text-decoration: none; cursor: pointer; }
.header-icons a:hover { color: var(--c-sage-700); }
.header-icons svg { width: 20px; height: 20px; stroke-width: 1.5; }
.cart-count { font-size: 12px; font-variant-numeric: tabular-nums; color: var(--c-stone); }
.cart-count.has { color: var(--c-sage-700); font-weight: 500; }

/* ---------- Footer ---------- */
.footer { margin-top: 96px; background: var(--c-ink); color: var(--c-cream); padding: 72px 48px 32px; }
.footer-inner { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 56px; }
.footer h4 { font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase; color: rgba(247,246,241,0.50); margin: 0 0 18px; font-weight: 500; }
.footer a { color: var(--c-cream); text-decoration: none; font-size: 13px; display: block; padding: 5px 0; opacity: 0.85; transition: opacity 150ms var(--ease); }
.footer a:hover { opacity: 1; color: var(--c-sage); }
.footer .brand-block .mark { font-weight: 600; font-size: 24px; letter-spacing: 0.18em; margin-bottom: 14px; }
.footer .brand-block .tag { font-family: var(--font-accent); color: var(--c-gold); font-size: 22px; line-height: 1; margin-bottom: 18px; }
.footer .brand-block p { font-size: 13px; opacity: 0.65; line-height: 1.6; max-width: 320px; margin: 0; }
.footer-bottom { max-width: 1320px; margin: 56px auto 0; padding-top: 24px; border-top: 1px solid rgba(247,246,241,0.10); font-size: 12px; opacity: 0.55; display: flex; justify-content: space-between; }

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 60;
  display: inline-flex; align-items: center; gap: 12px;
  background: white; color: var(--c-ink);
  padding: 14px 22px 14px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-float);
  font-family: var(--font-ui);
  font-size: 14px; font-weight: 500;
  cursor: pointer; border: none;
  text-decoration: none;
  transition: transform 150ms var(--ease);
}
.wa-float:hover { transform: translateY(-2px); }
.wa-float svg { width: 24px; height: 24px; }
.wa-float .label { max-width: 260px; overflow: hidden; white-space: nowrap; }
@media (max-width: 720px) {
  .wa-float .label { display: none; }
  .wa-float { padding: 14px; }
}

/* =================================================================
   HOMEPAGE — Carta de la maker
   ================================================================= */

/* Asymmetric hero with overlapping photo collage + handwritten letter */
.hero { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 80px; padding: 56px 0 96px; align-items: center; }
.hero-photos { position: relative; height: 640px; }
.hero-photos .ph {
  position: absolute;
  background-size: cover; background-position: center;
  border-radius: 2px;
  box-shadow: var(--shadow-photo);
}
.ph-1 { width: 58%; aspect-ratio: 3/5; top: 0; left: 0; z-index: 2; }
.ph-2 { width: 46%; aspect-ratio: 3/4; top: 32%; right: 0; z-index: 3; }
.ph-3 { width: 38%; aspect-ratio: 1/1; bottom: 0; left: 26%; z-index: 4; }

.letter .from { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-stone); margin-bottom: 18px; }
.letter .opener { font-family: var(--font-accent); font-size: 56px; color: var(--c-gold); line-height: 1; margin-bottom: 24px; }
.letter p { font-size: 17px; line-height: 1.7; margin: 0 0 18px; max-width: 480px; }
.letter .sign { font-family: var(--font-accent); font-size: 32px; color: var(--c-ink); margin-top: 16px; line-height: 1; }
.letter .role { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-stone); margin-top: 4px; }
.letter-cta { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }

/* Diary / horizontal scroll */
.diary { padding: 64px 0 88px; background: var(--c-cream-deep); }
.diary-head { display: flex; justify-content: space-between; align-items: end; max-width: 1320px; margin: 0 auto 32px; padding: 0 48px; }
.diary-head h2 { font-size: 32px; }
.diary-head .arrows { display: flex; gap: 8px; }
.arrow { width: 40px; height: 40px; border: 1px solid var(--c-stone-40); background: white; border-radius: 999px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 150ms var(--ease); }
.arrow:hover { background: var(--c-linen); }
.arrow:disabled { opacity: 0.4; cursor: not-allowed; }
.arrow svg { width: 16px; height: 16px; stroke-width: 1.5; }

.carousel { display: flex; gap: 24px; padding: 4px 48px 24px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; }
.carousel::-webkit-scrollbar { display: none; }
.carousel { scrollbar-width: none; }
.dcard { flex: 0 0 280px; scroll-snap-align: start; text-decoration: none; color: inherit; transition: transform 250ms var(--ease); }
.dcard:hover { transform: translateY(-4px); }
.dcard .photo { aspect-ratio: 3/5; background-size: cover; background-position: center; border-radius: 2px; transition: filter 250ms var(--ease); }
.dcard:hover .photo { filter: brightness(1.02); }
.dcard .date { font-family: var(--font-accent); color: var(--c-gold); font-size: 18px; margin-top: 14px; line-height: 1; }
.dcard .name { font-size: 16px; font-weight: 500; margin-top: 4px; }
.dcard .meta { font-size: 12px; color: var(--c-stone); margin-top: 2px; }
.dcard .price { font-size: 14px; margin-top: 8px; font-variant-numeric: tabular-nums; }
.dcard .price.last { color: var(--c-gold-700); font-weight: 500; }

/* Process strip */
.process { padding: 80px 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; max-width: 1240px; margin: 0 auto; }
.step .num { font-family: var(--font-accent); color: var(--c-gold); font-size: 40px; line-height: 1; }
.step h4 { font-size: 17px; font-weight: 500; margin: 16px 0 8px; }
.step p { font-size: 14px; color: var(--c-stone); line-height: 1.6; }

/* Trapillo strip */
.trapillo {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  background: var(--c-cream-deep); padding: 80px 64px; align-items: center;
  margin: 0 auto; max-width: 1320px;
}
.trapillo .copy h2 { font-size: 32px; margin-bottom: 18px; }
.trapillo .copy p { color: var(--c-stone); margin-bottom: 16px; max-width: 440px; }
.trapillo .copy .script { font-size: 28px; margin-top: 8px; }
.trapillo .photo { aspect-ratio: 4/5; background-size: cover; background-position: center; border-radius: 2px; }

/* =================================================================
   TIENDA — Product grid
   ================================================================= */
.shop-head { text-align: center; padding: 56px 0 40px; }
.shop-head .script { font-size: 36px; margin-bottom: 8px; }
.shop-head h1 { font-size: 44px; font-weight: 300; }
.shop-head p { color: var(--c-stone); margin-top: 14px; }

.shop-filters { display: flex; gap: 8px; justify-content: center; margin-bottom: 48px; flex-wrap: wrap; }
.chip {
  font-size: 13px; padding: 8px 16px;
  background: white; border: 1px solid var(--c-stone-40); border-radius: 2px;
  cursor: pointer; transition: all 150ms var(--ease);
  color: var(--c-ink);
  font-family: var(--font-ui);
}
.chip:hover { background: var(--c-linen); }
.chip.active { background: var(--c-sage); border-color: var(--c-sage); color: var(--c-ink); font-weight: 500; }

.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 32px; padding-bottom: 96px; }
.product { text-decoration: none; color: inherit; display: block; }
.product .photo {
  aspect-ratio: 3/5; background-size: cover; background-position: center;
  border-radius: 2px; position: relative; overflow: hidden;
  transition: transform 250ms var(--ease);
}
.product:hover .photo { transform: translateY(-4px); }
.product .badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--c-gold); color: var(--c-ink);
  padding: 5px 10px; border-radius: 6px;
  font-size: 11px; font-weight: 500;
}
.product .badge-out { background: var(--c-ink); color: var(--c-cream); }
.product .meta-row {
  display: flex; align-items: center; gap: 8px;
  margin-top: 18px;
  font-size: 11px;
  color: var(--c-stone);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.product .meta-row .swatch { width: 12px; height: 12px; border-radius: 999px; border: 1px solid rgba(31,36,33,0.08); }
.product .name { font-size: 17px; font-weight: 500; margin-top: 8px; transition: color 150ms var(--ease); }
.product:hover .name { color: var(--c-sage-700); }
.product .price-row { display: flex; align-items: baseline; gap: 8px; margin-top: 4px; }
.product .price { font-size: 15px; font-variant-numeric: tabular-nums; }
.product .hours { font-size: 11px; color: var(--c-stone); }

/* =================================================================
   PRODUCTO (PDP)
   ================================================================= */
.pdp { display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; padding: 48px 0 96px; }
.pdp-gallery { display: flex; flex-direction: column; gap: 12px; }
.pdp-main { aspect-ratio: 3/4; border-radius: 2px; background-size: cover; background-position: center; }
.pdp-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.pdp-thumb { aspect-ratio: 1/1; border-radius: 2px; background-size: cover; background-position: center; cursor: pointer; outline: 1px solid transparent; outline-offset: 2px; transition: outline-color 150ms var(--ease); }
.pdp-thumb.active { outline-color: var(--c-sage-700); }

.pdp-info { padding-top: 8px; }
.pdp-info .breadcrumb { font-size: 12px; color: var(--c-stone); margin-bottom: 18px; }
.pdp-info .breadcrumb a { text-decoration: none; }
.pdp-info .breadcrumb a:hover { color: var(--c-ink); }
.pdp-info h1 { font-size: 40px; font-weight: 400; margin: 0 0 12px; line-height: 1.08; }
.pdp-info .script { font-size: 24px; margin-bottom: 24px; }
.pdp-info .price { font-size: 28px; font-weight: 400; font-variant-numeric: tabular-nums; }
.pdp-info .stock-note { font-size: 13px; color: var(--c-sage-700); margin-top: 6px; }
.pdp-info .stock-note.low { color: var(--c-gold-700); }
.pdp-info .stock-note.out { color: var(--c-stone); }

.pdp-story {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--c-cream-deep);
  border-radius: 2px;
  position: relative;
}
.pdp-story::before {
  content: '';
  position: absolute; left: 0; top: 24px; bottom: 24px;
  width: 2px; background: var(--c-gold);
}
.pdp-story .label { font-family: var(--font-accent); color: var(--c-gold); font-size: 22px; margin-bottom: 8px; line-height: 1; }
.pdp-story p { font-size: 15px; line-height: 1.65; }

.pdp-options { margin-top: 28px; display: flex; gap: 16px; align-items: end; }
.qty-field { display: flex; flex-direction: column; gap: 8px; }
.qty-field label { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-stone); font-weight: 500; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--c-stone-40); border-radius: 2px; background: white; }
.qty button { width: 40px; height: 44px; background: none; border: none; color: var(--c-ink); cursor: pointer; display: flex; align-items: center; justify-content: center; }
.qty button:hover:not(:disabled) { background: var(--c-linen); }
.qty button:disabled { color: var(--c-stone-40); cursor: not-allowed; }
.qty .val { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; font-variant-numeric: tabular-nums; font-size: 16px; font-weight: 500; border-left: 1px solid var(--c-linen); border-right: 1px solid var(--c-linen); }

.pdp-actions { margin-top: 28px; display: flex; gap: 12px; }
.pdp-actions .btn { flex: 1; }

.pdp-meta { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding-top: 24px; border-top: 1px solid var(--c-linen); }
.pdp-meta .item { display: flex; align-items: start; gap: 10px; font-size: 13px; color: var(--c-stone); line-height: 1.5; }
.pdp-meta .item svg { width: 18px; height: 18px; stroke-width: 1.5; color: var(--c-sage-700); flex-shrink: 0; margin-top: 1px; }

.pdp-handwritten {
  margin-top: 56px;
  padding: 36px 40px;
  background: var(--c-sage-100);
  border-radius: 2px;
  display: flex;
  gap: 28px;
  align-items: center;
}
.pdp-handwritten .photo {
  width: 84px; height: 84px; border-radius: 999px;
  background: var(--c-sage); color: var(--c-ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-accent); font-size: 36px;
  flex-shrink: 0;
}
.pdp-handwritten .copy .script { font-size: 24px; line-height: 1.1; margin-bottom: 6px; }
.pdp-handwritten .copy p { font-size: 14px; color: var(--c-stone); }

/* Related */
.related { padding: 64px 48px 48px; max-width: 1320px; margin: 0 auto; }
.related h3 { font-size: 24px; margin-bottom: 32px; text-align: center; }
.related .products { grid-template-columns: repeat(3, 1fr); }

/* =================================================================
   CARRITO
   ================================================================= */
.cart-page { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; padding: 48px 0 96px; }
.cart-page h1 { font-size: 36px; font-weight: 300; margin-bottom: 32px; }

.cart-items { background: white; border: 1px solid var(--c-linen); border-radius: 2px; }
.cart-item { display: grid; grid-template-columns: 100px 1fr auto; gap: 20px; padding: 20px; border-bottom: 1px solid var(--c-linen); align-items: start; }
.cart-item:last-child { border-bottom: none; }
.cart-item .thumb { aspect-ratio: 3/4; border-radius: 2px; background-size: cover; background-position: center; }
.cart-item .info .name { font-size: 16px; font-weight: 500; }
.cart-item .info .origin { font-size: 12px; color: var(--c-stone); margin-top: 4px; }
.cart-item .info .controls { display: flex; align-items: center; gap: 16px; margin-top: 14px; }
.cart-item .info .controls .qty { font-size: 13px; }
.cart-item .info .controls .qty button { width: 32px; height: 32px; }
.cart-item .info .controls .qty .val { width: 36px; height: 32px; font-size: 13px; }
.cart-item .info .remove { background: none; border: none; padding: 0; color: var(--c-stone); font-size: 12px; cursor: pointer; text-decoration: underline; }
.cart-item .info .remove:hover { color: var(--c-rescue); }
.cart-item .price { font-size: 16px; font-variant-numeric: tabular-nums; text-align: right; }

.cart-summary { background: var(--c-cream-deep); padding: 28px; border-radius: 2px; align-self: start; position: sticky; top: 32px; }
.cart-summary h3 { font-size: 20px; font-weight: 500; margin-bottom: 24px; }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; }
.summary-row.total { font-size: 18px; font-weight: 500; margin-top: 12px; padding-top: 16px; border-top: 1px solid var(--c-stone-40); }
.summary-row .muted { color: var(--c-stone); }
.cart-summary .btn { margin-top: 24px; }
.cart-summary .paypal-hint { font-size: 12px; color: var(--c-stone); text-align: center; margin-top: 12px; }

.cart-empty { text-align: center; padding: 96px 24px; }
.cart-empty .script { font-size: 36px; margin-bottom: 20px; }
.cart-empty p { color: var(--c-stone); margin-bottom: 28px; }

/* =================================================================
   PAGO
   ================================================================= */
.checkout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; padding: 32px 0 96px; }

.checkout-steps { display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
.step-pill { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--c-stone-40); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; }
.step-pill .num { width: 22px; height: 22px; border-radius: 999px; background: var(--c-linen); display: inline-flex; align-items: center; justify-content: center; font-size: 11px; color: var(--c-stone); }
.step-pill.active { color: var(--c-ink); }
.step-pill.active .num { background: var(--c-sage); color: var(--c-ink); }
.step-pill.done .num { background: var(--c-sage); color: var(--c-ink); }
.step-pill + .step-pill::before { content: ''; display: inline-block; width: 28px; height: 1px; background: var(--c-stone-40); margin-right: 4px; }

.checkout-form h2 { font-size: 22px; font-weight: 500; margin: 0 0 20px; }
.checkout-form h2:not(:first-of-type) { margin-top: 40px; }
.field-grid { display: grid; gap: 14px; margin-bottom: 14px; }
.field-grid.two { grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12px; color: var(--c-stone); font-weight: 500; }
.field input, .field select {
  font-family: var(--font-ui); font-size: 14px; color: var(--c-ink);
  background: white; border: 1px solid var(--c-stone-40); border-radius: 2px;
  padding: 12px 14px; outline: none;
  transition: all 150ms var(--ease);
}
.field input:focus, .field select:focus { border-color: var(--c-sage-700); box-shadow: 0 0 0 3px var(--c-sage-100); }

.paypal-mock {
  background: #FFC439; color: #003087;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700; font-size: 16px;
  padding: 16px 24px; border: none;
  border-radius: 4px; width: 100%; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 4px;
  transition: filter 150ms var(--ease);
  margin-top: 20px;
}
.paypal-mock:hover { filter: brightness(0.96); }
.paypal-mock i { font-style: italic; }
.paypal-mock i:first-of-type { color: #003087; }
.paypal-mock i:last-of-type { color: #009cde; }
.paypal-alt { font-size: 12px; color: var(--c-stone); text-align: center; margin-top: 12px; }

.trust-card { margin-top: 28px; padding: 18px 20px; background: var(--c-sage-100); border-radius: 2px; display: flex; gap: 12px; align-items: start; }
.trust-card svg { color: var(--c-sage-700); width: 18px; height: 18px; stroke-width: 1.5; flex-shrink: 0; margin-top: 2px; }
.trust-card div { font-size: 13px; line-height: 1.55; }

.checkout-summary { background: var(--c-cream-deep); padding: 28px; border-radius: 2px; align-self: start; position: sticky; top: 32px; }
.checkout-summary h3 { font-size: 16px; font-weight: 500; margin: 0 0 18px; }
.checkout-item { display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--c-linen); align-items: center; }
.checkout-item:last-of-type { border-bottom: none; }
.checkout-item .thumb { aspect-ratio: 1/1; border-radius: 2px; background-size: cover; background-position: center; }
.checkout-item .name { font-size: 13px; font-weight: 500; }
.checkout-item .qty { font-size: 11px; color: var(--c-stone); }
.checkout-item .price { font-size: 13px; font-variant-numeric: tabular-nums; }
.summary-totals { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--c-linen); }
.summary-totals .row { display: flex; justify-content: space-between; padding: 4px 0; font-size: 13px; }
.summary-totals .row.total { font-size: 18px; font-weight: 500; margin-top: 10px; padding-top: 14px; border-top: 1px solid var(--c-linen); }

/* =================================================================
   GRACIAS
   ================================================================= */
.thankyou { padding: 80px 48px; max-width: 720px; margin: 0 auto; text-align: center; }
.thankyou .seal { width: 96px; height: 96px; border-radius: 999px; background: var(--c-sage); color: var(--c-ink); margin: 0 auto 32px; display: flex; align-items: center; justify-content: center; font-family: var(--font-accent); font-size: 56px; line-height: 1; padding-top: 8px; }
.thankyou h1 { font-size: 44px; font-weight: 300; margin: 0 0 12px; }
.thankyou .script { font-size: 32px; margin-bottom: 32px; }
.thankyou p { color: var(--c-stone); font-size: 16px; line-height: 1.7; }
.order-strip { display: inline-flex; gap: 20px; padding: 14px 24px; background: var(--c-cream-deep); border-radius: 2px; margin: 32px 0; font-size: 13px; }
.order-strip .label { color: var(--c-stone); }
.order-strip .id { font-family: ui-monospace, Menlo, monospace; font-weight: 500; }

.next-steps { text-align: left; margin: 40px 0; padding: 32px; background: var(--c-cream-deep); border-radius: 2px; }
.next-steps h3 { font-size: 13px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--c-stone); margin: 0 0 18px; font-weight: 500; }
.next-steps ol { margin: 0; padding-left: 24px; }
.next-steps li { font-size: 15px; line-height: 1.7; margin-bottom: 10px; }
.thankyou-actions { display: flex; gap: 12px; justify-content: center; margin-top: 32px; }

/* =================================================================
   TALLER (about)
   ================================================================= */
.taller-hero { padding: 64px 48px 80px; max-width: 920px; margin: 0 auto; }
.taller-hero .from { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-stone); margin-bottom: 18px; }
.taller-hero .opener { font-family: var(--font-accent); font-size: 72px; color: var(--c-gold); line-height: 1; margin-bottom: 28px; }
.taller-hero p { font-size: 19px; line-height: 1.8; margin: 0 0 22px; }
.taller-hero .sign { font-family: var(--font-accent); font-size: 36px; color: var(--c-ink); margin-top: 32px; line-height: 1; }
.taller-hero .role { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-stone); margin-top: 6px; }

.taller-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1320px; margin: 0 auto; padding: 0 48px; }
.taller-gallery .photo { aspect-ratio: 3/4; background-size: cover; background-position: center; border-radius: 2px; }
.taller-gallery .photo.wide { grid-column: span 2; aspect-ratio: 6/4; }

.trapillo-explain { padding: 96px 48px; max-width: 920px; margin: 0 auto; }
.trapillo-explain .eyebrow { margin-bottom: 14px; }
.trapillo-explain h2 { font-size: 36px; margin-bottom: 24px; }
.trapillo-explain p { font-size: 17px; line-height: 1.75; color: var(--c-ink); margin: 0 0 18px; max-width: 680px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .wrap, .wrap-narrow { padding: 0 24px; }
  .hero, .pdp, .cart-page, .checkout { grid-template-columns: 1fr; gap: 40px; }
  .hero-photos { height: 480px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .products, .related .products { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .process { grid-template-columns: repeat(2, 1fr); gap: 36px; padding: 56px 24px; }
  .trapillo { grid-template-columns: 1fr; padding: 48px 32px; gap: 32px; }
  .pdp-info h1 { font-size: 32px; }
  .taller-gallery { grid-template-columns: 1fr 1fr; }
  .taller-gallery .photo.wide { grid-column: span 2; }
  .header { padding: 18px 24px; gap: 16px; flex-wrap: wrap; }
  .nav { gap: 18px; font-size: 13px; order: 3; width: 100%; justify-content: center; padding-top: 4px; }
}
@media (max-width: 560px) {
  .products, .related .products { grid-template-columns: 1fr; }
  .field-grid.two { grid-template-columns: 1fr; }
  .hero-photos { height: 380px; }
  .letter .opener { font-size: 44px; }
  .pdp-info h1 { font-size: 28px; }
  .shop-head h1 { font-size: 32px; }
}
