/* ===================================================================
   Nadie Como Tú — Tienda · Design system
   Blanco · Negro · Detalles negros | Montserrat
   =================================================================== */

/* ── Fuentes ─────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Light.otf') format('opentype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Medium.otf') format('opentype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-SemiBold.otf') format('opentype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.otf') format('opentype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-ExtraBold.otf') format('opentype');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-BlackItalic.otf') format('opentype');
  font-weight: 100 900; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Montserrat Alt';
  src: url('../fonts/MontserratAlternates-ExtraBold.otf') format('opentype');
  font-weight: 800; font-style: normal; font-display: swap;
}

/* ── Tokens ──────────────────────────────────────────────────────── */
:root {
  --bg:           #ffffff;
  --bg-2:         #ffffff;
  --bg-3:         #f5f5f5;
  --bg-4:         #ebebeb;
  --ink:          #0a0a0a;
  --ink-2:        #0a0a0a;
  --ink-3:        #0a0a0a;
  --ink-4:        #4a4a4a;
  --ink-muted:    #9a9a9a;
  --line:         rgba(10,10,10,0.07);
  --line-2:       rgba(10,10,10,0.13);
  --line-3:       rgba(10,10,10,0.22);
  --accent:       #0a0a0a;
  --accent-deep:  #4a4a4a;
  --accent-ink:   #ffffff;
  --accent-soft:  rgba(10,10,10,0.05);
  --accent-glow:  rgba(10,10,10,0.12);
  --whatsapp:     #25d366;
  --whatsapp-dk:  #128c4a;
  --success:      #1f9d5b;
  --warn:         #b8761a;
  --danger:       #d23030;
  --info:         #1e6fd9;
  --r-sm:  8px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --display: 'Montserrat', system-ui, sans-serif;
  --body:    'Montserrat', system-ui, sans-serif;
  --num:     'Montserrat Alt', 'Montserrat', system-ui, sans-serif;
}

/* ── Reset ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 500;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overscroll-behavior-y: none;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--body); }

/* ── Tipografía ──────────────────────────────────────────────────── */
.d-hero  { font-family: var(--display); font-weight: 300; font-size: 64px; line-height: 0.92; letter-spacing: -0.035em; color: var(--ink); }
.d-hero em, .d-hero i { font-weight: 900; font-style: italic; }
.d-title { font-family: var(--display); font-weight: 600; font-size: 32px; line-height: 1.02; letter-spacing: -0.025em; color: var(--ink); }
.d-title em, .d-title i { font-weight: 900; }
.d-name  { font-family: var(--display); font-weight: 600; font-size: 22px; line-height: 1.05; letter-spacing: -0.02em; color: var(--ink); }
.d-price { font-family: var(--num); font-weight: 800; font-style: normal; letter-spacing: -0.01em; color: var(--ink); }
.t-eyebrow { font-family: var(--body); font-weight: 700; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink); }
.t-body    { font-family: var(--body); font-weight: 500; font-size: 15px; line-height: 1.65; color: var(--ink-2); }
.t-small   { font-family: var(--body); font-weight: 500; font-size: 13px; line-height: 1.5; color: var(--ink-3); }
.t-label   { font-family: var(--body); font-weight: 600; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); }
.t-mono    { font-family: var(--body); font-weight: 500; font-size: 12px; letter-spacing: 0.14em; color: var(--ink-2); text-transform: uppercase; }

/* ── Botones ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; cursor: pointer; user-select: none;
  font-family: var(--body); font-weight: 600; font-size: 14px; letter-spacing: 0.01em;
  padding: 14px 22px; border-radius: 999px;
  transition: transform .12s ease, background .15s ease, opacity .15s ease, box-shadow .15s ease;
  white-space: nowrap; text-align: center;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: #1a1a1a; }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--line-3); }
.btn-outline:hover { background: var(--bg-3); border-color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--bg-3); }
.btn-wa { background: var(--whatsapp); color: #fff; }
.btn-wa:hover { background: #1fb955; box-shadow: 0 0 0 6px rgba(37,211,102,.22); }
.btn-sm  { padding: 8px 14px; font-size: 12px; }
.btn-lg  { padding: 18px 28px; font-size: 16px; }
.btn-xl  { padding: 20px 28px; font-size: 16px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.42; cursor: not-allowed; }

/* ── Inputs ──────────────────────────────────────────────────────── */
.input {
  width: 100%;
  background: var(--bg-2);
  border: 1.5px solid var(--line-2);
  color: var(--ink);
  font-family: var(--body); font-weight: 500; font-size: 15px; line-height: 1.4;
  padding: 16px 18px; border-radius: var(--r);
  outline: none;
  transition: border-color .15s, background .15s;
  appearance: none; -webkit-appearance: none;
}
.input:focus { border-color: var(--ink); }
.input::placeholder { color: var(--ink-muted); font-weight: 400; }
select.input { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%230a0a0a' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
.field-label { font-family: var(--body); font-weight: 600; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); margin-bottom: 10px; display: block; }
.field-error { font-size: 12px; color: var(--danger); margin-top: 6px; display: none; }
.field-error.visible { display: block; }

