/* ============================================================
   Pizza X — Sistema de diseño
   Línea visual estilo "Hell Pizza": negro, hueso y rojo.
   ============================================================ */

/* ---------- Fuentes ---------- */
@font-face { font-family: "Uxum Grotesque"; src: url("../fonts/uxum-grotesque-300.otf") format("opentype"); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: "Uxum Grotesque"; src: url("../fonts/uxum-grotesque-400.otf") format("opentype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Uxum Grotesque"; src: url("../fonts/uxum-grotesque-500.otf") format("opentype"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Uxum Grotesque"; src: url("../fonts/uxum-grotesque-600.otf") format("opentype"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Uxum Grotesque"; src: url("../fonts/uxum-grotesque-700.otf") format("opentype"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Citrus Gothic"; src: url("../fonts/citrus-gothic.woff2") format("woff2"); font-display: swap; }
@font-face { font-family: "H74 Justified"; src: url("../fonts/h74-justified.otf") format("opentype"); font-display: swap; }

/* ---------- Variables ---------- */
:root {
  --black: #000000;
  --bone: #e1d8b7;
  --bone-dim: #b8b195;
  --red: #c80613;
  --red-bright: #e30613;
  --surface: #0d0d0d;
  --surface-2: #161616;
  --line: rgba(225, 216, 183, 0.18);
  --font-body: "Uxum Grotesque", system-ui, sans-serif;
  --font-display: "Citrus Gothic", "Uxum Grotesque", sans-serif;
  --maxw: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--bone);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--red); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.display { font-family: var(--font-display); letter-spacing: .04em; text-transform: uppercase; }
.text-red { color: var(--red); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ============================================================
   Header
   ============================================================ */
/* Bloque superior fijo (header + delivery/retiro + categorías) */
.sticky-top {
  position: sticky; top: 0; z-index: 60;
  background: var(--black);
}
.site-header {
  position: relative; z-index: 50;
  background: var(--black);
}
.header-top {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 10px 20px; max-width: var(--maxw); margin: 0 auto; gap: 12px;
}
.header-logo { justify-self: center; }
.header-logo img { height: 44px; width: auto; }
.header-left { display: flex; align-items: center; gap: 10px; }
.header-right { display: flex; align-items: center; justify-content: flex-end; gap: 18px; }

.icon-btn { display: inline-flex; align-items: center; gap: 8px; color: var(--bone); font-size: .95rem; }
.icon-btn svg { width: 22px; height: 22px; }
.icon-btn:hover { color: var(--red); }

.cart-btn { position: relative; }
.cart-count {
  position: absolute; top: -8px; right: -10px; min-width: 18px; height: 18px;
  background: var(--red); color: #fff; border-radius: 999px; font-size: .72rem;
  display: flex; align-items: center; justify-content: center; padding: 0 5px; font-weight: 700;
}

/* Icono del carrito en rojo (como el original) */
.cart-btn .cart-ico { color: var(--red); display: inline-flex; }
.account-btn { color: var(--bone); }

/* Barra de método de pedido (Delivery › Retiro) */
.order-bar {
  background: var(--black);
}
.order-bar-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 9px 20px;
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: nowrap;
}
.method-pill {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .05em;
  font-size: .82rem; padding: 7px 18px; border-radius: 4px;
  border: 1px solid var(--bone-dim); color: var(--bone); white-space: nowrap; transition: all .15s;
}
.method-pill.active { background: var(--bone); color: #111; border-color: var(--bone); }
.method-pill:hover { color: var(--red); border-color: var(--red); }
.method-pill.active:hover { background: var(--bone); color: #111; }
.order-arrow { display: inline-flex; color: var(--red); }
.order-arrow svg { width: 16px; height: 16px; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; text-align: center; padding: 56px 20px 48px;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(200,6,19,.22), transparent 55%),
    var(--black);
}
.hero img.hero-logo { height: clamp(190px, 32vw, 300px); width: auto; margin: 0 auto; }
.hero h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 7vw, 4.6rem); line-height: .95; text-transform: uppercase; letter-spacing: .02em; }
.hero h1 .x { color: var(--red); }
.hero p.tagline { margin-top: 14px; font-size: 1.05rem; color: var(--bone-dim); letter-spacing: .04em; }
.hero .hero-meta { margin-top: 22px; display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; font-size: .9rem; color: var(--bone-dim); }
.hero .hero-meta a { display: inline-flex; align-items: center; gap: 7px; }
.hero .hero-meta svg { width: 16px; height: 16px; }

/* ============================================================
   Navegación de categorías
   ============================================================ */
.cat-nav {
  position: relative; z-index: 40;
  background: var(--black);
}
.cat-nav ul {
  max-width: var(--maxw); margin: 0 auto; padding: 0 12px;
  display: flex; align-items: center; justify-content: center; flex-wrap: nowrap;
  gap: 2px; overflow-x: auto; scrollbar-width: none;
}
.cat-nav ul::-webkit-scrollbar { display: none; }
.cat-nav li[data-cat] {
  padding: 15px 14px; white-space: nowrap; cursor: pointer;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .05em;
  font-size: .95rem; color: var(--bone-dim); transition: color .15s;
}
.cat-nav li[data-cat]:hover { color: var(--bone); }
.cat-nav li[data-cat].active { color: var(--red); }
.cat-nav .nav-sep { display: flex; align-items: center; color: var(--red); pointer-events: none; }
.cat-nav .nav-sep svg { width: 9px; height: 9px; opacity: .85; }

/* ============================================================
   Menú
   ============================================================ */
.menu-wrap { padding: 38px 0 80px; }
.category { margin-bottom: 40px; scroll-margin-top: calc(var(--sticky-h, 180px) + 12px); }
.category-title {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em;
  font-size: clamp(1.9rem, 4.5vw, 2.8rem); text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 28px;
}
.category-title .bolt { display: inline-flex; color: var(--red); }
.category-title .bolt svg { width: clamp(16px, 2.2vw, 22px); height: auto; }
.category-title .bolt.left { transform: scaleX(-1); }
.group-title {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em;
  font-size: 1.15rem; color: var(--red); margin: 26px 0 14px; text-align: center;
}
.items-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 40px; }

.menu-item {
  display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line);
  cursor: pointer; align-items: stretch; justify-content: space-between;
}
.menu-item:hover .item-name { color: var(--red); }
.item-body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.item-head { display: flex; align-items: flex-start; gap: 10px; flex-wrap: wrap; }
.item-name {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .02em;
  font-size: 1.25rem; transition: color .15s; line-height: 1.05;
}
.item-badge {
  font-family: var(--font-display); font-size: .6rem; text-transform: uppercase; letter-spacing: .08em;
  background: var(--red); color: #fff; padding: 3px 8px; border-radius: 3px; white-space: nowrap; margin-top: 2px;
}
/* Badge "Popular" estilo pincelada */
.item-badge.popular {
  background: var(--red); color: #fff; transform: rotate(-2deg);
  border-radius: 2px 8px 3px 7px; padding: 4px 12px; font-size: .62rem;
  box-shadow: 0 1px 0 rgba(0,0,0,.4);
}
.item-desc { color: var(--bone-dim); font-size: .9rem; margin-top: 8px; font-weight: 300; }
.item-price { margin-top: auto; padding-top: 12px; font-size: .95rem; color: var(--bone); font-weight: 600; }
.item-price .from { color: var(--bone-dim); font-weight: 300; font-size: .82rem; }

