/* ═══════════════════════════════════════════════════════
   ToyNest — Big Truck Caçamba
   Lúdico Máximo: formas orgânicas, cores primárias
   explosivas, tipografia grossa, energia de brinquedo
═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Boogaloo&family=Nunito:wght@400;700;800;900&display=swap');

:root {
  --yellow:   #FFD600;
  --red:      #FF3B30;
  --blue:     #0A84FF;
  --green:    #34C759;
  --orange:   #FF9500;
  --purple:   #AF52DE;
  --ink:      #1A1A2E;
  --paper:    #FFFFFF;
  --bg:       #FFF9EC;
  --blob1:    #FFE066;
  --blob2:    #AEDFF7;
  --blob3:    #FFCDD2;
  --r-card:   28px;
  --r-pill:   999px;
  --max:      1200px;
  --fun-font: 'Boogaloo', cursive;
  --body-font:'Nunito', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

h1,h2,h3,h4 {
  font-family: var(--fun-font);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: .5px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ── Topbar ───────────────────────────────────────── */
.topbar {
  background: var(--ink);
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  padding: 9px 0;
  text-align: center;
  letter-spacing: .4px;
}
.topbar strong { color: var(--yellow); }

/* ── Nav ─────────────────────────────────────────── */
.nav {
  background: var(--paper);
  border-bottom: 3px solid var(--ink);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max);
  margin: 0 auto;
  gap: 20px;
}
.logo {
  font-family: var(--fun-font);
  font-size: 2rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: .5px;
}
.logo-icon {
  width: 38px; height: 38px;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-4deg);
}
.nav-links { display: flex; gap: 24px; font-weight: 800; font-size: .9rem; }
.nav-links a { position: relative; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 3px;
  background: var(--orange);
  border-radius: 2px;
  transition: width .2s;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--red);
  color: #fff;
  font-weight: 900;
  font-family: var(--fun-font);
  font-size: 1.1rem;
  padding: 10px 22px;
  border: 3px solid var(--ink);
  border-radius: var(--r-pill);
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .12s, box-shadow .12s;
  letter-spacing: .5px;
}
.nav-cta:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }

/* ══════════════════════════════════════════════════
   HERO — full-screen split (imagem esquerda 55% / info direita)
══════════════════════════════════════════════════ */
.hero {
  min-height: calc(100vh - 105px);
  display: grid;
  grid-template-columns: 55fr 45fr;
  position: relative;
  overflow: hidden;
}

/* Painel esquerdo — imagem */
.hero-visual {
  background: var(--yellow);
  border-right: 4px solid var(--ink);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  overflow: hidden;
}

/* blobs decorativos de fundo */
.hero-visual::before {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  background: var(--orange);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  top: -80px; left: -80px;
  opacity: .35;
  animation: morph 8s ease-in-out infinite;
}
.hero-visual::after {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  background: var(--red);
  border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
  bottom: -60px; right: -60px;
  opacity: .25;
  animation: morph 11s ease-in-out infinite reverse;
}
@keyframes morph {
  0%,100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
  33%      { border-radius: 30% 70% 40% 60% / 60% 30% 70% 40%; }
  66%      { border-radius: 50% 50% 60% 40% / 40% 60% 50% 50%; }
}

.hero-img-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1/1;
  background: rgba(255,255,255,.55);
  border: 4px solid var(--ink);
  border-radius: 50% 42% 48% 46% / 44% 50% 46% 52%;
  box-shadow: 8px 8px 0 var(--ink);
  display: grid;
  place-items: center;
  padding: 32px;
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0px) rotate(-1deg); }
  50%      { transform: translateY(-14px) rotate(1deg); }
}
.hero-img-wrap img { object-fit: contain; max-height: 100%; filter: drop-shadow(4px 8px 12px rgba(0,0,0,.18)); }

/* Thumbs laterais */
.hero-thumbs {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 3;
}
.hero-thumbs button {
  all: unset;
  cursor: pointer;
  width: 62px; height: 62px;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 16px;
  display: grid;
  place-items: center;
  padding: 6px;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform .12s;
}
.hero-thumbs button:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--ink); }
.hero-thumbs button.active { background: var(--yellow); }
.hero-thumbs img { object-fit: contain; max-height: 100%; }

/* Stickers decorativos */
.sticker {
  position: absolute;
  z-index: 4;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 50%;
  font-family: var(--fun-font);
  font-size: .85rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
  box-shadow: 3px 3px 0 var(--ink);
  padding: 10px;
}
.sticker-inmetro {
  width: 84px; height: 84px;
  top: 28px; right: 28px;
  background: var(--green);
  color: #fff;
  transform: rotate(10deg);
  animation: spin-slow 12s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(370deg); } }
