/* ============================================================
   Guac-O-Licious  |  Clean white / green theme  |  shared CSS
   ============================================================ */

:root {
    --bg: #FFFFFF;
    --bg-soft: #FAFAFA;
    --line: #EAEAEA;
    --line-strong: #D5D5D5;
    --ink: #111111;
    --ink-2: #2A2A2A;
    --muted: #6B6B6B;
    --muted-2: #8A8A8A;
    --green: #1F7A2E;
    --green-hover: #185D24;
    --green-soft: #F0F7F1;
    --radius: 6px;
    --radius-lg: 14px;
    --shadow: 0 1px 2px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.06);
    --max: 1240px;
    --pad: clamp(20px, 5vw, 56px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.55;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }

/* ---------- Top utility bar ---------- */
.topbar {
    background: var(--ink);
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.02em;
    text-align: center;
    padding: 10px var(--pad);
}
.topbar strong { color: #fff; font-weight: 600; }
.topbar .pipe { opacity: 0.4; margin: 0 10px; }

/* ---------- Navigation ---------- */
.nav {
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 18px var(--pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.04em;
    color: var(--ink);
}
.brand .dot { color: var(--green); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-2);
    padding: 6px 0;
    position: relative;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-links a.active { color: var(--green); }
.nav-links a.active::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -22px;
    height: 2px;
    background: var(--green);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
    line-height: 1;
}
.btn-primary {
    background: var(--green);
    color: #fff;
}
.btn-primary:hover { background: var(--green-hover); }
.btn-ghost {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}
.btn-ghost:hover { background: var(--green); color: #fff; }
.btn-lg { padding: 14px 28px; font-size: 15px; }

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px; height: 24px;
    flex-direction: column;
    justify-content: space-between;
}
.mobile-toggle span {
    height: 2px; background: var(--ink); border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
}
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
    z-index: 2;
}
.hero-inner {
    position: relative;
    z-index: 3;
    max-width: var(--max);
    margin: 0 auto;
    padding: 80px var(--pad);
    width: 100%;
    color: #fff;
}
.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 999px;
    margin-bottom: 22px;
}
.hero h1 {
    font-size: clamp(40px, 6vw, 76px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.05;
    max-width: 820px;
    margin-bottom: 22px;
}
.hero p.lead {
    font-size: clamp(16px, 1.4vw, 19px);
    max-width: 560px;
    margin-bottom: 32px;
    opacity: 0.92;
    line-height: 1.6;
}
.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.hero-cta .btn-ghost {
    background: rgba(255,255,255,0.06);
    color: #fff;
    border-color: rgba(255,255,255,0.65);
}
.hero-cta .btn-ghost:hover { background: #fff; color: var(--ink); }

/* ---------- Page heading (non hero) ---------- */
.page-head {
    padding: 80px var(--pad) 40px;
    max-width: var(--max);
    margin: 0 auto;
    text-align: center;
}
.page-head .eyebrow {
    color: var(--green);
    border-color: var(--green);
    background: var(--green-soft);
}
.page-head h1 {
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 16px;
}
.page-head p {
    max-width: 640px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 17px;
}

/* ---------- Section ---------- */
.section {
    padding: 80px var(--pad);
}
.section-inner {
    max-width: var(--max);
    margin: 0 auto;
}
.section-head {
    margin-bottom: 48px;
    text-align: center;
}
.section-head h2 {
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 800;
    letter-spacing: -0.015em;
    margin-bottom: 12px;
}
.section-head p { color: var(--muted); max-width: 560px; margin: 0 auto; }
.section.soft { background: var(--bg-soft); }

/* ---------- Discount strip ---------- */
.discount-strip {
    background: #fff;
    color: var(--ink);
    padding: 30px var(--pad);
    text-align: center;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.discount-strip .big {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
    color: var(--green);
}
.discount-strip p {
    font-size: 14.5px;
    color: var(--muted);
    max-width: 720px;
    margin: 0 auto;
}

/* ---------- Featured grid (home) ---------- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.feature-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--line-strong);
}
.feature-card .ph {
    aspect-ratio: 4/3;
    background: var(--bg-soft);
    overflow: hidden;
}
.feature-card .ph img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s;
}
.feature-card:hover .ph img { transform: scale(1.04); }
.feature-card .body {
    padding: 18px 20px 22px;
}
.feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
}
.feature-card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 12px;
    min-height: 40px;
}
.cal-tag {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--green);
    background: var(--green-soft);
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.02em;
}

/* ---------- Two column ---------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.split img {
    border-radius: var(--radius-lg);
    aspect-ratio: 4/5;
    object-fit: cover;
}
.split h2 {
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 800;
    letter-spacing: -0.015em;
    margin-bottom: 16px;
    line-height: 1.1;
}
.split p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 14px;
}

/* ---------- Menu category ---------- */
.menu-cat {
    margin-bottom: 64px;
}
.menu-cat h2 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.01em;
    padding-bottom: 14px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}
.menu-cat h2 .small {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0;
}

/* ---------- Build steps ---------- */
.step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 20px;
}
.step-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}
.step-num {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: grid; place-items: center;
    font-weight: 700;
    font-size: 15px;
}
.step-head h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.step-head .note { margin-left: auto; color: var(--muted); font-size: 13px; }

