/* El Rapido — static styles */
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #1d150f;
  --bg-2: #261c14;
  --fg: #fbf7ef;
  --muted: #b5a89a;
  --border: #3a2c20;
  --card: #261c14;
  --lime: #c6f23a;
  --lime-fg: #1a1208;
  --chili: #e0492d;
  --radius: 12px;
}

* { box-sizing: border-box; border-color: var(--border); }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--fg); font-family: 'Inter', system-ui, sans-serif; -webkit-font-smoothing: antialiased; }
body {
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 18px 18px;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

h1, h2, h3 { font-family: 'Archivo Black', 'Arial Black', sans-serif; letter-spacing: -0.02em; text-transform: uppercase; margin: 0; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 0.95; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: 1.1rem; }
p { margin: 0; }

.container { max-width: 1152px; margin: 0 auto; padding: 0 1rem; }

/* Header */
.header { position: sticky; top: 0; z-index: 40; border-bottom: 1px solid var(--border); background: rgba(29,21,15,0.85); backdrop-filter: blur(10px); }
.header-inner { display: flex; align-items: center; gap: 1rem; height: 56px; }
.logo { font-family: 'Archivo Black', sans-serif; font-size: 1.25rem; display: flex; gap: 0.5rem; letter-spacing: -0.02em; }
.logo .lime { color: var(--lime); text-shadow: 0 0 24px var(--lime); }
.nav { display: none; gap: 1.25rem; margin-left: 1rem; font-size: 0.875rem; font-weight: 500; }
.nav a:hover, .nav a.active { color: var(--lime); }
@media (min-width: 768px) { .nav { display: flex; } }
.header-right { margin-left: auto; display: flex; gap: 0.5rem; align-items: center; }
.location-pill { display: none; align-items: center; gap: 0.375rem; border: 1px solid var(--border); background: var(--card); border-radius: 999px; padding: 0.375rem 0.75rem; font-size: 0.75rem; color: var(--muted); }
.location-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); }
@media (min-width: 640px) { .location-pill { display: inline-flex; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; height: 40px; padding: 0 1rem; border-radius: 999px; font-weight: 700; font-size: 0.875rem; border: 1px solid transparent; cursor: pointer; transition: transform .15s ease, background .15s, border-color .15s; font-family: inherit; }
.btn:hover { transform: scale(1.03); }
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--lime); color: var(--lime-fg); }
.btn-ghost { background: var(--card); border-color: var(--border); color: var(--fg); }
.btn-ghost:hover { border-color: var(--lime); }
.btn-lg { height: 56px; padding: 0 1.75rem; font-size: 1rem; }
.btn-outline-lime { background: transparent; color: var(--lime); border: 1px solid var(--lime); height: 48px; padding: 0 1.75rem; }
.btn-outline-lime:hover { background: var(--lime); color: var(--lime-fg); }
.btn-glow { box-shadow: 0 0 40px -10px var(--lime); }

.cart-btn { position: relative; }
.cart-count { margin-left: 0.25rem; background: rgba(0,0,0,0.2); padding: 0.125rem 0.5rem; border-radius: 999px; font-size: 0.75rem; min-width: 22px; display: inline-block; }
.cart-count.hidden { display: none; }

/* Hero */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--bg), rgba(29,21,15,0.7) 50%, rgba(29,21,15,0.4)); }
.hero-content { position: relative; padding: 5rem 0; max-width: 640px; }
@media (min-width: 640px) { .hero-content { padding: 7rem 0; } }
.eyebrow { display: inline-flex; align-items: center; gap: 0.375rem; border: 1px solid rgba(198,242,58,0.4); background: rgba(198,242,58,0.1); padding: 0.25rem 0.75rem; border-radius: 999px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--lime); }
.eyebrow-chili { color: var(--chili); border-color: rgba(224,73,45,0.4); background: rgba(224,73,45,0.1); }
.hero h1 { margin-top: 1rem; }
.hero h1 .lime { color: var(--lime); text-shadow: 0 0 24px var(--lime); }
.hero p.lede { margin-top: 1.25rem; color: var(--muted); font-size: 1rem; max-width: 32rem; }
@media (min-width: 640px) { .hero p.lede { font-size: 1.125rem; } }
.hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.75rem; }
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2.5rem; max-width: 32rem; }
.stat { border: 1px solid var(--border); background: rgba(38,28,20,0.6); backdrop-filter: blur(8px); border-radius: 12px; padding: 0.625rem 0.75rem; }
.stat dt { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); margin: 0; }
.stat dd { font-family: 'Archivo Black', sans-serif; font-size: 1rem; margin: 0.125rem 0 0; }

/* Sections */
section.block { padding: 4rem 0; }
.section-head { margin-bottom: 2rem; }
.section-head .label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--lime); }
.section-head h2 { margin-top: 0.25rem; }
.section-head p { margin-top: 0.25rem; color: var(--muted); font-size: 0.875rem; }

/* Card grid */
.grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .grid { grid-template-columns: repeat(3,1fr); } }

