:root {
    --bg: #0a0a0a;
    --panel: #101010;
    --panel-2: #171717;
    --line: #353535;
    --orange: #ff6a00;
    --green: #8cff3f;
    --white: #ffffff;
    --muted: #b8b8b8;
}

* { box-sizing: border-box; }
[x-cloak] { display: none !important; }
[hidden] { display: none !important; }
body {
    margin: 0;
    background: radial-gradient(circle at top left, rgba(255, 106, 0, .14), transparent 34%), var(--bg);
    color: var(--white);
    font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.mono { font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace; }
.topbar {
    position: sticky; top: 0; z-index: 20;
    background: rgba(10, 10, 10, .88); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 106, 0, .35);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 950; letter-spacing: 0; font-size: 1.3rem; }
.brand-logo {
    width: 54px;
    height: 54px;
    object-fit: cover;
    object-position: center;
    border: 1px solid rgba(255, 106, 0, .55);
    background: #050505;
    box-shadow: 0 0 20px rgba(255, 106, 0, .22);
}
.mark { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--orange); color: var(--orange); background: #090909; }
.navlinks { display: flex; gap: 22px; color: var(--muted); font-size: .92rem; }
.actions { display: flex; align-items: center; gap: 12px; }
.btn {
    border: 1px solid var(--orange); color: var(--white); background: linear-gradient(135deg, var(--orange), #ff8a00);
    padding: 12px 16px; font-weight: 900; text-transform: uppercase; cursor: pointer;
    box-shadow: 0 0 22px rgba(255, 106, 0, .22);
}
.btn.secondary { background: transparent; color: var(--green); border-color: rgba(140, 255, 63, .55); box-shadow: none; }
.btn.ghost { background: #0d0d0d; color: var(--white); border-color: var(--line); box-shadow: none; }
.btn.is-disabled,
.btn:disabled {
    opacity: .55;
    cursor: not-allowed;
    box-shadow: none;
    filter: saturate(.7);
}
.cart-pill { border: 1px solid var(--line); padding: 10px 12px; color: var(--green); background: #050505; }
.cart-pill.is-disabled {
    color: var(--muted);
    border-color: rgba(255, 255, 255, .12);
    cursor: not-allowed;
}
.hero { padding: 64px 0 34px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: center; }
.hero-logo-panel { display: grid; gap: 16px; }
.hero-logo {
    display: block;
    width: min(100%, 460px);
    max-height: 400px;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
    border: 0;
    background: transparent;
    box-shadow: none;
}
.hero-terminal { padding: 18px; }
.kicker { color: var(--green); text-transform: uppercase; font-weight: 900; letter-spacing: .08em; }
h1 { font-size: clamp(3rem, 9vw, 7.5rem); line-height: .85; margin: 12px 0; font-weight: 1000; letter-spacing: 0; }
h1 span { display: block; color: var(--orange); }
.lead { color: var(--muted); font-size: 1.1rem; max-width: 620px; line-height: 1.6; }
.terminal, .card, .cart, .checkout-panel {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(23, 23, 23, .94), rgba(8, 8, 8, .96));
    box-shadow: inset 0 0 0 1px rgba(255, 106, 0, .08);
}
.terminal { padding: 24px; position: relative; }
.terminal::before, .card::before {
    content: ""; position: absolute; inset: 10px auto auto 10px; width: 22px; height: 22px;
    border-top: 2px solid var(--orange); border-left: 2px solid var(--orange);
}
.terminal p { margin: 10px 0; color: var(--white); }
.terminal strong { color: var(--green); }
.loader { height: 34px; border: 1px solid var(--orange); margin-top: 18px; padding: 4px; display: grid; grid-template-columns: repeat(14, 1fr); gap: 4px; }
.loader span { background: var(--orange); }
.section-title { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin: 44px 0 18px; }
.section-title h2 { margin: 0; font-size: clamp(1.6rem, 4vw, 2.6rem); text-transform: uppercase; }
.section-title p { margin: 0; color: var(--orange); font-weight: 900; text-transform: uppercase; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { position: relative; overflow: hidden; padding: 18px; min-height: 420px; display: flex; flex-direction: column; gap: 16px; }
.dish {
    min-height: 170px; border: 1px solid rgba(255, 106, 0, .28);
    background: radial-gradient(circle at 50% 50%, rgba(255, 138, 0, .55), rgba(255, 106, 0, .16) 35%, transparent 60%),
        linear-gradient(135deg, #1a120d, #050505);
    display: grid; place-items: center; color: var(--orange); font-size: 4rem; font-weight: 1000;
}
.card h3 { margin: 0; font-size: 1.45rem; line-height: 1; text-transform: uppercase; }
.code { color: var(--green); font-weight: 900; }
.price { color: var(--green); font-size: 1.45rem; font-weight: 1000; }
.desc { color: var(--muted); line-height: 1.5; }
.desc--tech { font-size: .92rem; font-style: italic; line-height: 1.45; color: #757575; }
.options { display: grid; gap: 8px; padding: 10px; border: 1px dashed rgba(140, 255, 63, .3); }
.options-panel { margin-top: 6px; }
.option-group { display: grid; gap: 8px; padding-top: 8px; }
.order-controls { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.order-actions { display: flex; gap: 10px; flex-wrap: wrap; padding-top: 4px; }
.options label { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .9rem; }
.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    place-items: center;
    padding: 18px;
    background: rgba(5, 5, 5, .78);
    backdrop-filter: blur(8px);
}
.modal-card {
    width: min(560px, 100%);
    max-height: min(86vh, 760px);
    overflow: auto;
    padding: 22px;
    box-shadow: 0 0 0 1px rgba(255, 106, 0, .16), 0 30px 60px rgba(0, 0, 0, .42);
}
.modal-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}
.modal-head h4 {
    margin: 6px 0 0;
    font-size: 1.4rem;
    text-transform: uppercase;
}
.qty { width: 72px; padding: 10px; color: var(--white); background: #060606; border: 1px solid var(--line); }
.qty--sm { width: 60px; padding: 8px; }
.btn--sm { padding: 9px 12px; font-size: .82rem; }
.btn--block { display: inline-flex; width: 100%; justify-content: center; }
.cart-dock {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 30;
    width: min(360px, calc(100% - 36px));
}
.cart-toggle {
    position: relative;
    z-index: 1;
    width: 100%;
    border: 1px solid rgba(255, 106, 0, .45);
    background: linear-gradient(135deg, rgba(255, 106, 0, .95), rgba(255, 138, 0, .92));
    color: var(--white);
    box-shadow: 0 12px 32px rgba(255, 106, 0, .18);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    font-weight: 900;
    text-transform: uppercase;
}
.cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 18px;
    background: rgba(5, 5, 5, .42);
    backdrop-filter: blur(8px);
    overflow: auto;
}
.cart-drawer-panel {
    width: min(360px, 100%);
    height: min(76vh, calc(100vh - 100px));
    max-height: min(76vh, calc(100vh - 100px));
    overflow: hidden;
}
.cart {
    height: 100%;
    overflow: hidden;
    padding: 16px;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 10px;
}
.cart-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cart h2 { margin: 0; font-size: 1rem; }
.cart-count { color: var(--green); font-size: .8rem; }
.cart-items-shell {
    position: relative;
    min-height: 0;
    overflow: hidden;
}
.cart-items {
    height: 100%;
    display: grid;
    align-content: start;
    gap: 8px;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    scrollbar-color: var(--orange) rgba(255, 255, 255, .08);
    scrollbar-width: auto;
    min-height: 0;
    padding-right: 8px;
    padding-bottom: 34px;
}
.cart-items:focus-visible {
    outline: 1px solid var(--orange);
    outline-offset: -1px;
}
.cart-items::-webkit-scrollbar { width: 10px; }
.cart-items::-webkit-scrollbar-track { background: rgba(255, 255, 255, .08); }
.cart-items::-webkit-scrollbar-thumb {
    background: var(--orange);
    border: 2px solid #101010;
    border-radius: 999px;
}
.cart-scroll-hint {
    position: absolute;
    right: 12px;
    bottom: 0;
    left: 0;
    padding: 22px 8px 5px;
    color: var(--orange);
    background: linear-gradient(180deg, transparent, #101010 58%);
    text-align: center;
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
    pointer-events: none;
}
.cart-item { border-top: 1px solid var(--line); padding: 10px 0; display: grid; gap: 6px; }
.cart-meta { display: flex; align-items: flex-start; gap: 8px; flex-wrap: wrap; color: var(--muted); font-size: .82rem; }
.selected-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 2px;
}
.selected-options--compact { margin-top: 0; }
.selected-options--compact .selected-option {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.selected-option {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border: 1px solid rgba(255, 255, 255, .09);
    background: rgba(255, 255, 255, .03);
    border-radius: 10px;
    color: var(--muted);
    font-size: .74rem;
    line-height: 1.2;
    max-width: 100%;
}
.selected-option-group { color: var(--white); }
.selected-option-value { color: var(--muted); }
.selected-option-price { color: var(--green); white-space: nowrap; }
.cart-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cart-form { display: flex; gap: 8px; align-items: center; flex: 1 1 auto; }
.cart-form--update { min-width: 0; }
.cart-form .btn { flex: 1 1 auto; }
.cart-footer {
    padding-top: 10px;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 10px;
    position: sticky;
    bottom: 0;
    background: linear-gradient(180deg, rgba(16, 16, 16, .72), rgba(8, 8, 8, .98));
    backdrop-filter: blur(8px);
}
.cart-line { display: flex; justify-content: space-between; gap: 12px; }
.cart-line--tight { align-items: center; }
.option-select-field { display: grid; gap: 8px; }
.option-select {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    color: var(--white);
    background: #060606;
    border: 1px solid var(--line);
}
.status { margin: 14px 0 0; color: var(--green); }
.status--warning { color: var(--orange); }
.checkout {
    padding: 50px 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    max-width: 1040px;
}
.checkout-panel { padding: 24px; }
.checkout-flow { display: grid; gap: 22px; }
.checkout-hero { display: grid; gap: 8px; }
.checkout-lead { margin: 0; color: var(--muted); line-height: 1.55; max-width: 42rem; font-size: 1.05rem; }
.eyebrow {
    margin: 0;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 900;
    font-size: .78rem;
}
.checkout-progress {
    list-style: none;
    margin: 0;
    padding: 2px 0 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.checkout-progress-step {
    display: grid;
    justify-items: center;
    gap: 10px;
    text-align: center;
    position: relative;
}
.checkout-progress-step span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .22);
    color: var(--muted);
    font-weight: 900;
    font-size: .82rem;
    background: #111;
    z-index: 1;
}
.checkout-progress-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 16px;
    left: 58%;
    right: -42%;
    height: 2px;
    background: rgba(255, 255, 255, .12);
}
.checkout-progress-step strong { display: block; margin-bottom: 2px; color: var(--white); font-size: .95rem; }
.checkout-progress-step p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.45; }
.checkout-progress-step.is-active span {
    color: #111;
    background: var(--orange);
    border-color: var(--orange);
}
.checkout-progress-step.is-active strong {
    color: var(--white);
}
.checkout-progress-step.is-active::after {
    background: linear-gradient(90deg, var(--orange), rgba(255, 255, 255, .12));
}
.checkout-form { display: grid; gap: 18px; }
.checkout-section {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .02);
    display: grid;
    gap: 14px;
}
.section-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.checkout-section--contact .section-head h2 {
    margin: 6px 0 0;
    font-size: 1.6rem;
    text-transform: none;
}
.section-copy {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
    max-width: 22rem;
}
.checkout-divider {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    color: var(--muted);
}
.checkout-divider::before,
.checkout-divider::after {
    content: "";
    height: 1px;
    background: rgba(255, 255, 255, .1);
}
.checkout-divider span {
    white-space: nowrap;
    font-size: .95rem;
}
.lookup-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: stretch;
}
.field--grow { margin-bottom: 0; }
.lookup-row .field {
    margin-bottom: 0;
    align-content: start;
}
.lookup-row .field input {
    min-height: 58px;
    height: 58px;
}
.lookup-button {
    min-height: 58px;
    height: 58px;
    align-self: stretch;
    white-space: nowrap;
    min-width: 162px;
}
.field { display: grid; gap: 7px; margin-bottom: 16px; }
.field label { color: rgba(255, 255, 255, .7); font-weight: 700; }
.field input,
.field select {
    width: 100%;
    padding: 13px;
    color: var(--white);
    background: #080808;
    border: 1px solid rgba(255, 255, 255, .12);
}
.field input:focus,
.field select:focus {
    outline: none;
    border-color: rgba(255, 106, 0, .7);
    box-shadow: 0 0 0 3px rgba(255, 106, 0, .12);
}
.field input::placeholder {
    color: rgba(255, 255, 255, .38);
}
.field-help {
    color: var(--muted);
    line-height: 1.4;
}
.field-help--warning { color: var(--orange); }
.field-error {
    color: #ff9a6a;
    line-height: 1.35;
}
.field--status {
    position: relative;
}
.field--status input {
    padding-right: 48px;
}
.phone-input {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    background: rgba(255, 255, 255, .04);
}
.phone-prefix {
    padding-left: 14px;
    color: var(--muted);
    font-weight: 800;
}
.phone-input input {
    border: 0;
    background: transparent;
    flex: 1;
    min-width: 0;
}
.field-check {
    position: absolute;
    right: 14px;
    top: 39px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(140, 255, 63, .8);
    border-radius: 50%;
    color: var(--green);
    font-weight: 900;
    background: rgba(140, 255, 63, .06);
    pointer-events: none;
    display: none;
}
.field--status.has-value .field-check {
    display: grid;
}
.field--status.has-error .field-check {
    border-color: rgba(255, 154, 106, .9);
    color: #ff9a6a;
    background: rgba(255, 154, 106, .08);
}
.field-check[hidden] {
    display: none !important;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.contact-email {
    grid-column: 1 / -1;
    margin-bottom: 0;
}
.marketing-optin {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    line-height: 1.4;
    margin-top: 2px;
}
.marketing-optin input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--orange);
}
.delivery-grid {
    display: grid;
    gap: 12px;
}
.delivery-option {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: start;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .03);
}
.delivery-option input {
    margin-top: 4px;
    accent-color: var(--orange);
}
.delivery-option strong {
    display: block;
    margin-bottom: 3px;
}
.delivery-option p {
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
}
.delivery-option--selected {
    border-color: rgba(255, 106, 0, .32);
    background: rgba(255, 106, 0, .06);
}
.delivery-option--disabled {
    color: rgba(255, 255, 255, .45);
    border-style: dashed;
}
.delivery-option--disabled strong,
.delivery-option--disabled p {
    color: rgba(255, 255, 255, .45);
}
.switch-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 16px 18px;
    border: 1px solid rgba(140, 255, 63, .18);
    background: linear-gradient(180deg, rgba(20, 34, 10, .72), rgba(12, 18, 8, .96));
    border-radius: 14px;
}
.switch-copy {
    display: grid;
    gap: 6px;
}
.switch-copy strong {
    color: var(--white);
    font-size: 1.02rem;
}
.switch-copy small,
.xp-note {
    color: var(--muted);
    line-height: 1.45;
}
.switch-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    color: var(--green);
    font-weight: 900;
    white-space: nowrap;
}
.switch-toggle input {
    appearance: none;
    width: 54px;
    height: 30px;
    margin: 0;
    border: 1px solid rgba(140, 255, 63, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    position: relative;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease;
}
.switch-toggle input::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .35);
    transition: transform .2s ease, background .2s ease;
}
.switch-toggle input:checked {
    background: rgba(140, 255, 63, .92);
    border-color: var(--green);
}
.switch-toggle input:checked::after {
    transform: translateX(24px);
    background: #111;
}
.switch-toggle span {
    color: var(--white);
}
.checkout-section--xp {
    padding: 0;
    /*border-color: rgba(140, 255, 63, .22);*/
    background: transparent;
}
.xp-card {
    display: grid;
    gap: 16px;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid rgba(140, 255, 63, .22);
    background: rgba(255, 255, 255, .02);
    box-shadow: inset 0 0 0 1px rgba(140, 255, 63, .05);
}
.xp-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.xp-card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.xp-badge {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 1px solid rgba(140, 255, 63, .55);
    color: var(--green);
    font-weight: 1000;
    box-shadow: 0 0 0 1px rgba(140, 255, 63, .08) inset;
}
.xp-card-title h2 {
    margin: 0;
    font-size: 1.45rem;
    text-transform: none;
}
.xp-card-title h2 span {
    color: rgba(255, 255, 255, .7);
    font-size: .95rem;
    font-weight: 700;
}
.switch-toggle--compact {
    color: var(--white);
    gap: 10px;
}
.switch-toggle--compact span {
    color: var(--white);
    font-weight: 800;
}
.xp-card-copy {
    margin: -2px 0 0;
    color: var(--muted);
    line-height: 1.45;
}
.xp-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.xp-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    min-width: 0;
}
.xp-benefit span {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .24);
    color: var(--orange);
    font-size: .78rem;
}
.xp-benefit p {
    margin: 0;
    color: var(--muted);
    line-height: 1.35;
}
.xp-earned-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 4px;
    border-top: 1px solid rgba(140, 255, 63, .14);
    color: var(--muted);
}
.xp-earned-inline span {
    color: var(--green);
    font-size: 1.1rem;
}
.xp-earned-inline strong {
    color: var(--green);
    font-weight: 1000;
    font-size: 1.08rem;
}
.xp-panel {
    display: grid;
    gap: 14px;
}
.xp-profile-card,
.xp-join-card {
    padding: 16px 18px;
    border: 1px solid rgba(140, 255, 63, .16);
    background: rgba(140, 255, 63, .05);
    display: grid;
    gap: 8px;
    border-radius: 14px;
}
.xp-profile-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}
.xp-title {
    margin: 0;
    color: var(--white);
    font-weight: 900;
    font-size: 1rem;
}
.xp-balance {
    margin: 0;
    color: var(--green);
    font-weight: 1000;
    font-size: 1.1rem;
}
.xp-stat {
    margin: 0;
    color: var(--white);
    font-weight: 800;
}
.xp-earned {
    color: var(--green);
}
.summary-card {
    position: sticky;
    top: 18px;
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .02);
    border-radius: 14px;
}
.summary-line {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    color: var(--muted);
}
.summary-line strong {
    color: var(--white);
    font-weight: 900;
}
.summary-line--total {
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: var(--white);
    font-size: 1.18rem;
    font-weight: 900;
}
.summary-line--total strong {
    font-size: 1.65rem;
    line-height: 1;
}
.checkout-pay {
    margin-top: 4px;
    min-height: 64px;
    font-size: 1.18rem;
    border-radius: 10px;
}
.payment-methods {
    display: flex;
    justify-content: center;
    padding-top: 2px;
}
.payment-methods img {
    display: block;
    width: min(100%, 280px);
    height: auto;
}
.checkout-lock {
    margin: 2px 0 0;
    color: var(--muted);
    text-align: right;
}
.impulse-section {
    margin-top: 18px;
    display: grid;
    gap: 14px;
}
.impulse-section h2 {
    margin: 0;
    font-size: 1.05rem;
    text-transform: uppercase;
}
.impulse-list {
    display: grid;
    gap: 12px;
}
.impulse-card {
    padding: 14px;
}
.impulse-price {
    text-align: right;
}
.impulse-price--old {
    text-decoration: line-through;
    opacity: .65;
}
.impulse-form {
    margin-top: 10px;
}
.impulse-form-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.impulse-qty {
    display: flex;
    gap: 8px;
    align-items: center;
}
.steps { display: grid; gap: 10px; color: var(--muted); }
.footer {
    margin-top: 54px;
    padding: 20px 0 26px;
    border-top: 1px solid var(--line);
    color: var(--muted);
}
.footer-shell {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
    font-size: .84rem;
    line-height: 1.4;
}
.footer-shell > span:first-child,
.footer-shell > span:last-child {
    color: var(--white);
}
.footer-branch {
    display: flex;
    flex-wrap: wrap;
    gap: 0 8px;
    align-items: baseline;
    color: var(--muted);
}
.footer-branch strong {
    color: var(--orange);
    font-weight: 900;
    text-transform: uppercase;
}
@media (max-width: 920px) {
    .hero, .checkout { grid-template-columns: 1fr; }
    .grid { grid-template-columns: repeat(2, 1fr); }
    .navlinks { display: none; }
    .summary-card { position: static; }
    .checkout-progress { display: none; }
    .checkout-progress-step:not(:last-child)::after { display: none; }
    .xp-benefits { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .shell { width: min(100% - 22px, 1180px); }
    .grid { grid-template-columns: 1fr; }
    .actions .btn { display: none; }
    .brand { font-size: 1rem; }
    .brand-logo { width: 44px; height: 44px; }
    .cart-dock {
        position: fixed;
        left: 8px;
        right: 8px;
        bottom: 8px;
        width: auto;
        margin: 0;
    }
    .cart-toggle { width: 100%; }
    .cart-drawer { padding: 8px; align-items: flex-end; }
    .cart-drawer-panel { width: 100%; height: 78vh; max-height: 78vh; }
    .cart { width: 100%; padding: 14px; }
    .cart-items { padding-right: 8px; }
    .cart-footer { position: static; background: transparent; backdrop-filter: none; }
    .lookup-row { grid-template-columns: 1fr; }
    .lookup-button { width: 100%; }
    .checkout-panel { padding: 18px; }
    .checkout-section, .summary-card { padding: 16px; }
    .section-head { flex-direction: column; }
    .contact-grid { grid-template-columns: 1fr; }
    .field--status .field-check { top: 40px; }
    .xp-card-head { align-items: flex-start; }
    .xp-card-title h2 { font-size: 1.25rem; }
    .switch-row { grid-template-columns: 1fr; gap: 14px; }
    .switch-toggle { justify-content: flex-start; }
    .delivery-option { grid-template-columns: 1fr; }
    .delivery-option input { margin-top: 0; }
    .modal-backdrop { padding: 10px; }
    .modal-card { padding: 18px; }
    .modal-head { flex-direction: column; }
    .footer-shell { gap: 8px 12px; }
}