/* Slot de foto con botón "+" superpuesto */
.item-photo {
  position: relative; flex-shrink: 0; width: 148px; height: 116px; align-self: center;
}
.photo-placeholder {
  position: absolute; inset: 0; border-radius: 6px;
  background: radial-gradient(120% 80% at 50% 0%, #2a2a2a 0%, #161616 45%, #0a0a0a 100%);
  background-blend-mode: normal;
  background-repeat: no-repeat; background-position: center 42%; background-size: 64px;
  opacity: 1; display: block;
}
.item-photo .photo-placeholder::after {
  content: ""; position: absolute; inset: 0; border-radius: 6px;
  box-shadow: inset 0 -20px 30px -18px #000; pointer-events: none;
}
/* el logo se ve translúcido como placeholder */
.photo-placeholder { background-blend-mode: luminosity; }
/* fotos reales de pizza */
.item-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  border-radius: 6px; display: block;
}
.item-img::after {
  content: ""; position: absolute; inset: 0; border-radius: 6px;
  box-shadow: inset 0 -24px 32px -14px rgba(0,0,0,0.7); pointer-events: none;
}

.add-btn {
  position: absolute; right: -10px; bottom: -10px; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bone); color: var(--red); border: none;
  display: flex; align-items: center; justify-content: center;
  line-height: 0; transition: transform .12s, background .15s;
  box-shadow: 0 3px 10px rgba(0,0,0,.5);
}
.add-btn:hover { background: #fff; transform: scale(1.08); }
.add-btn svg { width: 22px; height: 22px; display: block; stroke-width: 3; }

/* ============================================================
   Botón genérico
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .06em;
  padding: 14px 28px; border-radius: 4px; font-size: .95rem; transition: all .15s; cursor: pointer;
}
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-bright); color: #fff; }
.btn-red:disabled { background: #3a3a3a; color: #777; cursor: not-allowed; }
.btn-ghost { border: 1px solid var(--line); color: var(--bone); }
.btn-ghost:hover { border-color: var(--red); color: var(--red); }
.btn-block { width: 100%; }

/* ============================================================
   Drawer del carrito
   ============================================================ */
.overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 90;
  opacity: 0; visibility: hidden; transition: opacity .25s;
}
.overlay.open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: 420px; max-width: 92vw;
  background: var(--surface); border-left: 1px solid var(--line); z-index: 100;
  transform: translateX(100%); transition: transform .28s ease; display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px; border-bottom: 1px solid var(--line);
}
.cart-header h2 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.3rem; letter-spacing: .04em; }
.cart-close { font-size: 1.6rem; line-height: 1; color: var(--bone-dim); }
.cart-close:hover { color: var(--red); }
.cart-items { flex: 1; overflow-y: auto; padding: 8px 20px; }
.cart-empty { text-align: center; color: var(--bone-dim); padding: 60px 20px; }