.card { display: flex; flex-direction: column; border: 1px solid var(--border); background: var(--card); border-radius: 16px; overflow: hidden; transition: transform .2s, border-color .2s; }
.card:hover { transform: translateY(-2px); border-color: rgba(198,242,58,0.6); }
.card.combo { border-color: rgba(198,242,58,0.4); box-shadow: 0 0 0 1px var(--lime); }
.card-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .card-img img { transform: scale(1.05); }
.badge { position: absolute; left: 0.75rem; top: 0.75rem; background: var(--lime); color: var(--lime-fg); padding: 0.25rem 0.625rem; border-radius: 999px; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; }
.flame { position: absolute; right: 0.75rem; top: 0.75rem; width: 28px; height: 28px; border-radius: 50%; background: var(--chili); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.875rem; }
.card-body { padding: 1rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.card-row { display: flex; justify-content: space-between; gap: 0.5rem; align-items: flex-start; }
.card-row .name { font-weight: 800; font-size: 1rem; }
.card-row .price { font-family: 'Archivo Black', sans-serif; font-size: 1.125rem; line-height: 1; }
.card-row .old { font-size: 0.75rem; color: var(--muted); text-decoration: line-through; }
.card .desc { color: var(--muted); font-size: 0.875rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Pages */
.page-head { padding: 2.5rem 0 2rem; }
.page-head h1 { margin-top: 0.25rem; font-size: clamp(2.25rem, 5vw, 3rem); }
.page-head p { margin-top: 0.5rem; color: var(--muted); font-size: 0.875rem; max-width: 36rem; }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 2.5rem 0; text-align: center; font-size: 0.875rem; color: var(--muted); }

/* Cart drawer */
.cart-overlay { position: fixed; inset: 0; z-index: 50; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); display: none; }
.cart-overlay.open { display: block; }
.cart-drawer { position: fixed; right: 0; top: 0; z-index: 51; height: 100dvh; width: 100%; max-width: 28rem; background: var(--card); border-left: 1px solid var(--border); display: flex; flex-direction: column; transform: translateX(100%); transition: transform .3s ease; }
.cart-drawer.open { transform: translateX(0); }
.cart-header { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); }
.cart-header h2 { font-family: 'Inter', sans-serif; font-size: 1.125rem; text-transform: none; letter-spacing: 0; }
.icon-btn { background: none; border: 0; color: var(--fg); cursor: pointer; padding: 0.375rem; border-radius: 999px; font-size: 1.25rem; line-height: 1; }
.icon-btn:hover { background: rgba(255,255,255,0.06); }
.cart-body { flex: 1; overflow-y: auto; padding: 1rem 1.25rem; }
.cart-empty { padding: 2rem; text-align: center; color: var(--muted); display: flex; flex-direction: column; gap: 0.75rem; align-items: center; }
.cart-line { display: flex; gap: 0.75rem; border: 1px solid var(--border); background: var(--bg); border-radius: 12px; padding: 0.75rem; margin-bottom: 0.75rem; }
.cart-line img { width: 64px; height: 64px; border-radius: 8px; object-fit: cover; }
.cart-line .info { flex: 1; display: flex; flex-direction: column; }
.cart-line .top { display: flex; justify-content: space-between; font-weight: 600; }
.cart-line .bottom { margin-top: auto; display: flex; justify-content: space-between; align-items: center; }
.qty { display: inline-flex; align-items: center; gap: 0.25rem; border: 1px solid var(--border); border-radius: 999px; }
.qty button { background: none; border: 0; color: var(--fg); padding: 0.375rem 0.5rem; cursor: pointer; }
.qty button:hover { color: var(--lime); }
.qty span { min-width: 24px; text-align: center; font-weight: 700; font-size: 0.875rem; }
.remove { background: none; border: 0; color: var(--muted); cursor: pointer; padding: 0.25rem; }
.remove:hover { color: var(--chili); }
.cart-footer { border-top: 1px solid var(--border); padding: 1rem 1.25rem; font-size: 0.875rem; }
.cart-row { display: flex; justify-content: space-between; padding: 0.125rem 0; }
.cart-row.total { border-top: 1px solid var(--border); margin-top: 0.5rem; padding-top: 0.5rem; font-weight: 700; font-size: 1rem; }
.cart-row .muted { color: var(--muted); }
.cart-row .accent { color: var(--lime); font-weight: 600; }
.checkout-btn { display: flex; height: 48px; width: 100%; align-items: center; justify-content: center; border-radius: 999px; background: var(--lime); color: var(--lime-fg); font-weight: 700; margin-top: 0.5rem; }
.eta-note { margin-top: 0.5rem; text-align: center; font-size: 0.75rem; color: var(--muted); }
.upsell { display: flex; gap: 0.75rem; align-items: center; border: 1px dashed rgba(198,242,58,0.4); background: rgba(198,242,58,0.05); border-radius: 12px; padding: 0.75rem; margin-top: 1rem; }
.upsell img { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; }
.upsell .info { flex: 1; font-size: 0.875rem; }
.upsell .info p { margin: 0; }
.upsell .info .small { font-size: 0.75rem; color: var(--muted); }
.upsell button { background: var(--lime); color: var(--lime-fg); border: 0; border-radius: 999px; padding: 0.375rem 0.875rem; font-weight: 700; font-size: 0.75rem; cursor: pointer; }