/* ── Cards ───────────────────────────────────────────────────────── */
.card   { background: var(--bg-2); border: 1px solid var(--line);   border-radius: var(--r-lg); }
.card-2 { background: var(--bg-3); border: 1px solid var(--line);   border-radius: var(--r); }

/* ── Imágenes de botella ─────────────────────────────────────────── */
.bottle-img {
  position: relative; overflow: hidden; border-radius: var(--r);
  background: #fff;
}
.bottle-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bottle-frame { background: radial-gradient(120% 80% at 50% 30%, #ffffff 0%, #ebe9e2 70%); box-shadow: inset 0 0 0 1px var(--line); }
.tone-apple   img { filter: brightness(1)    saturate(1.05) hue-rotate(-2deg); }
.tone-turmeric img { filter: brightness(0.98) saturate(1.35) hue-rotate(-18deg); }
.tone-ginger  img { filter: brightness(1.04) saturate(0.95) hue-rotate(8deg); }

/* ── Pills de estado ─────────────────────────────────────────────── */
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 500; letter-spacing: 0.04em; }
.pill-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.pill-success { background: rgba(31,157,91,.13); color: var(--success); }
.pill-success .pill-dot { background: var(--success); }
.pill-warn { background: rgba(184,118,26,.13); color: var(--warn); }
.pill-warn .pill-dot { background: var(--warn); }
.pill-info { background: rgba(30,111,217,.12); color: var(--info); }

/* ── Tag ─────────────────────────────────────────────────────────── */
.tag { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 500; background: var(--bg-3); color: var(--ink-2); border: 1px solid var(--line); }

/* ── Divisores ───────────────────────────────────────────────────── */
.divider   { height: 1px; background: var(--line);   width: 100%; }
.divider-2 { height: 1px; background: var(--line-2); width: 100%; }

/* ── Helpers ─────────────────────────────────────────────────────── */
.row     { display: flex; align-items: center; }
.col     { display: flex; flex-direction: column; }
.grow    { flex: 1 1 auto; min-width: 0; }
.between { justify-content: space-between; }
.center  { justify-content: center; align-items: center; }
.gap-4  { gap: 4px; }  .gap-6  { gap: 6px; }  .gap-8  { gap: 8px; }
.gap-10 { gap: 10px; } .gap-12 { gap: 12px; } .gap-14 { gap: 14px; }
.gap-16 { gap: 16px; } .gap-18 { gap: 18px; } .gap-20 { gap: 20px; }
.gap-24 { gap: 24px; } .gap-32 { gap: 32px; }
.hidden { display: none !important; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }

/* ── Animaciones ─────────────────────────────────────────────────── */
@keyframes fade-up   { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes fade-in   { from { opacity: 0; } to { opacity: 1; } }
@keyframes scale-in  { from { opacity: 0; transform: scale(.95); } to { opacity: 1; transform: scale(1); } }
@keyframes sheet-up  { from { transform: translateY(100%); } to { transform: none; } }
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0   rgba(37,211,102,.4); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0   rgba(37,211,102,0); }
}
.fade-up  { animation: fade-up  .35s ease-out both; }
.fade-in  { animation: fade-in  .25s ease-out both; }
.scale-in { animation: scale-in .22s cubic-bezier(.2,.7,.3,1) both; }
.sheet-up { animation: sheet-up .28s cubic-bezier(.2,.7,.3,1) both; }

/* ── Thin scrollbar ──────────────────────────────────────────────── */
.thin-scroll::-webkit-scrollbar { width: 4px; height: 4px; }
.thin-scroll::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 99px; }
.thin-scroll::-webkit-scrollbar-track { background: transparent; }

/* ═══════════════════════════════════════════════════════════════════
   LAYOUT DE PÁGINA
   ═══════════════════════════════════════════════════════════════════ */