.cart-line { display: flex; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-line .cl-body { flex: 1; min-width: 0; }
.cart-line .cl-name { font-weight: 600; }
.cart-line .cl-variant { font-size: .82rem; color: var(--bone-dim); }
.cart-line .cl-price { margin-top: 6px; font-size: .9rem; }
.qty {
  display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; margin-top: 8px;
}
.qty button { width: 28px; height: 28px; font-size: 1.1rem; color: var(--bone); }
.qty button:hover { color: var(--red); }
.qty span { min-width: 28px; text-align: center; font-size: .9rem; }
.cl-remove { color: var(--bone-dim); font-size: .78rem; margin-top: 8px; display: inline-block; }
.cl-remove:hover { color: var(--red); }

.cart-footer { padding: 20px; border-top: 1px solid var(--line); }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.cart-total .lbl { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em; }
.cart-total .amount { font-size: 1.5rem; font-weight: 700; }

/* ============================================================
   Modal de producto
   ============================================================ */
.modal {
  position: fixed; inset: 0; z-index: 110; display: none;
  align-items: center; justify-content: center; padding: 20px;
}
.modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.7); }
.modal-card {
  position: relative; background: var(--surface-2); border: 1px solid var(--line); border-radius: 8px;
  width: 100%; max-width: 440px; max-height: 90vh; overflow-y: auto; padding: 26px;
}
.modal-card h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.6rem; letter-spacing: .03em; }
.modal-card .m-desc { color: var(--bone-dim); font-size: .92rem; font-weight: 300; margin-top: 8px; }
.modal-close { position: absolute; top: 14px; right: 16px; font-size: 1.6rem; color: var(--bone-dim); }
.modal-close:hover { color: var(--red); }
.variant-list { margin: 22px 0; display: flex; flex-direction: column; gap: 10px; }
.variant {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 14px 16px; border: 1px solid var(--line); border-radius: 5px; cursor: pointer; transition: all .15s;
}
.variant:hover { border-color: var(--bone-dim); }
.variant.selected { border-color: var(--red); background: rgba(200,6,19,.08); }
.variant .v-label { display: flex; align-items: center; gap: 10px; }
.variant .radio { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--bone-dim); position: relative; }
.variant.selected .radio { border-color: var(--red); }
.variant.selected .radio::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--red); }
.variant .v-price { font-weight: 600; }
.modal-qty { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 18px; }