.sticker-anos {
  width: 76px; height: 76px;
  bottom: 34px; left: 100px;
  background: var(--blue);
  color: #fff;
  transform: rotate(-8deg);
  font-size: 1rem;
}

/* Painel direito — info */
.hero-info {
  background: var(--paper);
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  overflow-y: auto;
}

.crumbs { font-size: .82rem; color: #888; margin-bottom: 18px; }
.crumbs a { color: #888; }
.crumbs a:hover { color: var(--ink); }

.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.badge {
  font-weight: 900;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .6px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  border: 2px solid var(--ink);
}
.badge.b1 { background: var(--green); color: #fff; }
.badge.b2 { background: var(--yellow); color: var(--ink); }
.badge.b3 { background: var(--blue); color: #fff; }

.hero-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  margin-bottom: 12px;
  color: var(--ink);
  line-height: 1.05;
}
.hero-subtitle {
  font-size: 1rem;
  color: #555;
  max-width: 42ch;
  margin-bottom: 20px;
  line-height: 1.6;
}

.rating { display: flex; align-items: center; gap: 8px; margin-bottom: 22px; font-size: .88rem; color: #777; }
.stars { color: var(--orange); font-size: 1rem; letter-spacing: 2px; }

/* Price card */
.price-card {
  background: var(--bg);
  border: 3px solid var(--ink);
  border-radius: var(--r-card);
  padding: 20px 22px;
  margin-bottom: 20px;
  box-shadow: 5px 5px 0 var(--ink);
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: .4;
}
.price-from { font-size: .9rem; color: #999; text-decoration: line-through; font-weight: 700; }
.price-pix {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin: 4px 0 6px;
}
.price-big {
  font-family: var(--fun-font);
  font-size: 3rem;
  color: var(--red);
  letter-spacing: 1px;
}
.price-tag {
  background: var(--green);
  color: #fff;
  font-weight: 900;
  font-size: .72rem;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  border: 2px solid var(--ink);
  text-transform: uppercase;
}
.price-parcela { font-size: .9rem; color: #666; font-weight: 700; }
.price-parcela strong { color: var(--ink); }

/* Color selector */
.color-pick { margin-bottom: 18px; }
.color-pick .lbl { font-weight: 900; font-size: .82rem; text-transform: uppercase; letter-spacing: .6px; margin-bottom: 8px; }
.color-pick .opts { display: flex; gap: 10px; flex-wrap: wrap; }
.color-pick button {
  all: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 2px solid var(--ink);
  border-radius: var(--r-pill);
  background: var(--paper);
  font-weight: 800;
  font-size: .88rem;
  transition: .12s;
}
.color-pick button:hover,
.color-pick button.active { background: var(--yellow); box-shadow: 3px 3px 0 var(--ink); transform: translate(-1px,-1px); }
.swatch { width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--ink); }

/* Qty + buy row */
.buy-row { display: flex; gap: 12px; align-items: stretch; margin-bottom: 16px; }
.qty {
  display: flex;
  align-items: center;
  border: 3px solid var(--ink);
  border-radius: var(--r-pill);
  background: var(--paper);
  overflow: hidden;
}
.qty button {
  all: unset;
  cursor: pointer;
  padding: 0 16px;
  height: 54px;
  font-size: 1.4rem;
  font-weight: 900;
  transition: background .1s;
}
.qty button:hover { background: var(--yellow); }
.qty input { width: 44px; text-align: center; font-weight: 900; font-size: 1.1rem; border: none; background: transparent; outline: none; }

.btn-buy {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  border: 3px solid var(--ink);
  border-radius: var(--r-pill);
  height: 54px;
  font-family: var(--fun-font);
  font-size: 1.3rem;
  letter-spacing: .5px;
  cursor: pointer;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .12s, box-shadow .12s;
  text-decoration: none;
}
.btn-buy:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 var(--ink); }
.btn-buy:active { transform: translate(1px,1px); box-shadow: 2px 2px 0 var(--ink); }

/* Trust pills */
.trust { display: flex; flex-wrap: wrap; gap: 8px; }
.trust-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border: 2px solid var(--ink);
  border-radius: var(--r-pill);
  background: var(--paper);
  font-size: .82rem;
  font-weight: 800;
  box-shadow: 2px 2px 0 var(--ink);
}
.trust-pill span { font-size: 1rem; }

/* ══════════════════════════════════════════════════
   STRIP ANIMADO
══════════════════════════════════════════════════ */
.strip {
  background: var(--ink);
  color: var(--yellow);
  padding: 16px 0;
  overflow: hidden;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.strip-track {
  display: flex;
  gap: 60px;
  font-family: var(--fun-font);
  font-size: 1.4rem;
  letter-spacing: .8px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.strip-track span { display: flex; align-items: center; gap: 60px; }
.dot-red  { color: var(--red); }
.dot-blue { color: var(--blue); }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══════════════════════════════════════════════════
   SEÇÕES — títulos com wobbly underline
══════════════════════════════════════════════════ */
.section { padding: 72px 0; }
.section-alt { background: #EBF5FF; border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.section-alt2 { background: #FFF0F5; border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }

.sec-head { text-align: center; margin-bottom: 48px; }
.sec-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: var(--r-pill);
  padding: 6px 16px;
  font-weight: 900;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 14px;
  box-shadow: 3px 3px 0 var(--ink);
}
.sec-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}
.sec-title::after {
  content: '';
  display: block;
  height: 8px;
  background: var(--orange);
  border-radius: 4px;
  margin-top: 6px;
  transform: rotate(-1.2deg);
  border: 2px solid var(--ink);
}
.sec-lead { max-width: 58ch; margin: 16px auto 0; color: #555; font-size: 1rem; }

/* ── Grid de benefícios ───────────────────────── */
.feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feat-card {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--r-card);
  padding: 28px 24px;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform .15s, box-shadow .15s;
  position: relative;
  overflow: hidden;
}
.feat-card:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--ink); }
.feat-card::before {
  content: '';
  position: absolute;
  top: -28px; right: -28px;
  width: 90px; height: 90px;
  border-radius: 50%;
  opacity: .18;
}
.feat-card.c1::before { background: var(--yellow); }
.feat-card.c2::before { background: var(--blue); }
.feat-card.c3::before { background: var(--red); }
.feat-card.c4::before { background: var(--orange); }
.feat-card.c5::before { background: var(--green); }
.feat-card.c6::before { background: var(--purple); }

.feat-icon {
  width: 60px; height: 60px;
  border: 3px solid var(--ink);
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  margin-bottom: 16px;
  box-shadow: 3px 3px 0 var(--ink);
}
.c1 .feat-icon { background: var(--yellow); }
.c2 .feat-icon { background: var(--blue); }
.c3 .feat-icon { background: var(--red); }
.c4 .feat-icon { background: var(--orange); }
.c5 .feat-icon { background: var(--green); }
.c6 .feat-icon { background: var(--purple); }

.feat-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feat-card p  { font-size: .92rem; color: #555; margin: 0; }

/* ── Ficha técnica ────────────────────────────── */
.spec-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 30px; align-items: start; }
.spec-table-wrap {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: 6px 6px 0 var(--ink);
}
.spec-table-wrap table { width: 100%; border-collapse: collapse; }
.spec-table-wrap th,
.spec-table-wrap td { padding: 13px 18px; font-size: .92rem; border-bottom: 2px solid #EBF5FF; text-align: left; }
.spec-table-wrap th { background: #F0F8FF; font-weight: 900; width: 42%; }
.spec-table-wrap tr:last-child th,
.spec-table-wrap tr:last-child td { border-bottom: none; }

.inbox-card {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--r-card);
  padding: 26px;
  box-shadow: 6px 6px 0 var(--ink);
  margin-bottom: 18px;
}
.inbox-card h3 { font-size: 1.4rem; margin-bottom: 16px; }
.inbox-list { list-style: none; padding: 0; }
.inbox-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 2px dashed #ddd;
  font-weight: 700;
  font-size: .92rem;
}
.inbox-list li:last-child { border: none; }
.inbox-list li::before {
  content: '✓';
  width: 28px; height: 28px;
  background: var(--green);
  color: #fff;
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  flex-shrink: 0;
  font-size: .85rem;
}

.warn-box {
  background: #FFFBEB;
  border: 2px solid var(--ink);
  border-radius: 16px;
  padding: 14px 18px;
  font-size: .88rem;
  color: #555;
}

/* ── Reviews ─────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--r-card);
  padding: 24px;
  box-shadow: 5px 5px 0 var(--ink);
  position: relative;
}
.review-card::before {
  content: '"';
  font-family: var(--fun-font);
  font-size: 5rem;
  color: var(--yellow);
  position: absolute;
  top: -10px;
  right: 18px;
  line-height: 1;
}
.review-stars { color: var(--orange); font-size: 1rem; margin-bottom: 10px; display: block; }
.review-text { font-size: .92rem; color: #555; margin-bottom: 16px; }
.review-who { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: .85rem; }
.review-avatar {
  width: 38px; height: 38px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--fun-font);
  font-size: 1.1rem;
  box-shadow: 2px 2px 0 var(--ink);
}
.av-y { background: var(--yellow); }
.av-b { background: var(--blue); color: #fff; }
.av-g { background: var(--green); color: #fff; }

/* ── FAQ ──────────────────────────────────────── */
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 18px;
  margin-bottom: 12px;
  box-shadow: 4px 4px 0 var(--ink);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 900;
  font-size: .98rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle {
  width: 32px; height: 32px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-family: var(--fun-font);
  flex-shrink: 0;
  box-shadow: 2px 2px 0 var(--ink);
  transition: transform .15s;
}
details[open] .faq-toggle { transform: rotate(45deg); background: var(--red); color: #fff; }
.faq-body { padding: 0 22px 18px; color: #555; font-size: .92rem; border-top: 2px dashed #ddd; padding-top: 14px; }

/* ── Big CTA ─────────────────────────────────── */
.cta-section {
  background: var(--blue);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '🚛';
  font-size: 14rem;
  position: absolute;
  left: -40px; bottom: -40px;
  opacity: .08;
  line-height: 1;
}
.cta-section::after {
  content: '🚛';
  font-size: 14rem;
  position: absolute;
  right: -40px; top: -40px;
  opacity: .08;
  line-height: 1;
  transform: scaleX(-1);
}
.cta-section h2 { color: #fff; font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 12px; }
.cta-section p  { color: rgba(255,255,255,.85); max-width: 50ch; margin: 0 auto 28px; }
.cta-section .btn-buy { display: inline-flex; flex: none; background: var(--yellow); color: var(--ink); font-size: 1.4rem; padding: 0 36px; height: 62px; }

/* ── Footer ───────────────────────────────────── */
footer {
  background: var(--ink);
  color: #adb5d0;
  padding: 56px 0 20px;
}
footer a { color: #adb5d0; }
footer a:hover { color: var(--yellow); }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.foot-grid h4 { color: #fff; font-family: var(--body-font); font-weight: 900; font-size: .84rem; text-transform: uppercase; letter-spacing: .7px; margin-bottom: 14px; }
.foot-grid ul { list-style: none; padding: 0; }
.foot-grid li { margin-bottom: 9px; font-size: .88rem; }
.foot-logo { font-family: var(--fun-font); font-size: 1.8rem; color: #fff; display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.foot-logo .logo-icon { background: var(--yellow); border-color: #fff; }
.foot-desc { font-size: .86rem; line-height: 1.6; color: #7e85ab; }
.foot-bot { border-top: 1px solid #2a3158; padding-top: 18px; font-size: .78rem; color: #555d80; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ── Selos de pagamento ───────────────────────── */
.pay-methods {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.pay-lbl { font-size: .8rem; font-weight: 800; color: #888; margin-right: 2px; }
.pay-chip {
  font-weight: 900;
  font-size: .72rem;
  letter-spacing: .3px;
  padding: 5px 11px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 2px 2px 0 var(--ink);
}
.pay-chip.pix { background: var(--green); color: #fff; }

/* ── Barra de compra fixa (mobile) ────────────── */
.buybar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
  background: var(--paper);
  border-top: 3px solid var(--ink);
  box-shadow: 0 -6px 18px rgba(26,26,46,.16);
  transform: translateY(110%);
  transition: transform .28s ease;
}
.buybar.show { transform: translateY(0); }
.buybar-info { display: flex; flex-direction: column; line-height: 1.15; }
.buybar-price { font-family: var(--fun-font); font-size: 1.7rem; color: var(--red); }
.buybar-sub { font-size: .72rem; font-weight: 800; color: #777; }
.buybar-cta {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-family: var(--fun-font);
  font-size: 1.25rem;
  padding: 0 26px;
  height: 50px;
  border: 3px solid var(--ink);
  border-radius: var(--r-pill);
  box-shadow: 3px 3px 0 var(--ink);
}
.buybar-cta:active { transform: translate(1px,1px); box-shadow: 1px 1px 0 var(--ink); }

/* ── Responsive ───────────────────────────────── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { min-height: 54vw; border-right: none; border-bottom: 3px solid var(--ink); }
  .hero-info { padding: 32px 24px; }
  .feats, .reviews-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hero-thumbs { left: 10px; }
  .buybar { display: flex; }
  body { padding-bottom: 78px; }
}
