/* =========================================================================
   Wild Coffee — hoja de estilos de la tienda
   ========================================================================= */

:root {
  --ink:        #0B0F0C;
  --bark:       #131A14;
  --pine:       #1B2A1E;
  --moss:       #2F4A36;
  --sage:       #7E9C86;
  --cream:      #F8F4EA;
  --sand:       #E7DCC7;
  --sand-deep:  #D3C4A8;
  --copper:     #B96A2C;
  --copper-lt:  #DE9852;
  --brown:      #6B4326;
  --danger:     #B4442F;
  --ok:         #2F7A4F;

  --shadow-sm: 0 1px 2px rgba(11, 15, 12, .08), 0 2px 8px rgba(11, 15, 12, .06);
  --shadow-md: 0 4px 12px rgba(11, 15, 12, .10), 0 16px 40px rgba(11, 15, 12, .10);
  --shadow-lg: 0 20px 60px rgba(11, 15, 12, .22);

  --radius:    14px;
  --radius-lg: 22px;
  --wrap:      1240px;

  --font-display: 'Bitter', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ------------------------------------------------------------------ base */

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { margin: 0 0 1em; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.5rem, 820px); margin-inline: auto; }

.eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 .9rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--copper);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: ''; width: 28px; height: 2px; background: var(--copper); display: inline-block;
}

.lead { font-size: 1.12rem; color: #4A5449; max-width: 60ch; }

.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-head { max-width: 62ch; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::after {
  content: ''; width: 28px; height: 2px; background: var(--copper); display: inline-block;
}
.section-head.center .lead { margin-inline: auto; }

.dark { background: var(--ink); color: var(--cream); }
.dark .lead { color: #B7C0B5; }
.dark .eyebrow { color: var(--copper-lt); }
.dark .eyebrow::before, .dark .eyebrow::after { background: var(--copper-lt); }

.tinted { background: var(--sand); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ------------------------------------------------------------------ botones */

.btn {
  --btn-bg: var(--copper);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.7rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 2px solid transparent;
  border-radius: 100px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
  box-shadow: 0 4px 14px rgba(185, 106, 44, .28);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(185, 106, 44, .34); }
.btn:active { transform: translateY(0); }
.btn:disabled, .btn[disabled] {
  opacity: .45; cursor: not-allowed; transform: none; box-shadow: none;
}

.btn-dark   { --btn-bg: var(--ink); box-shadow: 0 4px 14px rgba(11,15,12,.24); }
.btn-dark:hover { box-shadow: 0 8px 22px rgba(11,15,12,.3); }
.btn-ghost  { --btn-bg: transparent; --btn-fg: var(--ink); border-color: currentColor; box-shadow: none; }
.btn-ghost:hover { background: var(--ink); color: var(--cream); box-shadow: none; }
.dark .btn-ghost { --btn-fg: var(--cream); }
.dark .btn-ghost:hover { background: var(--cream); color: var(--ink); }
.btn-block  { width: 100%; }
.btn-lg     { padding: 1.15rem 2.2rem; font-size: 1.02rem; }
.btn-sm     { padding: .6rem 1.1rem; font-size: .85rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 700; color: var(--copper);
  border-bottom: 2px solid transparent; padding-bottom: 2px;
  transition: gap .2s var(--ease), border-color .2s var(--ease);
}
.link-arrow:hover { gap: .8rem; border-color: var(--copper); }

/* ------------------------------------------------------------------ topbar */

.announce {
  background: var(--ink);
  color: var(--sand);
  font-size: .76rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-weight: 600;
  padding: .55rem 0;
  overflow: hidden;
}
.announce-track {
  display: flex; gap: 3rem; white-space: nowrap;
  animation: slide 34s linear infinite;
  width: max-content;
}
.announce-track span { display: inline-flex; align-items: center; gap: 3rem; }
.announce-track span::after { content: '•'; color: var(--copper-lt); }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .announce-track { animation: none; }
}

/* ------------------------------------------------------------------ header */

.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(248, 244, 234, .86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(11, 15, 12, .09);
  transition: box-shadow .2s var(--ease);
}
.header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: 74px;
}

.brand { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.brand img { height: 46px; width: auto; }
.brand-text {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.15rem; line-height: 1;
  letter-spacing: -.01em;
}
.brand-text small {
  display: block; font-family: var(--font-body); font-weight: 600;
  font-size: .58rem; letter-spacing: .3em; color: var(--copper); margin-top: 3px;
}

.nav { display: flex; gap: 1.9rem; margin-left: auto; }
.nav a {
  font-size: .9rem; font-weight: 600; position: relative; padding: .3rem 0;
  color: #2B342C;
  transition: color .18s var(--ease);
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--copper); transition: width .22s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--ink); }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: .5rem; margin-left: 1rem; }