/* Checkout */
.checkout-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .checkout-grid { grid-template-columns: 1fr 380px; } }
.toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; border: 1px solid var(--border); background: var(--card); border-radius: 999px; padding: 0.25rem; }
.toggle button { height: 40px; border-radius: 999px; border: 0; background: none; color: var(--muted); font-weight: 700; font-size: 0.875rem; cursor: pointer; text-transform: capitalize; font-family: inherit; }
.toggle button.active { background: var(--lime); color: var(--lime-fg); }
fieldset { border: 1px solid var(--border); background: var(--card); border-radius: 16px; padding: 1.25rem; margin: 0 0 1.5rem; }
fieldset legend { padding: 0 0.5rem; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--lime); }
fieldset .stack > * + * { margin-top: 0.75rem; }
.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.input { display: block; }
.input span { display: block; font-size: 0.75rem; color: var(--muted); margin-bottom: 0.25rem; font-weight: 600; }
.input input { width: 100%; height: 44px; border-radius: 8px; border: 1px solid var(--border); background: var(--bg); color: var(--fg); padding: 0 0.75rem; font-size: 0.875rem; font-family: inherit; outline: none; }
.input input:focus { border-color: var(--lime); }
.dashed-note { border: 1px dashed var(--border); background: var(--card); border-radius: 12px; padding: 1rem; font-size: 0.875rem; color: var(--muted); }
.summary { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 1.25rem; height: fit-content; }
.summary h2 { font-family: 'Inter', sans-serif; font-size: 1.125rem; text-transform: none; letter-spacing: 0; margin-bottom: 1rem; }
.sum-line { display: flex; justify-content: space-between; font-size: 0.875rem; padding: 0.125rem 0; }
.sum-line .muted { color: var(--muted); }
.sum-line.total { border-top: 1px solid var(--border); margin-top: 0.5rem; padding-top: 0.5rem; font-weight: 700; font-size: 1rem; }
.sum-list { list-style: none; padding: 0; margin: 0 0 1rem; }
.sum-list li { display: flex; justify-content: space-between; font-size: 0.875rem; padding: 0.125rem 0; }
.sum-list .lime { color: var(--lime); }
hr.sep { border: 0; border-top: 1px solid var(--border); margin: 1rem 0; }

/* Track */
.track-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem; text-align: center; max-width: 640px; margin: 0 auto; }
.track-card h1 { font-size: 2.5rem; margin-top: 0.5rem; }
.progress { height: 8px; background: rgba(255,255,255,0.08); border-radius: 999px; overflow: hidden; margin: 2rem 0; }
.progress > div { height: 100%; background: var(--lime); border-radius: 999px; transition: width .7s; }
.steps { list-style: none; padding: 0; margin: 0; text-align: left; }
.steps li { display: flex; gap: 0.75rem; align-items: center; padding: 0.5rem; border-radius: 8px; margin-bottom: 0.5rem; }
.steps li.active { background: rgba(198,242,58,0.1); }
.steps .bullet { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.08); color: var(--muted); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.75rem; }
.steps li.done .bullet { background: var(--lime); color: var(--lime-fg); }
.steps li.active .bullet { background: rgba(198,242,58,0.2); color: var(--lime); }
.steps li.done .label, .steps li.active .label { color: var(--fg); font-weight: 600; }
.steps .label { color: var(--muted); font-size: 0.875rem; font-weight: 600; }

/* Contact */
.contact-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; margin-top: 2rem; }
@media (min-width: 640px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-card { display: flex; gap: 0.75rem; align-items: center; border: 1px solid var(--border); background: var(--card); border-radius: 16px; padding: 1rem; }
.contact-card .icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(198,242,58,0.1); color: var(--lime); display: flex; align-items: center; justify-content: center; font-size: 1.125rem; }
.contact-card .lbl { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.contact-card .val { font-weight: 600; }
.hours { border: 1px solid var(--border); background: var(--card); border-radius: 16px; padding: 1.5rem; margin-top: 2rem; }
.hours ul { list-style: none; padding: 0; margin: 0.75rem 0 0; display: grid; grid-template-columns: 1fr 2fr; gap: 0.375rem 1rem; font-size: 0.875rem; }
.hours ul .muted { color: var(--muted); }

/* Toast */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--card); border: 1px solid var(--border); color: var(--fg); padding: 0.75rem 1.25rem; border-radius: 999px; font-size: 0.875rem; font-weight: 600; opacity: 0; transition: all .2s; z-index: 99; pointer-events: none; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.success { border-color: var(--lime); }
.toast.error { border-color: var(--chili); }

code.code { background: var(--card); padding: 0.125rem 0.375rem; border-radius: 4px; color: var(--lime); font-weight: 700; }
