/* =========================================================
   HASHIRA SUSHI - Estilos
   Paleta basada en el logo: negro / blanco / grises
   Acento: rojo japones + dorado sutil
   ========================================================= */
:root {
  --bg: #0e0e0e;
  --bg-soft: #141414;
  --bg-card: #1b1b1b;
  --bg-card-2: #232323;
  --border: #2c2c2c;
  --text: #f4f4f4;
  --muted: #9b9b9b;
  --faint: #6d6d6d;
  --accent: #e63946;
  --accent-2: #c99f5a;
  --gold: #e6b95e;
  --green: #3ddc84;
  --radius: 16px;
  --font-brand: 'Noto Sans JP', 'Inter', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --shadow: 0 10px 30px rgba(0, 0, 0, .45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 20px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14, 14, 14, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; gap: 14px; height: 68px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-logo { width: 46px; height: 46px; border-radius: 12px; object-fit: cover; box-shadow: 0 0 0 1px var(--border); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--font-brand); font-weight: 900; font-size: 1.15rem; letter-spacing: .5px; }
.brand-text small { color: var(--gold); font-size: .6rem; letter-spacing: 3px; font-weight: 700; }

.site-nav { display: flex; align-items: center; gap: 22px; font-size: .9rem; font-weight: 600; }
.site-nav a { color: var(--muted); transition: color .2s; }
.site-nav a:hover { color: var(--text); }
.header-right { display: flex; align-items: center; gap: 10px; }
.cart-link { display: flex; align-items: center; gap: 6px; color: var(--text) !important; background: var(--bg-card-2); padding: 8px 14px; border-radius: 999px; border: 1px solid var(--border); }
.cart-badge {
  background: var(--accent); color: #fff; min-width: 20px; height: 20px; padding: 0 6px;
  border-radius: 999px; font-size: .7rem; display: inline-flex; align-items: center; justify-content: center; font-weight: 800;
}
.nav-toggle { display: none; background: none; border: 0; color: var(--text); font-size: 1.6rem; cursor: pointer; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .header-inner { height: 60px; }
  .site-nav {
    display: none; position: absolute; top: 60px; left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: var(--bg-soft); border-bottom: 1px solid var(--border); padding: 12px 20px 18px; gap: 6px; text-align: left;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 4px; border-bottom: 1px solid var(--border); font-size: 1rem; }
}

@media (max-width: 560px) {
  .cart-label { display: none; }
  .cart-link { padding: 8px 10px; }
}

/* ---------- Flash ---------- */
.flash { padding: 14px 0; font-weight: 600; font-size: .92rem; }
.flash-error { background: rgba(230, 57, 70, .15); color: #ff8b93; border-bottom: 1px solid rgba(230,57,70,.3); }
.flash-success { background: rgba(61, 220, 132, .12); color: var(--green); border-bottom: 1px solid rgba(61,220,132,.3); }
.flash-info { background: rgba(201, 159, 90, .12); color: var(--gold); border-bottom: 1px solid rgba(201,159,90,.3); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 84px 0 60px; text-align: center; }
.hero::before {
  content: '寿司'; position: absolute; font-family: var(--font-brand); font-weight: 900;
  font-size: clamp(12rem, 30vw, 26rem); color: rgba(255, 255, 255, .03); top: -20px; left: 50%; transform: translateX(-50%);
  pointer-events: none; user-select: none;
}
.hero-sun {
  position: absolute; width: 130px; height: 130px; border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 57, 70, .28), rgba(230, 57, 70, .04) 70%);
  top: 30px; right: 8%; pointer-events: none;
}
.hero-kicker { letter-spacing: 6px; text-transform: uppercase; color: var(--gold); font-size: .78rem; font-weight: 700; }
.hero h1 {
  font-family: var(--font-brand); font-weight: 900; font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 1.05; margin: 14px 0 18px; letter-spacing: 1px;
}
.hero h1 .red { color: var(--accent); }
.hero p { max-width: 560px; margin: 0 auto 30px; color: var(--muted); font-size: 1.05rem; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; margin-top: 40px; color: var(--muted); font-size: .85rem; }
.hero-badges span { display: flex; align-items: center; gap: 8px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--bg-card-2); color: var(--text); border: 1px solid var(--border);
  padding: 13px 26px; border-radius: 999px; font-weight: 700; font-size: .95rem;
  cursor: pointer; transition: all .2s; font-family: var(--font-body);
}
.btn:hover { transform: translateY(-1px); border-color: var(--faint); }
.btn-primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-primary:hover { background: #d32f3d; }
.btn-outline { background: transparent; }
.btn-outline:hover { border-color: var(--text); }
.btn-gold { background: var(--gold); border-color: var(--gold); color: #1a1a1a; }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* ---------- Sections ---------- */
.section { padding: 70px 0; }
.section-alt { background: var(--bg-soft); }
.section-head { text-align: center; margin-bottom: 44px; }
.section-head .kicker { color: var(--gold); letter-spacing: 5px; text-transform: uppercase; font-size: .75rem; font-weight: 700; }
.section-head h2 { font-family: var(--font-brand); font-weight: 900; font-size: clamp(1.7rem, 4vw, 2.6rem); margin-top: 8px; }

/* ---------- Categoria tabs ---------- */
.cat-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.cat-tab {
  padding: 10px 22px; border-radius: 999px; border: 1px solid var(--border); background: var(--bg-card);
  font-weight: 700; font-size: .88rem; color: var(--muted); cursor: pointer; transition: all .2s;
}
.cat-tab:hover { color: var(--text); border-color: var(--faint); }
.cat-tab.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ---------- Product cards ---------- */
.grid-products { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px; }
.card-product {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; display: flex; flex-direction: column; gap: 12px; transition: transform .2s, border-color .2s; position: relative;
}
.card-product:hover { transform: translateY(-4px); border-color: var(--faint); }
.card-product .tag { position: absolute; top: 16px; right: 16px; background: var(--gold); color: #1a1a1a; font-size: .7rem; font-weight: 800; padding: 4px 10px; border-radius: 999px; }
.card-product h3 { font-family: var(--font-brand); font-weight: 700; font-size: 1.25rem; padding-right: 40px; }
.card-product .pieces { color: var(--faint); font-size: .8rem; font-weight: 600; letter-spacing: .5px; }
.card-product .composition { color: var(--muted); font-size: .82rem; white-space: pre-line; flex: 1; }
.card-product .price { font-family: var(--font-brand); font-weight: 700; font-size: 1.45rem; color: var(--gold); }
.card-product .bottom { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 4px; }
.qty-stepper { display: inline-flex; align-items: center; border: 1px solid var(--border); border-radius: 999px; overflow: hidden; }
.qty-stepper button { background: var(--bg-card-2); border: 0; color: var(--text); width: 34px; height: 38px; font-size: 1.1rem; cursor: pointer; font-weight: 700; }
.qty-stepper input { width: 40px; text-align: center; background: transparent; border: 0; color: var(--text); font-weight: 700; height: 38px; }
.btn-add { padding: 0 18px; height: 38px; font-size: .82rem; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.step { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 22px; text-align: center; }
.step .num { width: 46px; height: 46px; margin: 0 auto 14px; border-radius: 50%; background: var(--accent); color: #fff; font-family: var(--font-brand); font-weight: 900; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.step h4 { margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .86rem; }

/* ---------- Builder ---------- */
.builder-wrap { display: grid; grid-template-columns: 1fr 340px; gap: 30px; align-items: start; }
.builder-col { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.builder-col h3 { font-family: var(--font-brand); margin-bottom: 16px; }
.ing-group { margin-bottom: 22px; }
.ing-group h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 10px; }
.ing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 10px; }
.ing-chip {
  border: 1px solid var(--border); background: var(--bg-card-2); border-radius: 12px; padding: 12px; text-align: center;
  cursor: pointer; transition: all .15s; font-size: .85rem; font-weight: 600; user-select: none;
}
.ing-chip:hover { border-color: var(--faint); }
.ing-chip.selected { background: rgba(230, 57, 70, .15); border-color: var(--accent); color: #fff; }
.ing-chip small { display: block; color: var(--muted); font-size: .7rem; margin-top: 2px; }
.builder-summary { position: sticky; top: 84px; }
.builder-summary .total { font-family: var(--font-brand); font-weight: 900; font-size: 2rem; color: var(--gold); }
.builder-summary .unit { color: var(--muted); font-size: .82rem; }
.summary-list { margin: 16px 0; list-style: none; }
.summary-list li { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px dashed var(--border); font-size: .9rem; }
@media (max-width: 900px) { .builder-wrap { grid-template-columns: 1fr; } .builder-summary { position: static; } }

/* ---------- Forms ---------- */
.form-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; max-width: 460px; margin: 0 auto; }
.form-card.wide { max-width: 640px; }
.form-card h1 { font-family: var(--font-brand); font-weight: 900; margin-bottom: 6px; }
.form-card .sub { color: var(--muted); font-size: .9rem; margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .85rem; font-weight: 700; margin-bottom: 7px; }
.field label small { color: var(--faint); font-weight: 500; }
.input, .select, .textarea {
  width: 100%; padding: 13px 15px; border-radius: 12px; border: 1px solid var(--border);
  background: var(--bg-soft); color: var(--text); font-family: var(--font-body); font-size: .95rem; transition: border-color .2s;
}
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--accent); }
.textarea { resize: vertical; min-height: 90px; }
.form-error { color: #ff8b93; font-size: .83rem; margin-top: 5px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.divider { display: flex; align-items: center; gap: 14px; color: var(--faint); font-size: .8rem; margin: 22px 0; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.btn-google {
  display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%;
  background: #fff; color: #1a1a1a; border: 0; padding: 13px; border-radius: 12px; font-weight: 700; cursor: pointer; font-size: .95rem;
}
.btn-google svg { width: 20px; height: 20px; }

/* ---------- Cart ---------- */
.cart-list { display: flex; flex-direction: column; gap: 14px; }
.cart-item { display: grid; grid-template-columns: 1fr auto auto auto; gap: 18px; align-items: center; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 22px; }
.cart-item .name { font-weight: 700; font-family: var(--font-brand); }
.cart-item .desc { color: var(--muted); font-size: .78rem; white-space: pre-line; margin-top: 3px; }
.cart-item .line-total { font-weight: 800; font-family: var(--font-brand); color: var(--gold); }
.btn-remove { background: none; border: 0; color: var(--muted); cursor: pointer; font-size: 1.2rem; }
.btn-remove:hover { color: var(--accent); }
.cart-summary { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.cart-summary .row { display: flex; justify-content: space-between; padding: 8px 0; }
.cart-summary .row.total { border-top: 1px solid var(--border); margin-top: 10px; padding-top: 16px; font-weight: 800; font-size: 1.2rem; font-family: var(--font-brand); }
.cart-grid { display: grid; grid-template-columns: 1fr 320px; gap: 30px; align-items: start; }
@media (max-width: 800px) { .cart-grid { grid-template-columns: 1fr; } .cart-item { grid-template-columns: 1fr auto; } }

/* ---------- Checkout ---------- */
.time-slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 10px; }
.time-slot { padding: 12px; text-align: center; border: 1px solid var(--border); border-radius: 12px; background: var(--bg-card-2); cursor: pointer; font-weight: 700; transition: all .15s; }
.time-slot:hover { border-color: var(--faint); }
.time-slot.selected { background: rgba(230, 57, 70, .15); border-color: var(--accent); }
.pay-option { display: flex; align-items: center; gap: 12px; border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; cursor: pointer; margin-bottom: 12px; transition: all .15s; background: var(--bg-card-2); }
.pay-option:hover { border-color: var(--faint); }
.pay-option.selected { border-color: var(--accent); background: rgba(230, 57, 70, .08); }
.pay-option input { accent-color: var(--accent); width: 18px; height: 18px; }
.pay-option .pay-title { font-weight: 700; }
.pay-option .pay-sub { color: var(--muted); font-size: .78rem; }

/* ---------- Orders ---------- */
.order-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 18px; }
.order-head { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 14px; }
.order-code { font-family: var(--font-brand); font-weight: 900; font-size: 1.1rem; }
.order-items { list-style: none; border-top: 1px solid var(--border); padding-top: 12px; }
.order-items li { display: flex; justify-content: space-between; gap: 12px; padding: 5px 0; font-size: .9rem; color: var(--muted); }
.order-items li .amount { color: var(--text); font-weight: 600; }
.order-meta { display: flex; flex-wrap: wrap; gap: 18px; color: var(--muted); font-size: .83rem; margin-top: 12px; }
.order-meta strong { color: var(--text); }

/* ---------- Badges ---------- */
.badge { display: inline-block; padding: 5px 12px; border-radius: 999px; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; }
.badge-pending { background: rgba(230, 185, 94, .15); color: var(--gold); }
.badge-confirmed { background: rgba(201, 159, 90, .15); color: var(--accent-2); }
.badge-prep { background: rgba(94, 154, 230, .15); color: #7fb2f0; }
.badge-ready { background: rgba(61, 220, 132, .15); color: var(--green); }
.badge-done { background: rgba(255, 255, 255, .08); color: var(--muted); }
.badge-cancel { background: rgba(230, 57, 70, .15); color: #ff8b93; }

/* ---------- Confirmation ---------- */
.confirm-box { text-align: center; max-width: 560px; margin: 40px auto; padding: 48px 32px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; }
.confirm-icon { width: 72px; height: 72px; border-radius: 50%; background: rgba(61,220,132,.15); color: var(--green); font-size: 2rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-soft); padding: 48px 0 24px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.footer-brand { font-family: var(--font-brand); font-weight: 900; font-size: 1.3rem; }
.footer-brand span { color: var(--gold); font-size: .7rem; letter-spacing: 2px; display: block; font-weight: 700; }
.site-footer p { color: var(--muted); font-size: .85rem; margin-top: 8px; }
.footer-title { font-weight: 800; margin-bottom: 10px; }
.footer-link { color: var(--muted); font-size: .88rem; }
.footer-link:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); margin-top: 34px; padding-top: 20px; color: var(--faint); font-size: .8rem; text-align: center; }
.heart { color: var(--accent); }

/* ---------- Admin ---------- */
.admin-body { display: grid; grid-template-columns: 220px 1fr; min-height: 100vh; }
.admin-side { background: var(--bg-soft); border-right: 1px solid var(--border); padding: 24px 16px; }
.admin-side a { display: block; padding: 10px 14px; border-radius: 10px; margin-bottom: 4px; color: var(--muted); font-weight: 600; font-size: .9rem; }
.admin-side a:hover, .admin-side a.active { background: var(--bg-card-2); color: var(--text); }
.admin-main { padding: 28px 30px 60px; }
.admin-main h1 { font-family: var(--font-brand); font-weight: 900; margin-bottom: 22px; }
.admin-top { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.table-wrap { overflow-x: auto; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); }
table.admin { width: 100%; border-collapse: collapse; font-size: .86rem; }
table.admin th, table.admin td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--border); }
table.admin th { color: var(--gold); text-transform: uppercase; font-size: .7rem; letter-spacing: 1px; }
table.admin tr:last-child td { border-bottom: 0; }
table.admin tr:hover td { background: rgba(255,255,255,.02); }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin-bottom: 26px; }
.stat { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.stat .v { font-family: var(--font-brand); font-weight: 900; font-size: 1.7rem; }
.stat .k { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: 1px; }
@media (max-width: 800px) { .admin-body { grid-template-columns: 1fr; } .admin-side { border-right: 0; border-bottom: 1px solid var(--border); } }

.status-select { background: var(--bg-soft); color: var(--text); border: 1px solid var(--border); border-radius: 8px; padding: 7px 10px; font-size: .82rem; }

/* ---------- Utility ---------- */
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 28px; } .mb-2 { margin-bottom: 16px; }
.muted { color: var(--muted); } .center { text-align: center; }
.flex { display: flex; gap: 12px; align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.hero-mini { padding: 50px 0 30px; text-align: center; }
.hero-mini h1 { font-family: var(--font-brand); font-weight: 900; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.hero-mini p { color: var(--muted); margin-top: 8px; }

/* ---------- Ingredientes destacados (pedido) ---------- */
.order-ingredientes {
  display: block; margin-top: 6px; color: #fff;
  background: rgba(230, 185, 94, .08); border: 1px solid rgba(230, 185, 94, .18);
  border-radius: 10px; padding: 8px 12px; font-size: .84rem; line-height: 1.55;
  white-space: pre-line; font-weight: 500;
}
.order-ingredientes .ing-label { color: var(--gold); font-weight: 700; }
.order-items li .item-name { font-weight: 700; color: var(--text); }

/* ---------- Panel admin: detalle de pedido más grande y blanco ---------- */
.admin-main .order-items li { font-size: 1.05rem; color: #fff; }
.admin-main .order-items li .item-name { font-size: 1.15rem; color: #fff; }
.admin-main .order-ingredientes {
  font-size: 1rem; color: #fff; font-weight: 500;
  background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .2);
}
.admin-main .order-code { font-size: 1.4rem; }
.admin-main .order-meta { font-size: .95rem; }
.admin-main .order-meta strong { color: #fff; }
.admin-main .order-meta span { color: var(--muted); }
table.admin { font-size: .95rem; }

/* ---------- MÓVIL ---------- */
@media (max-width: 860px) {
  .header-inner { height: 60px; }
  .brand-logo { width: 40px; height: 40px; }
  .brand-text strong { font-size: 1rem; }
  .site-nav a { font-size: 1.05rem; padding: 14px 4px; }
}

@media (max-width: 560px) {
  .container { padding: 0 14px; }
  .btn { min-height: 46px; padding: 12px 22px; font-size: .95rem; }
  .btn-lg { min-height: 52px; font-size: 1.05rem; }
  .btn-block { width: 100%; }

  .hero { padding: 52px 0 40px; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: .95rem; }
  .hero-badges { gap: 10px 18px; font-size: .78rem; margin-top: 30px; }
  .hero-cta { gap: 10px; }

  .section { padding: 46px 0; }
  .grid-products { grid-template-columns: 1fr; gap: 14px; }
  .card-product { padding: 20px; }
  .card-product h3 { font-size: 1.35rem; }
  .card-product .price { font-size: 1.65rem; }
  .card-product .composition { font-size: .86rem; }
  .qty-stepper button, .qty-stepper input { height: 46px; }
  .qty-stepper button { width: 40px; }
  .btn-add { height: 46px; padding: 0 24px; }

  .steps { grid-template-columns: 1fr; }

  .builder-col { padding: 20px; }
  .builder-summary .total { font-size: 2.1rem; }
  .ing-chip { min-height: 52px; padding: 8px 6px; font-size: .84rem; }

  .cart-item { grid-template-columns: 1fr; gap: 10px; padding: 16px; }
  .cart-item .desc { font-size: .85rem; }
  .cart-summary, .form-card { padding: 22px; }

  .time-slots { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .time-slot { min-height: 50px; display: flex; align-items: center; justify-content: center; padding: 8px; }

  .pay-option { padding: 15px 14px; }

  .order-card { padding: 18px; }
  .order-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .order-code { font-size: 1.3rem; }
  .order-ingredientes { font-size: .88rem; padding: 10px 12px; }

  .confirm-box { padding: 40px 20px; }

  .form-row { grid-template-columns: 1fr; }
  .input, .select, .textarea { font-size: 1rem; padding: 14px; }

  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
}