.page-wrap {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

/* ── Header / Hero ───────────────────────────────────────────────── */
.site-header {
  padding: 60px 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.site-logo { height: 38px; width: auto; }

.section-hero {
  padding: 0 22px 32px;
}
.hero-eyebrow { margin-bottom: 16px; }
.hero-title {
  font-size: clamp(38px, 13vw, 52px);
  margin: 0 0 18px;
  line-height: 0.94;
  overflow-wrap: break-word;
}
.hero-sub {
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
  color: var(--ink);
  max-width: 340px;
  margin: 0 0 28px;
}

/* ── Banner ──────────────────────────────────────────────────────── */
.section-banner { position: relative; margin-bottom: 0; }
.banner-img { width: 100%; height: 280px; object-fit: cover; }
.banner-pill {
  position: absolute; left: 20px; bottom: 20px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,.72); backdrop-filter: blur(6px);
  border: 1px solid var(--ink);
  font-family: var(--body); font-weight: 600; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase; color: #000;
}
.banner-price {
  position: absolute; right: 20px; top: 20px;
  padding: 8px 14px; border-radius: 999px;
  background: var(--ink); color: #fff;
  font-family: var(--body); font-weight: 600; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
}

/* ── Sección genérica ────────────────────────────────────────────── */
.section { padding: 32px 0; }
.section-inner { padding: 0 22px; }
.section-header { padding: 0 22px; margin-bottom: 20px; }
.section-header .t-eyebrow { margin-bottom: 8px; }
.section-header .d-title { font-size: 26px; margin: 0; overflow-wrap: break-word; }

/* ── Cart pill (sticky) ──────────────────────────────────────────── */
.cart-pill {
  position: sticky;
  top: 12px;
  z-index: 20;
  margin: 0 22px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--accent-ink);
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 8px 28px rgba(10,10,10,.28);
  transition: opacity .2s ease;
}
.cart-pill-badge {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent-ink); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 12px; flex-shrink: 0;
}
.cart-pill-total {
  font-family: var(--num); font-weight: 800; font-size: 16px; font-style: italic;
}

/* ── Carrusel de productos individuales ──────────────────────────── */
.product-carousel {
  display: flex;
  gap: 14px;
  padding: 4px 22px 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 22px;
  -webkit-overflow-scrolling: touch;
}
.product-carousel::-webkit-scrollbar { display: none; }

.product-card {
  width: 270px;
  flex-shrink: 0;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg-2);
}
.product-card .bottle-img { height: 220px; border-radius: var(--r); }
.product-card-info { display: flex; flex-direction: column; gap: 6px; }
.product-card-name { font-weight: 600; font-size: 20px; letter-spacing: -0.02em; }
.product-card-sub  { font-size: 13px; color: var(--ink-4); }
.product-card-from { display: flex; align-items: baseline; gap: 4px; }

/* Dots paginación carrusel */
.carousel-dots { display: flex; gap: 8px; justify-content: center; margin-top: 4px; padding-bottom: 4px; }
.carousel-dot {
  width: 6px; height: 6px; border-radius: 99px; padding: 0;
  background: var(--line-3); border: none; cursor: pointer;
  transition: all .25s cubic-bezier(.2,.7,.3,1);
}
.carousel-dot.active { width: 22px; background: var(--ink); }

/* ── Combos ──────────────────────────────────────────────────────── */
.combo-list { display: flex; flex-direction: column; gap: 16px; padding: 0 22px; }
.combo-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.combo-card.featured { background: linear-gradient(135deg, #ffffff, #f0ede6); border-color: var(--line-2); }
.combo-card-header { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: start; }
.combo-card-body   { min-width: 0; }
.combo-card-title  { font-weight: 600; font-size: 17px; letter-spacing: -0.015em; margin: 4px 0 4px; line-height: 1.2; }
.combo-card-desc   { font-size: 13px; color: var(--ink-4); line-height: 1.45; margin: 0; }
.combo-card-right  { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.combo-card-price  { font-family: var(--num); font-weight: 800; font-size: 26px; line-height: 1; }
.combo-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--success); }

.combo-libre-selects { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.combo-select-group label { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); margin-bottom: 6px; display: block; }
.combo-select-group select { width: 100%; }

/* ── Sheet (bottom drawer) ───────────────────────────────────────── */
.sheet-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.48);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  align-items: flex-end;
  touch-action: none;
}
.sheet-panel {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-2);
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  border-top: 1px solid var(--line-2);
  padding: 10px 22px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 92vh;
  overflow-y: auto;
}
.sheet-handle {
  width: 44px; height: 4px; border-radius: 99px;
  background: var(--line-3); margin: 0 auto 4px;
}

/* Size options en el sheet */
.size-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.size-option {
  padding: 14px 16px;
  background: var(--bg-3); border: 1.5px solid var(--line-2);
  border-radius: var(--r); cursor: pointer; text-align: center;
  transition: all .15s ease; display: flex; flex-direction: column; gap: 4px;
  align-items: center;
}
.size-option.selected { background: var(--accent-soft); border-color: var(--ink); }
.size-option-ml   { font-weight: 700; font-size: 15px; }
.size-option-price { font-family: var(--num); font-weight: 800; font-size: 22px; }