.chip-row {
    display: flex; flex-wrap: wrap; gap: 8px;
}
.chip {
    padding: 9px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink-2);
    background: #fff;
    transition: all 0.2s;
}
.chip:hover { border-color: var(--green); color: var(--green); }

.row-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 10px;
}
.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    transition: border-color 0.2s;
}
.row:hover { border-color: var(--green); }
.row .name { font-size: 14.5px; font-weight: 500; }
.row .meta { font-size: 13px; color: var(--green); font-weight: 600; }

/* ---------- Family ---------- */
.kit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}
.kit {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    background: #fff;
    transition: border-color 0.2s, transform 0.2s;
}
.kit:hover { border-color: var(--green); transform: translateY(-3px); }
.kit .badge {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--green);
    background: var(--green-soft);
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
}
.kit h3 {
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}
.kit .price {
    font-size: 26px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 4px;
}
.kit .cal {
    font-size: 12.5px;
    color: var(--muted);
    margin-bottom: 16px;
}
.kit p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

/* ---------- Ingredients ---------- */
.ing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}
.ing {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 18px 14px;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
}
.ing:hover { border-color: var(--green); transform: translateY(-3px); }
.ing img {
    width: 80px; height: 80px;
    object-fit: contain;
    margin: 0 auto 12px;
}
.ing .name {
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-2);
    text-transform: capitalize;
}

/* ---------- Contact / location ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}
.info-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px;
}
.info-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}
.info-row {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}
.info-row:last-child { border-bottom: none; }
.info-row .label {
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 4px;
    font-weight: 600;
}
.info-row .value { font-size: 16px; color: var(--ink); }
.info-row .value a { color: var(--green); font-weight: 600; }

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--bg-soft);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

.delivery-row {
    display: flex; gap: 12px; flex-wrap: wrap;
}
.delivery-pill {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink-2);
    transition: all 0.2s;
}
.delivery-pill:hover { border-color: var(--green); color: var(--green); }

/* ---------- CTA banner ---------- */
.cta-banner {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 60px var(--pad);
    text-align: center;
}
.cta-banner h2 {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    letter-spacing: -0.015em;
    margin-bottom: 14px;
}
.cta-banner p { color: var(--muted); margin-bottom: 24px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-row { display: inline-flex; gap: 10px; flex-wrap: wrap; justify-content: center; }

/* ---------- Footer ---------- */
.footer {
    background: var(--bg);
    border-top: 1px solid var(--line);
    padding: 60px var(--pad) 24px;
}
.footer-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; font-size: 14px; }
.footer a { color: var(--ink-2); transition: color 0.2s; }
.footer a:hover { color: var(--green); }
.footer .brand-block p { color: var(--muted); font-size: 14px; max-width: 320px; margin-top: 12px; line-height: 1.7; }
.footer-bottom {
    max-width: var(--max);
    margin: 40px auto 0;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--muted);
    flex-wrap: wrap; gap: 12px;
}

/* ============================================================
   Order Pickup page
   ============================================================ */
.order-wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 24px var(--pad) 80px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}
.order-main { min-width: 0; }
.cart-aside {
    position: sticky;
    top: 100px;
    align-self: start;
}

.cat-tabs {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding: 6px 2px 14px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--line);
    scrollbar-width: thin;
}
.cat-tab {
    flex-shrink: 0;
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink-2);
    cursor: pointer;
    border: 1px solid transparent;
    background: transparent;
    transition: all 0.2s;
    font-family: inherit;
}
.cat-tab:hover { color: var(--green); }
.cat-tab.active {
    background: var(--green-soft);
    color: var(--green);
    border-color: var(--green);
}

.item-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}
.item-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    font-family: inherit;
    padding: 0;
    width: 100%;
}
.item-card:hover {
    border-color: var(--green);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.item-card .pic {
    aspect-ratio: 4/3;
    background: var(--bg-soft);
    overflow: hidden;
}
.item-card .pic img { width: 100%; height: 100%; object-fit: cover; }
.item-card .meta { padding: 14px 16px 16px; }
.item-card .ttl { font-size: 15px; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.01em; }
.item-card .desc { font-size: 12.5px; color: var(--muted); line-height: 1.5; min-height: 36px; margin-bottom: 8px; }
.item-card .from { font-size: 13px; color: var(--green); font-weight: 700; }

/* Cart */
.cart-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 22px;
}
.cart-card h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart-card h3 .count {
    font-size: 12px;
    color: var(--green);
    background: var(--green-soft);
    padding: 3px 10px;
    border-radius: 999px;
}
.cart-empty {
    text-align: center;
    padding: 28px 6px;
    color: var(--muted);
    font-size: 14px;
    border: 1px dashed var(--line);
    border-radius: var(--radius);
}