/* ---------- Bloques de ingredientes en modal ---------- */
.ingr-block { margin: 18px 0 4px; }
.ingr-block-title {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: .72rem; letter-spacing: .1em; color: var(--bone-dim);
  margin-bottom: 10px; display: flex; align-items: center; gap: 8px;
}
.ingr-price-label { color: var(--red); font-size: .68rem; }
.ingr-chips { display: flex; flex-wrap: wrap; gap: 7px; }

.ingr-chip {
  font-size: .78rem; padding: 5px 12px; border-radius: 20px; border: 1px solid var(--line);
  background: transparent; color: var(--bone); cursor: pointer;
  transition: all .15s; font-family: var(--font-body); white-space: nowrap;
}

/* quitar ingrediente — tachado rojo al activar */
.remove-chip:hover { border-color: var(--red); color: var(--red); }
.remove-chip.removed {
  border-color: var(--red); color: var(--red);
  text-decoration: line-through; text-decoration-color: var(--red);
  text-decoration-thickness: 2px; opacity: .75;
}

/* agregar extra */
.extra-chip:hover { border-color: #4caf50; color: #4caf50; }
.extra-chip.added {
  border-color: #4caf50; background: rgba(76,175,80,.12); color: #4caf50; font-weight: 600;
}

/* flash "¡Agregado! 🤘" */
.ingr-added-flash {
  background: var(--red); color: #fff; font-size: .78rem; font-weight: 600;
  padding: 5px 12px; border-radius: 20px; pointer-events: none;
  animation: flash-in .15s ease, flash-out .3s ease .7s forwards;
}
@keyframes flash-in { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:translateY(0); } }
@keyframes flash-out { to { opacity:0; transform:translateY(-6px); } }

/* ---------- Carrito — quitados y extras ---------- */
.cl-removed { display: flex; flex-wrap: wrap; gap: 4px; margin: 3px 0; }
.cl-removed span {
  font-size: .72rem; color: var(--red); text-decoration: line-through;
  text-decoration-color: var(--red); opacity: .8;
}
.cl-extras { display: flex; flex-wrap: wrap; gap: 4px; margin: 3px 0; }
.cl-extras span { font-size: .72rem; color: #4caf50; }
.cl-extras em { font-style: normal; color: var(--bone-dim); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--line); background: var(--black);
  padding: 34px 40px; margin-top: 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
/* Bloque izquierdo: wordmark + enlaces */
.footer_left { display: flex; align-items: center; gap: 34px; flex-wrap: wrap; }
.footer_wordmark {
  font-family: var(--font-display); font-size: 2.6rem; line-height: 1;
  letter-spacing: .04em; color: var(--bone); display: inline-flex; align-items: baseline;
}
.footer_wordmark .x-img {
  height: 1.08em; width: 1.08em; object-fit: contain;
  margin-left: .12em; transform: translateY(.12em); display: inline-block;
}
.footer_wordmark:hover { color: var(--bone); }
.footer_nav { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.footer_nav a {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .05em;
  font-size: .82rem; color: var(--bone);
}
.footer_nav a:hover { color: var(--red); }
/* Bloque derecho: copyright + follow */
.footer_right { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.footer_copy {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .05em;
  font-size: .72rem; color: var(--bone-dim);
}
.footer_follow { text-align: center; }
.footer_follow .follow_label {
  display: block; font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: .08em; font-size: .62rem; color: var(--bone); margin-bottom: 6px;
}
.footer_follow .follow_items { display: flex; gap: 10px; justify-content: center; }
.footer_follow .follow_items a {
  width: 34px; height: 34px; border-radius: 4px; background: var(--bone); color: #111;
  display: flex; align-items: center; justify-content: center; transition: all .15s;
}
.footer_follow .follow_items a:hover { background: var(--red); color: #fff; }
.footer_follow .follow_items svg { width: 18px; height: 18px; }

/* ============================================================
   Checkout
   ============================================================ */
.page-head { padding: 40px 0 20px; text-align: center; }
.page-head h1 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(2rem,5vw,3rem); letter-spacing: .03em; }
.checkout-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; padding-bottom: 80px; align-items: start; }
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: 8px; padding: 26px; }
.panel + .panel { margin-top: 22px; }
.panel h3 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em; font-size: 1.25rem; margin-bottom: 18px; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: .82rem; color: var(--bone-dim); margin-bottom: 6px; letter-spacing: .03em; }
.field input, .field textarea, .field select {
  width: 100%; background: var(--black); border: 1px solid var(--line); border-radius: 5px;
  color: var(--bone); padding: 12px 14px; font-family: inherit; font-size: .95rem;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--red); }