/* Stepper de cantidad */
.qty-stepper { display: flex; align-items: center; gap: 0; }
.qty-btn {
  width: 44px; height: 44px; border-radius: 99px;
  border: 1.5px solid var(--line-3); background: var(--bg);
  color: var(--ink); cursor: pointer; font-size: 20px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s ease; flex-shrink: 0;
}
.qty-btn.plus { background: var(--ink); color: #fff; border-color: var(--ink); }
.qty-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.qty-val { min-width: 56px; text-align: center; font-family: var(--num); font-weight: 800; font-size: 26px; }

/* Nota de stock bajo en el sheet */
.stock-note { font-size: 12px; color: var(--warn); font-weight: 600; text-align: center; padding: 6px 0; }
.stock-agotado { font-size: 12px; color: var(--danger); font-weight: 600; }

/* ── Formulario de checkout ──────────────────────────────────────── */
.section-form { padding: 32px 22px 48px; }
.form-fields  { display: flex; flex-direction: column; gap: 22px; margin-bottom: 28px; }

/* Resumen del pedido en el form */
.order-summary {
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 24px;
}
.order-summary-header {
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: flex-end; justify-content: space-between;
}
.order-summary-items { padding: 14px 18px; display: flex; flex-direction: column; gap: 10px; }
.order-item {
  display: flex; gap: 12px; align-items: center;
  padding: 12px 14px;
  background: var(--bg-3); border: 1px solid var(--line-2);
  border-radius: var(--r);
}
.order-item-img { width: 48px; height: 64px; flex-shrink: 0; border-radius: 8px; overflow: hidden; }
.order-item-img img { width: 100%; height: 100%; object-fit: contain; }
.order-item-info { flex: 1; min-width: 0; }
.order-item-name { font-weight: 600; font-size: 14px; }
.order-item-sub  { font-size: 12px; color: var(--ink-muted); }
.order-item-price { font-family: var(--num); font-weight: 800; font-size: 18px; flex-shrink: 0; }
.order-item-remove {
  background: transparent; border: 1px solid var(--line-2); color: var(--ink-muted);
  font-size: 12px; font-weight: 600; cursor: pointer; border-radius: 999px;
  padding: 4px 10px; transition: all .15s;
}
.order-item-remove:hover { border-color: var(--danger); color: var(--danger); }

.order-summary-total {
  padding: 16px 20px 18px;
  border-top: 1.5px solid var(--ink);
  background: #fff;
}
.total-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 10px; }
.total-label { font-weight: 700; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; }
.total-amount { font-family: var(--num); font-weight: 800; font-size: 40px; line-height: 1; letter-spacing: -0.02em; }
.shipping-row  { display: flex; align-items: center; gap: 6px; color: var(--ink-4); font-size: 13px; }

/* ── Footer ──────────────────────────────────────────────────────── */
.site-footer {
  padding: 24px 22px 56px;
  border-top: 1px solid var(--line);
}
.footer-info { display: flex; flex-direction: column; gap: 10px; }
.footer-row  { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-4); }
.footer-brand { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; color: var(--ink-muted); text-transform: uppercase; margin-top: 20px; }

/* ── Alert de sistema (banco no configurado) ─────────────────────── */
.system-alert {
  margin: 16px 22px;
  padding: 14px 18px;
  border-radius: var(--r);
  background: rgba(184,118,26,.09);
  border: 1px solid rgba(184,118,26,.3);
  color: var(--warn);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

/* ── Pantalla de éxito (post-submit) ─────────────────────────────── */
.success-screen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 22px;
  text-align: center;
}
.success-icon {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--whatsapp); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  animation: pulse-ring 1.6s ease-out infinite;
}

/* ── Pantalla de confirmación ────────────────────────────────────── */
.confirm-page { max-width: 680px; margin: 0 auto; padding: 0 0 60px; }
.confirm-header { padding: 60px 22px 24px; }
.confirm-section { padding: 0 22px; margin-bottom: 24px; }
.bank-block {
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.bank-block-header { padding: 16px 20px; background: var(--ink); color: #fff; }
.bank-block-header .t-label { color: rgba(255,255,255,.6); letter-spacing: 0.2em; }
.bank-row { padding: 14px 20px; border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 2px; }
.bank-row:last-child { border-bottom: none; }
.bank-row-label { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted); }
.bank-row-value { font-weight: 600; font-size: 16px; color: var(--ink); }
.bank-numero { font-family: var(--num); font-weight: 800; font-size: 22px; letter-spacing: 0.04em; }

.wa-instruction {
  padding: 20px;
  background: rgba(37,211,102,.08);
  border: 1px solid rgba(37,211,102,.25);
  border-radius: var(--r-lg);
  margin-bottom: 16px;
}

/* ── Responsive (desktop) ────────────────────────────────────────── */
@media (min-width: 680px) {
  .page-wrap { border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
  .hero-title { font-size: 64px; }
  .combo-list { gap: 14px; }
  .section-form { padding: 40px 22px 64px; }
}