.icon-btn {
  width: 44px; height: 44px; display: grid; place-items: center;
  border: 1px solid rgba(11,15,12,.14); border-radius: 50%;
  background: transparent; color: var(--ink); position: relative;
  transition: background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.icon-btn:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.icon-btn svg { width: 20px; height: 20px; }

.cart-count {
  position: absolute; top: -4px; right: -4px;
  min-width: 20px; height: 20px; padding: 0 5px;
  background: var(--copper); color: #fff;
  border-radius: 100px; font-size: .68rem; font-weight: 800;
  display: grid; place-items: center;
  border: 2px solid var(--cream);
}
.cart-count[data-empty='1'] { display: none; }

.burger { display: none; }

@media (max-width: 940px) {
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px);
    background: var(--ink); color: var(--cream);
    flex-direction: column; gap: 0; padding: 6rem 2rem 2rem;
    transform: translateX(100%); transition: transform .3s var(--ease);
    z-index: 70; margin: 0;
  }
  .nav.open { transform: translateX(0); }
  .nav a { color: var(--cream); font-size: 1.15rem; padding: 1rem 0;
           border-bottom: 1px solid rgba(255,255,255,.1); font-family: var(--font-display); }
  .burger { display: grid; margin-left: auto; order: 3; }
  .header-actions { margin-left: auto; order: 2; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(11,15,12,.5); z-index: 65;
    opacity: 0; pointer-events: none; transition: opacity .3s var(--ease);
  }
  .nav-backdrop.show { opacity: 1; pointer-events: auto; }
}

/* ------------------------------------------------------------------ hero */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  min-height: min(88vh, 800px);
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}

.hero-copy {
  display: flex; align-items: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 4rem)
           clamp(3rem, 6vw, 5rem) max(1.25rem, calc((100vw - var(--wrap)) / 2));
  position: relative; z-index: 2;
}
.hero-copy::after {
  content: ''; position: absolute; top: 0; bottom: 0; right: -70px; width: 140px;
  background: linear-gradient(to right, var(--ink), rgba(11, 15, 12, 0));
  pointer-events: none;
}
.hero-inner { width: 100%; }

.hero-media { position: relative; overflow: hidden; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 42%;
  animation: heroZoom 20s var(--ease) forwards;
}
@keyframes heroZoom { from { transform: scale(1.09); } to { transform: scale(1); } }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11, 15, 12, .55), rgba(11, 15, 12, 0) 45%);
}