.cart-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}
.cart-item:last-child { border-bottom: none; }
.cart-item .info { flex: 1; min-width: 0; }
.cart-item .name { font-size: 14px; font-weight: 600; }
.cart-item .opts { font-size: 12px; color: var(--muted); margin-top: 3px; line-height: 1.4; }
.cart-item .row {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 8px; gap: 12px;
}
.cart-item .price { font-size: 14px; font-weight: 700; }

.qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    overflow: hidden;
}
.qty button {
    width: 28px; height: 28px;
    background: #fff; border: none; cursor: pointer;
    font-size: 16px; color: var(--ink-2); font-family: inherit;
    transition: background 0.15s;
}
.qty button:hover { background: var(--green-soft); color: var(--green); }
.qty span {
    min-width: 26px; text-align: center; font-size: 13px; font-weight: 700;
}
.cart-remove {
    background: none; border: none; cursor: pointer; color: var(--muted);
    font-size: 12px; padding: 0; text-decoration: underline; font-family: inherit;
}
.cart-remove:hover { color: var(--green); }

.cart-totals { padding-top: 14px; margin-top: 12px; border-top: 1px solid var(--line); }
.totline {
    display: flex; justify-content: space-between;
    font-size: 13.5px; color: var(--ink-2); margin-bottom: 6px;
}
.totline.grand { font-size: 16px; font-weight: 800; color: var(--ink); margin-top: 10px; }

.cart-form { margin-top: 16px; }
.cart-form label {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
    margin-top: 12px;
}
.cart-form input,
.cart-form textarea,
.cart-form select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: var(--ink);
    background: #fff;
    transition: border-color 0.2s;
}
.cart-form input:focus,
.cart-form textarea:focus,
.cart-form select:focus { outline: none; border-color: var(--green); }
.cart-form textarea { resize: vertical; min-height: 60px; }

.submit-btn {
    margin-top: 18px;
    width: 100%;
    padding: 14px;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s;
}
.submit-btn:hover { background: var(--green-hover); }
.submit-btn:disabled { background: var(--line-strong); cursor: not-allowed; }

/* Order page top notice */
.pickup-notice {
    display: flex; gap: 14px; align-items: center;
    background: var(--green-soft);
    border: 1px solid #C8E2CC;
    color: var(--green-hover);
    padding: 14px 20px;
    border-radius: var(--radius-lg);
    font-size: 14px;
    margin-bottom: 20px;
}
.pickup-notice strong { color: var(--green); }

/* Modal */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(15,15,15,0.55);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.modal-overlay.show { display: flex; }
.modal {
    background: #fff;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    overflow: auto;
    box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
.modal-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.modal-body { padding: 24px 28px 28px; }
.modal-body h2 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.015em;
    margin-bottom: 6px;
}
.modal-body .desc { color: var(--muted); font-size: 14px; line-height: 1.55; margin-bottom: 18px; }
.mod-group { margin-bottom: 22px; }
.mod-group h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.005em;
}
.mod-group .mod-hint { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.mod-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    margin-bottom: 6px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    user-select: none;
}
.mod-option:hover { border-color: var(--green); }
.mod-option.selected { border-color: var(--green); background: var(--green-soft); }
.mod-option input { margin-right: 10px; accent-color: var(--green); }
.mod-option .label { flex: 1; font-size: 14px; font-weight: 500; display: flex; align-items: center; }
.mod-option .price { font-size: 13px; color: var(--green); font-weight: 700; }
.mod-error { color: #B0231F; font-size: 12.5px; margin-top: 6px; display: none; }
.mod-error.show { display: block; }

.modal-foot {
    display: flex; align-items: center; justify-content: space-between;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    margin-top: 8px;
}
.modal-close {
    background: none; border: none; cursor: pointer;
    color: var(--muted); font-size: 14px; font-family: inherit;
    text-decoration: underline;
}
.modal-close:hover { color: var(--ink); }

/* Success */
.success-state {
    text-align: center;
    padding: 36px 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    margin-top: 20px;
}
.success-check {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--green-soft);
    color: var(--green);
    display: grid; place-items: center;
    margin: 0 auto 18px;
    font-size: 30px;
    font-weight: 800;
    border: 2px solid var(--green);
}
.success-state h2 {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.015em;
    margin-bottom: 10px;
}
.success-state p { color: var(--muted); font-size: 14.5px; max-width: 420px; margin: 0 auto 16px; line-height: 1.55; }
.success-state .order-id {
    display: inline-block;
    margin: 10px 0 20px;
    padding: 8px 18px;
    background: var(--green-soft);
    color: var(--green);
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
    .order-wrap { grid-template-columns: 1fr; }
    .cart-aside { position: static; }
}
@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #fff;
        border-bottom: 1px solid var(--line);
        padding: 16px var(--pad) 22px;
        gap: 16px;
        align-items: flex-start;
    }
    .nav-links.open a.active::after { display: none; }
    .mobile-toggle { display: flex; }
    .split { grid-template-columns: 1fr; gap: 36px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .hero { min-height: 64vh; }
}
@media (max-width: 540px) {
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .nav .btn-primary { padding: 9px 16px; font-size: 13px; }
}