.field textarea { resize: vertical; min-height: 70px; }
.field .err { color: var(--red-bright); font-size: .78rem; margin-top: 5px; display: none; }
.field.invalid .err { display: block; }
.field.invalid input, .field.invalid textarea { border-color: var(--red-bright); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.method-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 22px; }
.method-card {
  border: 1px solid var(--line); border-radius: 6px; padding: 18px; text-align: center; cursor: pointer; transition: all .15s;
}
.method-card:hover { border-color: var(--bone-dim); }
.method-card.selected { border-color: var(--red); background: rgba(200,6,19,.08); }
.method-card svg { width: 32px; height: 32px; margin: 0 auto 10px; color: var(--bone); }
.method-card .mc-title { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em; }
.method-card .mc-sub { font-size: .8rem; color: var(--bone-dim); margin-top: 4px; }

.summary-line { display: flex; justify-content: space-between; padding: 10px 0; font-size: .92rem; border-bottom: 1px solid var(--line); }
.summary-line .s-name { color: var(--bone); }
.summary-line .s-name small { color: var(--bone-dim); display: block; }
.summary-sub { display: flex; justify-content: space-between; padding: 8px 0; font-size: .9rem; color: var(--bone-dim); }
.summary-total { display: flex; justify-content: space-between; padding-top: 14px; margin-top: 8px; border-top: 1px solid var(--line); }
.summary-total .lbl { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em; font-size: 1.05rem; }
.summary-total .amount { font-size: 1.6rem; font-weight: 700; }

.pay-note { font-size: .8rem; color: var(--bone-dim); margin-top: 14px; text-align: center; font-weight: 300; }
.pay-logos { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 10px; opacity: .8; }

/* Estados de pago (páginas de retorno) */
.status-page { text-align: center; padding: 80px 20px; max-width: 540px; margin: 0 auto; }
.status-page .status-icon { width: 86px; height: 86px; margin: 0 auto 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.status-page .status-icon.ok { background: rgba(40,167,69,.15); color: #34c759; }
.status-page .status-icon.err { background: rgba(200,6,19,.15); color: var(--red); }
.status-page .status-icon.pend { background: rgba(255,193,7,.15); color: #ffc107; }
.status-page .status-icon svg { width: 46px; height: 46px; }
.status-page h1 { font-family: var(--font-display); text-transform: uppercase; font-size: 2.2rem; margin-bottom: 12px; }
.status-page p { color: var(--bone-dim); margin-bottom: 26px; }

/* ============================================================
   Toast
   ============================================================ */
.toast-wrap { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 200; display: flex; flex-direction: column; gap: 8px; align-items: center; }
.toast {
  background: var(--red); color: #fff; padding: 12px 22px; border-radius: 6px; font-size: .9rem;
  box-shadow: 0 6px 24px rgba(0,0,0,.5); animation: toastIn .25s ease;
}
@keyframes toastIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; text-align: center; gap: 28px; }
  .footer_left, .footer_right { flex-direction: column; gap: 18px; justify-content: center; }
  .footer_nav { justify-content: center; }
}
@media (max-width: 720px) {
  .items-grid { grid-template-columns: 1fr; gap: 0; }
  .header-logo img { height: 34px; }
  .header-left .label, .header-right .label { display: none; }
  .hero { padding: 44px 20px 36px; }
  .hero img.hero-logo { height: 110px; }
  .field-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .method-cards { grid-template-columns: 1fr; }
  .footer_wordmark { font-size: 2.1rem; }
}