.hero-stamp {
  position: absolute; right: clamp(1.25rem, 3vw, 2.5rem); bottom: clamp(1.25rem, 3vw, 2.5rem);
  z-index: 3; background: rgba(11, 15, 12, .72);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .16); border-radius: 14px;
  padding: .9rem 1.2rem; display: flex; align-items: center; gap: .8rem;
  max-width: 250px;
}
.hero-stamp svg { width: 26px; height: 26px; color: var(--copper-lt); flex-shrink: 0; }
.hero-stamp strong { display: block; font-family: var(--font-display); font-size: .95rem; color: #fff; }
.hero-stamp span { font-size: .76rem; color: #A7B1A5; line-height: 1.4; }

@media (max-width: 940px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-media { order: -1; height: min(52vh, 420px); }
  .hero-media img { object-position: center 38%; }
  .hero-copy { padding: 2.5rem 1.25rem 3rem; }
  .hero-copy::after { display: none; }
  .hero-stamp { max-width: 210px; }
}

.hero h1 { color: #fff; margin-bottom: 1.1rem; max-width: 14ch; }
.hero h1 em {
  font-style: normal; color: var(--copper-lt);
  display: block;
}
.hero-sub { font-size: clamp(1rem, 1.6vw, 1.22rem); color: #D8DED6; max-width: 46ch; margin-bottom: 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.hero-price {
  display: flex; align-items: baseline; gap: .7rem; margin-bottom: 1.5rem;
}
.hero-price strong { font-family: var(--font-display); font-size: 2.1rem; color: #fff; }
.hero-price del { color: #97A196; font-size: 1.05rem; }
.hero-price .tag {
  background: var(--copper); color: #fff; font-size: .74rem; font-weight: 800;
  padding: .25rem .6rem; border-radius: 6px; letter-spacing: .05em;
}

.hero-badges {
  display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 2.8rem;
  padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.16);
}
.hero-badge { display: flex; align-items: center; gap: .6rem; font-size: .85rem; color: #CBD3C8; font-weight: 500; }
.hero-badge svg { width: 22px; height: 22px; color: var(--copper-lt); flex-shrink: 0; }

/* ------------------------------------------------------------------ tira de confianza */

.trust { background: var(--ink); color: var(--cream); border-top: 1px solid rgba(255,255,255,.08); }
.trust-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1px; background: rgba(255,255,255,.09);
}
.trust-item {
  background: var(--ink); padding: 2rem 1.5rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: .55rem;
}
.trust-item svg { width: 30px; height: 30px; color: var(--copper-lt); }
.trust-item strong { font-family: var(--font-display); font-size: 1rem; }
.trust-item span { font-size: .82rem; color: #9AA598; }

/* ------------------------------------------------------------------ tarjetas de producto */

.grid-products {
  display: grid; gap: 1.8rem;
  grid-template-columns: repeat(auto-fill, minmax(272px, 1fr));
}

.card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  position: relative;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.card-media { position: relative; aspect-ratio: 1; background: var(--sand); overflow: hidden; }
.card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease), opacity .3s var(--ease);
}
.card:hover .card-media img { transform: scale(1.06); }
.card-media .alt-img { position: absolute; inset: 0; opacity: 0; }
.card:hover .alt-img { opacity: 1; }

.badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--copper); color: #fff;
  font-size: .72rem; font-weight: 800; letter-spacing: .04em;
  padding: .3rem .65rem; border-radius: 6px;
}
.badge.soldout { background: var(--ink); }

.card-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; gap: .5rem; }
.card-cat { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--copper); font-weight: 700; }
.card-title { font-family: var(--font-display); font-size: 1.12rem; font-weight: 800; line-height: 1.25; margin: 0; }
.card-tagline { font-size: .87rem; color: #5D665C; margin: 0; }
.card-swatches { display: flex; gap: .35rem; margin-top: .2rem; }
.swatch-dot {
  width: 15px; height: 15px; border-radius: 50%;
  border: 1px solid rgba(11,15,12,.22); box-shadow: inset 0 0 0 2px #fff;
}
.card-foot { margin-top: auto; padding-top: .9rem; display: flex; align-items: baseline; gap: .6rem; }
.price { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; }
.price-old { color: #8B948A; text-decoration: line-through; font-size: .92rem; }
.card-link { position: absolute; inset: 0; z-index: 3; }

/* ------------------------------------------------------------------ bloques alternos */

.feature {
  display: grid; gap: clamp(2rem, 5vw, 4.5rem);
  grid-template-columns: 1fr 1fr; align-items: center;
}
.feature + .feature { margin-top: clamp(3rem, 7vw, 6rem); }
.feature.reverse .feature-media { order: 2; }
.feature-media {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3; background: var(--sand);
}
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-list { list-style: none; padding: 0; margin: 1.6rem 0 2rem; display: grid; gap: .85rem; }
.feature-list li { display: flex; gap: .75rem; align-items: flex-start; font-size: .96rem; }
.feature-list svg { width: 20px; height: 20px; color: var(--copper); flex-shrink: 0; margin-top: 3px; }

@media (max-width: 860px) {
  .feature { grid-template-columns: 1fr; }
  .feature.reverse .feature-media { order: 0; }
}

/* ------------------------------------------------------------------ colores */

.colors-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.2rem; }
.color-card {
  border-radius: var(--radius); overflow: hidden; background: #fff;
  box-shadow: var(--shadow-sm); text-align: center; padding-bottom: 1rem;
  transition: transform .25s var(--ease);
}
.color-card:hover { transform: translateY(-5px); }
.color-card img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.color-card strong { display: block; margin-top: .8rem; font-family: var(--font-display); font-size: .98rem; }
.color-card span { font-size: .78rem; color: #6D766C; }
.dark .color-card { background: #17201A; }
.dark .color-card span { color: #97A196; }

/* ------------------------------------------------------------------ testimonios */

.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.quote {
  background: #fff; border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 1rem;
}
.stars { color: var(--copper); letter-spacing: .12em; font-size: .95rem; }
.quote p { font-size: .97rem; margin: 0; color: #3B443A; }
.quote footer { margin-top: auto; font-size: .85rem; }
.quote footer strong { font-family: var(--font-display); display: block; font-size: .98rem; }
.quote footer span { color: #78806F; }

/* ------------------------------------------------------------------ instagram */

.ig-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: .6rem;
}
.ig-tile {
  position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 12px;
  background: var(--pine);
}
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.ig-tile:hover img { transform: scale(1.08); }
.ig-tile::after {
  content: ''; position: absolute; inset: 0; background: rgba(11,15,12,.35);
  opacity: 0; transition: opacity .25s var(--ease);
}
.ig-tile:hover::after { opacity: 1; }
.ig-tile .ig-icon {
  position: absolute; inset: 0; display: grid; place-items: center; z-index: 2;
  opacity: 0; transition: opacity .25s var(--ease); color: #fff;
}
.ig-tile:hover .ig-icon { opacity: 1; }
.ig-tile .ig-icon svg { width: 30px; height: 30px; }

.ig-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2rem; }

/* ------------------------------------------------------------------ blog */

.posts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.8rem; }
.post-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post-card .thumb { aspect-ratio: 16/10; background: var(--sand); overflow: hidden; }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post-card:hover .thumb img { transform: scale(1.05); }
.post-card .body { padding: 1.5rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.post-meta { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--copper); font-weight: 700; }
.post-card h3 { margin: 0; font-size: 1.15rem; }
.post-card p { font-size: .9rem; color: #5D665C; margin: 0; }
.post-card .more { margin-top: auto; padding-top: .8rem; font-weight: 700; font-size: .87rem; color: var(--copper); }

/* ------------------------------------------------------------------ newsletter */

.newsletter { background: var(--pine); color: var(--cream); border-radius: var(--radius-lg); padding: clamp(2.5rem, 5vw, 4rem); }
.newsletter-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.5rem; align-items: center; }
.newsletter h2 { color: #fff; }
.newsletter p { color: #B4BFB2; margin: 0; }
.form-inline { display: flex; gap: .6rem; flex-wrap: wrap; }
.form-inline input {
  flex: 1 1 220px; padding: 1rem 1.2rem; border-radius: 100px; border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.07); color: #fff; font: inherit;
}
.form-inline input::placeholder { color: #8F998D; }
.form-inline input:focus { outline: 2px solid var(--copper-lt); outline-offset: 1px; }
@media (max-width: 780px) { .newsletter-inner { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------ footer */

.footer { background: var(--ink); color: #A8B2A6; padding: 4rem 0 2rem; font-size: .9rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer h4 {
  font-family: var(--font-body); font-size: .74rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--cream); margin: 0 0 1.1rem; font-weight: 700;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer a:hover { color: var(--copper-lt); }
.footer-brand img { height: 62px; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: .92; }
.socials { display: flex; gap: .6rem; margin-top: 1.2rem; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.18); color: var(--cream);
  transition: background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.socials a:hover { background: var(--copper); border-color: var(--copper); color: #fff; }
.socials svg { width: 19px; height: 19px; }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .8rem;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------ página de producto */

.pdp { padding: 2.5rem 0 4rem; }
.breadcrumb { font-size: .8rem; color: #78806F; margin-bottom: 1.6rem; display: flex; gap: .5rem; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--copper); }

.pdp-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }

.gallery { position: sticky; top: 96px; }
.gallery-main {
  border-radius: var(--radius-lg); overflow: hidden; background: var(--sand);
  aspect-ratio: 1; box-shadow: var(--shadow-md); position: relative;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(74px, 1fr)); gap: .55rem; margin-top: .7rem; }
.gallery-thumbs button {
  aspect-ratio: 1; border-radius: 10px; overflow: hidden; border: 2px solid transparent;
  padding: 0; background: var(--sand); transition: border-color .18s var(--ease), opacity .18s var(--ease);
  opacity: .7;
}
.gallery-thumbs button.active { border-color: var(--ink); opacity: 1; }
.gallery-thumbs button:hover { opacity: 1; }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.buybox { }
.pdp-title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: .5rem; }
.pdp-tagline { color: #4A5449; font-size: 1.02rem; margin-bottom: 1.3rem; }

.pdp-price { display: flex; align-items: baseline; gap: .8rem; flex-wrap: wrap; margin-bottom: .4rem; }
.pdp-price .now { font-family: var(--font-display); font-size: 2.3rem; font-weight: 800; }
.pdp-price del { color: #8B948A; font-size: 1.1rem; }
.pdp-price .off { background: var(--copper); color: #fff; padding: .25rem .6rem; border-radius: 6px; font-size: .78rem; font-weight: 800; }
.pdp-cuotas { font-size: .87rem; color: #6D766C; margin-bottom: 1.5rem; }

.rating-row { display: flex; align-items: center; gap: .6rem; font-size: .85rem; color: #6D766C; margin-bottom: 1rem; }

.option-block { margin-bottom: 1.5rem; }
.option-label {
  display: flex; align-items: baseline; gap: .5rem; margin-bottom: .7rem;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
}
.option-label b { font-size: .92rem; letter-spacing: 0; text-transform: none; font-weight: 700; color: var(--ink); }

.swatches { display: flex; flex-wrap: wrap; gap: .65rem; }
.swatch { position: relative; }
.swatch input { position: absolute; opacity: 0; width: 0; height: 0; }
.swatch label {
  display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 50%;
  border: 2px solid rgba(11,15,12,.16); cursor: pointer;
  transition: transform .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
  position: relative;
}
.swatch label span {
  width: 34px; height: 34px; border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(11,15,12,.14);
}
.swatch input:checked + label {
  border-color: var(--ink); transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(11,15,12,.18);
}
.swatch input:focus-visible + label { outline: 3px solid var(--copper); outline-offset: 3px; }
.swatch.agotado label { cursor: not-allowed; opacity: .38; }
.swatch.agotado label::after {
  content: ''; position: absolute; left: 4px; right: 4px; top: 50%; height: 2px;
  background: var(--danger); transform: rotate(-45deg);
}

.qty-row { display: flex; gap: .8rem; align-items: stretch; margin-bottom: 1rem; }
.qty {
  display: flex; align-items: center; border: 2px solid rgba(11,15,12,.14);
  border-radius: 100px; overflow: hidden; flex-shrink: 0;
}
.qty button {
  width: 44px; height: 100%; min-height: 52px; border: 0; background: transparent;
  font-size: 1.25rem; color: var(--ink); transition: background .15s var(--ease);
}
.qty button:hover { background: rgba(11,15,12,.06); }
.qty input {
  width: 44px; text-align: center; border: 0; font: inherit; font-weight: 700;
  background: transparent; -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.stock-line { font-size: .85rem; margin-bottom: 1.2rem; display: flex; align-items: center; gap: .5rem; }
.stock-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); }
.stock-line.low .stock-dot { background: var(--copper); }
.stock-line.none .stock-dot { background: var(--danger); }

.pdp-perks { list-style: none; padding: 1.3rem 0 0; margin: 1.3rem 0 0; border-top: 1px solid rgba(11,15,12,.12); display: grid; gap: .75rem; }
.pdp-perks li { display: flex; gap: .7rem; align-items: flex-start; font-size: .88rem; color: #3E463D; }
.pdp-perks svg { width: 19px; height: 19px; color: var(--copper); flex-shrink: 0; margin-top: 2px; }

.accordion { border-top: 1px solid rgba(11,15,12,.12); }
.accordion details { border-bottom: 1px solid rgba(11,15,12,.12); }
.accordion summary {
  list-style: none; cursor: pointer; padding: 1.15rem 0;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: '+'; font-size: 1.4rem; color: var(--copper); font-family: var(--font-body);
  transition: transform .2s var(--ease); line-height: 1;
}
.accordion details[open] summary::after { content: '−'; }
.accordion .content { padding-bottom: 1.3rem; font-size: .93rem; color: #414A40; }

/* contenido enriquecido (markdown) */
.rich { font-size: 1rem; color: #333B32; }
.rich h2 { font-size: 1.55rem; margin: 2rem 0 .7rem; }
.rich h3 { font-size: 1.18rem; margin: 1.7rem 0 .6rem; }
.rich ul, .rich ol { padding-left: 1.2rem; margin: 0 0 1.1rem; display: grid; gap: .45rem; }
.rich li::marker { color: var(--copper); }
.rich a { color: var(--copper); text-decoration: underline; text-underline-offset: 3px; }
.rich blockquote {
  margin: 1.6rem 0; padding: 1.1rem 1.5rem; border-left: 4px solid var(--copper);
  background: rgba(185,106,44,.08); border-radius: 0 10px 10px 0; font-size: 1.05rem;
}
.rich blockquote p:last-child { margin: 0; }
.rich img { border-radius: var(--radius); margin: 1.5rem 0; }
.rich table { width: 100%; border-collapse: collapse; margin: 1.3rem 0; font-size: .92rem; }
.rich th, .rich td { text-align: left; padding: .7rem .9rem; border-bottom: 1px solid rgba(11,15,12,.12); }
.rich th { font-weight: 700; background: rgba(11,15,12,.04); }
.rich td:first-child { font-weight: 600; width: 42%; }
.rich hr { border: 0; border-top: 1px solid rgba(11,15,12,.14); margin: 2rem 0; }
.rich-scroll { overflow-x: auto; }

@media (max-width: 900px) {
  .pdp-grid { grid-template-columns: 1fr; }
  .gallery { position: static; }
}

/* ------------------------------------------------------------------ carrito lateral */

.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(11,15,12,.55); z-index: 80;
  opacity: 0; pointer-events: none; transition: opacity .3s var(--ease);
  backdrop-filter: blur(2px);
}
.drawer-backdrop.show { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(94vw, 430px);
  background: var(--cream); z-index: 90; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .32s var(--ease);
  box-shadow: var(--shadow-lg);
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.3rem 1.5rem; border-bottom: 1px solid rgba(11,15,12,.12);
}
.drawer-head h3 { margin: 0; font-size: 1.15rem; }
.drawer-body { flex: 1; overflow-y: auto; padding: 1.2rem 1.5rem; }
.drawer-foot { padding: 1.3rem 1.5rem; border-top: 1px solid rgba(11,15,12,.12); background: #fff; }

.mini-item { display: flex; gap: .9rem; padding: .9rem 0; border-bottom: 1px solid rgba(11,15,12,.09); }
.mini-item img { width: 72px; height: 72px; border-radius: 10px; object-fit: cover; background: var(--sand); flex-shrink: 0; }
.mini-info { flex: 1; min-width: 0; }
.mini-info strong { display: block; font-size: .9rem; font-weight: 700; line-height: 1.3; }
.mini-variant { font-size: .78rem; color: #6D766C; display: flex; align-items: center; gap: .35rem; margin-top: 2px; }
.mini-variant i { width: 11px; height: 11px; border-radius: 50%; border: 1px solid rgba(11,15,12,.2); display: inline-block; }
.mini-row { display: flex; align-items: center; justify-content: space-between; margin-top: .5rem; }
.mini-qty { display: flex; align-items: center; gap: .3rem; border: 1px solid rgba(11,15,12,.16); border-radius: 100px; }
.mini-qty button { width: 26px; height: 26px; border: 0; background: transparent; border-radius: 50%; font-size: .95rem; line-height: 1; }
.mini-qty button:hover { background: rgba(11,15,12,.08); }
.mini-qty span { min-width: 20px; text-align: center; font-size: .82rem; font-weight: 700; }
.mini-price { font-weight: 800; font-size: .92rem; }
.mini-remove { border: 0; background: none; color: #8B948A; font-size: .76rem; text-decoration: underline; padding: 0; }
.mini-remove:hover { color: var(--danger); }

.totals { display: grid; gap: .5rem; margin-bottom: 1rem; font-size: .9rem; }
.totals div { display: flex; justify-content: space-between; }
.totals .grand { font-size: 1.15rem; font-weight: 800; font-family: var(--font-display);
                 padding-top: .6rem; border-top: 1px solid rgba(11,15,12,.12); }
.totals .muted { color: #6D766C; font-size: .84rem; }
.totals .save { color: var(--ok); }

.empty-state { text-align: center; padding: 3rem 1rem; color: #6D766C; }
.empty-state svg { width: 56px; height: 56px; color: var(--sand-deep); margin: 0 auto 1rem; }

/* ------------------------------------------------------------------ carrito / checkout */

.page-head { padding: 2.5rem 0 1rem; }
.page-head h1 { margin-bottom: .3rem; }

.checkout-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, .8fr); gap: clamp(2rem, 4vw, 3.5rem); align-items: start; padding-bottom: 4rem; }
@media (max-width: 940px) { .checkout-grid { grid-template-columns: 1fr; } }

.panel { background: #fff; border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow-sm); }
.panel + .panel { margin-top: 1.5rem; }
.panel h2 { font-size: 1.25rem; margin-bottom: .3rem; }
.panel .hint { font-size: .87rem; color: #6D766C; margin-bottom: 1.5rem; }

.summary { position: sticky; top: 96px; }

.field { display: grid; gap: .4rem; margin-bottom: 1.1rem; }
.field label { font-size: .8rem; font-weight: 700; letter-spacing: .02em; }
.field label .req { color: var(--copper); }
.field input, .field select, .field textarea {
  padding: .85rem 1rem; border: 1.5px solid rgba(11,15,12,.16); border-radius: 10px;
  font: inherit; background: #fff; color: var(--ink); width: 100%;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--copper); box-shadow: 0 0 0 3px rgba(185,106,44,.16);
}
.field textarea { resize: vertical; min-height: 88px; }
.field .err { color: var(--danger); font-size: .78rem; font-weight: 600; }
.field.has-error input, .field.has-error select { border-color: var(--danger); }
.field .help { font-size: .76rem; color: #78806F; }

.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.row-3 { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1.1rem; }
@media (max-width: 620px) { .row-2, .row-3 { grid-template-columns: 1fr; } }

.choice { display: block; margin-bottom: .8rem; }
.choice input { position: absolute; opacity: 0; }
.choice .box {
  display: flex; gap: .9rem; align-items: flex-start; padding: 1.1rem 1.2rem;
  border: 1.5px solid rgba(11,15,12,.16); border-radius: 12px; cursor: pointer;
  transition: border-color .18s var(--ease), background .18s var(--ease);
}
.choice input:checked + .box { border-color: var(--copper); background: rgba(185,106,44,.06); box-shadow: 0 0 0 2px rgba(185,106,44,.18); }
.choice input:focus-visible + .box { outline: 3px solid var(--copper); outline-offset: 2px; }
.choice .radio {
  width: 20px; height: 20px; border-radius: 50%; border: 2px solid rgba(11,15,12,.28);
  flex-shrink: 0; margin-top: 2px; display: grid; place-items: center;
}
.choice input:checked + .box .radio { border-color: var(--copper); }
.choice input:checked + .box .radio::after {
  content: ''; width: 10px; height: 10px; border-radius: 50%; background: var(--copper);
}
.choice .box strong { display: block; font-size: .95rem; }
.choice .box small { color: #6D766C; font-size: .82rem; line-height: 1.5; display: block; margin-top: 2px; }
.choice .box .tag {
  margin-left: auto; background: var(--pine); color: var(--cream); font-size: .68rem;
  font-weight: 800; padding: .25rem .55rem; border-radius: 6px; white-space: nowrap; letter-spacing: .04em;
}

.cart-table { width: 100%; border-collapse: collapse; }
.cart-table td { padding: 1.1rem 0; border-bottom: 1px solid rgba(11,15,12,.1); vertical-align: middle; }
.cart-table .thumb img { width: 88px; height: 88px; border-radius: 12px; object-fit: cover; background: var(--sand); }
.cart-table .name strong { font-family: var(--font-display); font-size: 1rem; }
.cart-line-price { font-weight: 800; white-space: nowrap; }

.notice {
  padding: 1rem 1.2rem; border-radius: 12px; font-size: .89rem; display: flex; gap: .7rem;
  align-items: flex-start; margin-bottom: 1.3rem;
}
.notice svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.notice.info  { background: rgba(47,74,54,.1); color: #24382A; }
.notice.warn  { background: rgba(185,106,44,.12); color: #7A4315; }
.notice.error { background: rgba(180,68,47,.12); color: #7E2A1B; }
.notice.ok    { background: rgba(47,122,79,.12); color: #1E5335; }

.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 120%);
  background: var(--ink); color: var(--cream); padding: .9rem 1.4rem; border-radius: 100px;
  font-size: .9rem; font-weight: 600; z-index: 120; box-shadow: var(--shadow-lg);
  transition: transform .35s var(--ease); display: flex; align-items: center; gap: .6rem;
}
.toast.show { transform: translate(-50%, 0); }
.toast svg { width: 18px; height: 18px; color: var(--copper-lt); }

/* ------------------------------------------------------------------ gracias / seguimiento */

.receipt { background: #fff; border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.8rem); box-shadow: var(--shadow-sm); }
.receipt-head { text-align: center; padding-bottom: 2rem; border-bottom: 1px solid rgba(11,15,12,.1); margin-bottom: 2rem; }
.receipt-head .check {
  width: 70px; height: 70px; border-radius: 50%; background: rgba(47,122,79,.14);
  display: grid; place-items: center; margin: 0 auto 1.2rem; color: var(--ok);
}
.receipt-head .check svg { width: 34px; height: 34px; }
.receipt-head.pending .check { background: rgba(185,106,44,.14); color: var(--copper); }
.order-code {
  display: inline-block; font-family: var(--font-display); font-size: 1.3rem; font-weight: 800;
  background: var(--sand); padding: .5rem 1.1rem; border-radius: 10px; letter-spacing: .04em;
}
.data-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.6rem; }
.data-grid h4 { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--copper); margin: 0 0 .5rem; font-family: var(--font-body); }
.data-grid p { margin: 0; font-size: .92rem; line-height: 1.7; }

.status-pill {
  display: inline-flex; align-items: center; gap: .4rem; padding: .3rem .8rem; border-radius: 100px;
  font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
}
.status-pill::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.status-pendiente, .status-esperando_transferencia { background: rgba(185,106,44,.16); color: #7A4315; }
.status-pagado, .status-entregado { background: rgba(47,122,79,.16); color: #1E5335; }
.status-rechazado, .status-cancelado, .status-anulado { background: rgba(180,68,47,.14); color: #7E2A1B; }
.status-preparando, .status-despachado, .status-sin_pasarela { background: rgba(47,74,54,.14); color: #24382A; }

/* ------------------------------------------------------------------ artículo */

.article-hero { position: relative; height: min(58vh, 520px); background: var(--ink); overflow: hidden; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.article-hero .overlay {
  position: absolute; inset: 0; display: flex; align-items: flex-end;
  background: linear-gradient(to top, rgba(11,15,12,.95), rgba(11,15,12,.15));
}
.article-hero .overlay .wrap { padding-bottom: 3rem; color: var(--cream); }
.article-hero h1 { color: #fff; max-width: 22ch; }
.article-body { padding: 3.5rem 0 4.5rem; }

/* ------------------------------------------------------------------ estados vacíos y 404 */

.center-page { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: 4rem 1rem; }

/* ------------------------------------------------------------------ animación al hacer scroll */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media img { animation: none; }
  html { scroll-behavior: auto; }
}

/* ------------------------------------------------------------------ whatsapp flotante */

.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 70;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 6px 20px rgba(37,211,102,.4);
  transition: transform .2s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
@media (max-width: 640px) { .wa-float { width: 50px; height: 50px; bottom: 16px; right: 16px; } }

/* ------------------------------------------------------------------ envío cotizado */

.envio-precio { margin-left: auto; text-align: right; white-space: nowrap; }
.envio-precio b { font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; }
.choice .box small { padding-right: .5rem; }
#envioEstado { margin-bottom: 1.2rem; }

/* ------------------------------------------------------------------ línea de tiempo del envío */

.timeline { list-style: none; padding: 0; margin: 0; position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 7px; top: 10px; bottom: 10px;
  width: 2px; background: var(--sand-deep);
}
.timeline li {
  position: relative; padding: 0 0 1.4rem 2.1rem; display: flex; gap: .8rem;
}
.timeline li:last-child { padding-bottom: 0; }
.t-dot {
  position: absolute; left: 0; top: 5px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--cream); border: 3px solid var(--sand-deep); z-index: 1;
}
.timeline li.now .t-dot { border-color: var(--copper); background: var(--copper); box-shadow: 0 0 0 4px rgba(185,106,44,.18); }
.timeline li strong { font-size: .95rem; display: block; }
.timeline li.now strong { color: var(--copper); }
.t-motive { font-size: .85rem; color: #5D665C; display: block; }
.t-meta { font-size: .8rem; color: #78806F; margin-top: .2rem; }

/* =========================================================================
   Landing estática — bloques propios de index.html
   ========================================================================= */

/* botón de compra del header */
.header-buy { padding: .6rem 1.2rem; }
@media (max-width: 940px) { .header-buy { display: none; } }

/* pasos 01 · 02 · 03 */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.step {
  background: #fff; border-radius: var(--radius-lg); padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm); position: relative;
}
.step-num {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 900;
  color: var(--sand-deep); line-height: 1; display: block; margin-bottom: .6rem;
}
.step h3 { margin: 0 0 .5rem; font-size: 1.15rem; }
.step p { margin: 0; font-size: .93rem; color: #5D665C; }

/* caja de compra */
.qty-row .btn-block { flex: 1; }
.total-line {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.2rem; margin-bottom: 1rem;
  background: var(--sand); border-radius: 12px; font-size: .9rem;
}
.total-line strong { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; }
.buybox .btn-ghost.btn-block { margin-top: .6rem; }
.rating-row .stars { font-size: 1rem; }

/* incluye + especificaciones */
.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; align-items: start; }
.specs-grid .panel h3 { margin-bottom: 1.2rem; }
.specs-grid .feature-list { margin: 0; }
.specs-grid table { margin: 0; }
.specs-grid th { text-align: right; font-weight: 700; background: transparent; }
@media (max-width: 860px) { .specs-grid { grid-template-columns: 1fr; } }

/* contacto final */
.contact-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.contact-actions .btn { flex: 1 1 200px; }

/* barra fija de compra en móvil */
.sticky-buy {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 75;
  display: none; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom));
  background: rgba(11, 15, 12, .94);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: var(--cream);
  transform: translateY(110%); transition: transform .3s var(--ease);
}
.sticky-buy.show { transform: translateY(0); }
.sticky-info strong { display: block; font-family: var(--font-display); font-size: 1.15rem; color: #fff; line-height: 1.2; }
.sticky-info span { font-size: .76rem; color: #9AA598; }
@media (max-width: 720px) {
  .sticky-buy { display: flex; }
  .wa-float { bottom: 82px; }
}

/* ------------------------------------------------------------------ blog estático */

.article-hero h1 { margin-bottom: .6rem; }
.article-meta { font-size: .85rem; color: #B7C0B5; margin: 0; }
.article-body .breadcrumb { margin-bottom: 2rem; }

/* llamado a la acción dentro del artículo */
.post-cta {
  display: grid; grid-template-columns: 1.4fr auto; gap: 2rem; align-items: center;
  background: var(--pine); color: var(--cream);
  border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 2.6rem);
  margin: 3rem 0 0;
}
.post-cta h2 { color: #fff; font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.post-cta p { color: #B4BFB2; margin: 0; font-size: .95rem; }
.post-cta-actions { display: grid; gap: .8rem; justify-items: center; }
.post-cta-actions strong { font-family: var(--font-display); font-size: 2rem; color: #fff; }
@media (max-width: 720px) {
  .post-cta { grid-template-columns: 1fr; }
  .post-cta-actions { justify-items: stretch; text-align: center; }
}
