/* ═══════ Seebach Treff — Design System: "Glut" ═══════ */

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

:root {
    --surface:  #FCF9F4;
    --card:     #FFFFFF;
    --ink:      #1A1714;
    --ember:    #D4452A;
    --ember-hv: #B8371F;
    --crust:    #E09D32;
    --sage:     #4B7A5E;
    --sage-bg:  #EDF5EF;
    --muted:    #7B756E;
    --hairline: #E8E2D8;
    --glow:     #FEF6ED;
    --shadow-sm: 0 1px 2px rgba(26,23,20,0.06);
    --shadow-md: 0 4px 16px rgba(26,23,20,0.08);
    --shadow-lg: 0 8px 32px rgba(26,23,20,0.12);
    --radius:   12px;
    --radius-sm: 8px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    color: var(--ink);
    background: var(--surface);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
}

main { flex: 1; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { color: var(--ember); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--ember-hv); }
a:focus-visible { outline: 2px solid var(--ember); outline-offset: 2px; border-radius: 2px; }

img { max-width: 100%; height: auto; display: block; }

/* ═══ Typography ═══ */
h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; }
h1 { font-size: 2.4rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }

/* ═══ Buttons ═══ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    padding: 12px 24px; border: none; border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600;
    cursor: pointer; text-align: center; text-decoration: none;
    transition: background-color 0.15s, transform 0.1s, box-shadow 0.15s;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--ember); outline-offset: 2px; }

.btn-primary { background: var(--ember); color: #fff; }
.btn-primary:hover { background: var(--ember-hv); color: #fff; box-shadow: 0 2px 12px rgba(212,69,42,0.3); }

.btn-outline { background: transparent; border: 2px solid var(--ember); color: var(--ember); }
.btn-outline:hover { background: var(--ember); color: #fff; }

.btn-sm { padding: 6px 14px; font-size: 0.82rem; border-radius: 6px; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; border-radius: var(--radius-sm); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none; }

/* ═══ Header ═══ */
.site-header { background: #fff; box-shadow: 0 1px 0 var(--hairline); position: sticky; top: 0; z-index: 100; }
.header-top {
    background: var(--ink); color: rgba(255,255,255,0.75);
    font-size: 0.8rem; font-weight: 500; padding: 6px 0; letter-spacing: 0.01em;
}
.header-main { padding: 14px 0; }
.header-main .container { display: flex; align-items: center; justify-content: space-between; }
.logo { text-decoration: none; color: var(--ink); display: flex; align-items: center; }
.logo-img { height: 54px; width: auto; flex-shrink: 0; display: block; }

.main-nav { display: flex; gap: 4px; align-items: center; }
.main-nav a {
    color: var(--ink); font-weight: 500; font-size: 0.9rem;
    padding: 8px 14px; border-radius: var(--radius-sm);
    transition: background-color 0.15s, color 0.15s;
}
.main-nav a:hover { color: var(--ember); background: var(--glow); }
.nav-shop { background: var(--ember) !important; color: #fff !important; }
.nav-shop:hover { background: var(--ember-hv) !important; color: #fff !important; }

.cart-link { position: relative; }
.cart-badge {
    position: absolute; top: -4px; right: -6px;
    background: var(--crust); color: var(--ink);
    font-size: 0.68rem; font-weight: 700; min-width: 18px; height: 18px;
    border-radius: 9px; display: flex; align-items: center; justify-content: center;
    padding: 0 4px;
}
.mobile-menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--ink); padding: 4px 8px; }

/* ═══ Hero ═══ */
.hero {
    background: var(--ink);
    color: #fff;
    padding: 100px 0 88px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -30%; left: 50%; transform: translateX(-50%);
    width: 900px; height: 900px;
    background: radial-gradient(circle at center, rgba(224,157,50,0.4) 0%, rgba(212,69,42,0.15) 40%, transparent 70%);
    pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.hero h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700; margin-bottom: 16px;
    letter-spacing: -0.02em; line-height: 1.15;
}
.hero p { font-size: 1.1rem; font-weight: 400; opacity: 0.85; margin-bottom: 32px; line-height: 1.6; max-width: 480px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero .btn-outline { border-color: rgba(255,255,255,0.5); color: #fff; }
.hero .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ═══ Sections ═══ */
.section { padding: 72px 0; }
.section-title { text-align: center; margin-bottom: 44px; }
.section-title h2 { margin-bottom: 8px; font-weight: 600; }
.section-title p { color: var(--muted); font-size: 1rem; max-width: 500px; margin: 0 auto; }
.bg-white { background: #fff; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }

/* ═══ Feature Cards ═══ */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
    background: #fff; padding: 32px 28px; border-radius: var(--radius);
    text-align: center; border: 1px solid var(--hairline);
    transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-icon { font-size: 2.2rem; margin-bottom: 12px; }
.feature-card h3 { font-family: 'Fraunces', Georgia, serif; margin-bottom: 6px; font-size: 1.15rem; font-weight: 600; }
.feature-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.55; }

/* ═══ Order Type Toggle ═══ */
.order-type-toggle { display: flex; gap: 0; margin-bottom: 20px; background: #fff; border: 1px solid var(--hairline); border-radius: 100px; overflow: hidden; width: fit-content; }
.type-btn { padding: 10px 28px; border: none; background: transparent; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600; cursor: pointer; color: var(--muted); transition: all 0.15s; }
.type-btn.active { background: var(--ember); color: #fff; }
.type-btn:hover:not(.active) { color: var(--ink); }

/* ═══ Category Pills ═══ */
.category-nav { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 36px; }
.cat-btn {
    padding: 8px 20px; border: 1px solid var(--hairline); border-radius: 100px;
    background: #fff; cursor: pointer; font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem; font-weight: 500; color: var(--ink);
    transition: all 0.15s; text-decoration: none;
}
.cat-btn:hover { border-color: var(--ember); color: var(--ember); }
.cat-btn.active { background: var(--ember); color: #fff; border-color: var(--ember); }

/* ═══ Menu Items ═══ */
.menu-category { margin-bottom: 44px; }
.menu-category h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.35rem; font-weight: 600; margin-bottom: 16px;
    padding-bottom: 10px; border-bottom: 2px solid var(--ember);
    display: inline-block;
}
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 12px; }

.menu-item {
    background: #fff; padding: 12px; border-radius: var(--radius-sm);
    display: flex; align-items: flex-start; gap: 14px;
    border: 1px solid var(--hairline);
    transition: border-color 0.15s, box-shadow 0.15s;
}
.menu-item-img {
    flex-shrink: 0; width: 100px; height: 75px; border-radius: 6px;
    object-fit: cover; display: block;
}
img.menu-item-img { object-fit: cover; }
.menu-item-placeholder {
    background-color: #F3EFE9;
    background-image: url('/assets/images/logo.png');
    background-position: center;
    background-size: auto 36px;
    background-repeat: no-repeat;
    border: 1px dashed #E8E2D8;
}
.menu-item:hover { border-color: transparent; box-shadow: var(--shadow-md); }
.menu-item-info { flex: 1; min-width: 0; }
.menu-item-info h3 { font-size: 0.95rem; font-weight: 500; margin-bottom: 2px; font-family: 'DM Sans', sans-serif; letter-spacing: 0; }
.menu-item-info .desc { font-size: 0.8rem; color: var(--muted); line-height: 1.4; margin-bottom: 4px; }
.menu-item-tags { display: flex; gap: 4px; margin-top: 4px; flex-wrap: wrap; }
.tag { font-family: 'DM Sans', sans-serif; font-size: 0.68rem; font-weight: 500; padding: 3px 8px; border-radius: 4px; background: #F3EFE9; color: var(--muted); letter-spacing: 0.01em; }
.tag.v { background: var(--sage-bg); color: var(--sage); }
.tag.veg { background: #E8F5E9; color: #3A6B4A; }
.tag.gf { background: #FFF3E0; color: #C57600; }
.menu-item-price { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 1rem; white-space: nowrap; color: var(--ember); }
.menu-item-actions { flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; min-width: 70px; }

.add-to-cart-btn {
    background: var(--ember); color: #fff; border: none;
    padding: 7px 16px; border-radius: 6px; cursor: pointer;
    font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 600;
    transition: background-color 0.15s, transform 0.1s;
}
.add-to-cart-btn:hover { background: var(--ember-hv); }
.add-to-cart-btn:active { transform: scale(0.97); }

/* ═══ Shop Layout ═══ */
.shop-layout { display: grid; grid-template-columns: 1fr 340px; gap: 36px; align-items: start; }
.shop-sidebar { position: sticky; top: 100px; }

.cart-summary {
    background: #fff; padding: 24px; border-radius: var(--radius);
    border: 1px solid var(--hairline); box-shadow: var(--shadow-sm);
}
.cart-summary h2 { font-size: 1.1rem; font-weight: 600; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--hairline); }
.cart-item-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #F3EFE9; gap: 8px; }
.cart-item-row .name { flex: 1; font-size: 0.88rem; font-weight: 500; min-width: 0; }
.cart-item-row .qty { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.cart-item-row .qty button {
    width: 26px; height: 26px; border: 1px solid var(--hairline); border-radius: 6px;
    background: #fff; cursor: pointer; font-size: 0.85rem; display: flex;
    align-items: center; justify-content: center; color: var(--ink);
    transition: border-color 0.15s, background-color 0.15s;
}
.cart-item-row .qty button:hover { border-color: var(--ember); background: var(--glow); }
.cart-item-row .qty span { min-width: 20px; text-align: center; font-size: 0.85rem; font-weight: 500; }
.cart-item-row .price { font-weight: 700; font-size: 0.88rem; white-space: nowrap; }
.cart-item-row .remove-btn { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 1.1rem; padding: 0 4px; transition: color 0.15s; }
.cart-item-row .remove-btn:hover { color: var(--ember); }

.cart-totals { margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--hairline); }
.cart-totals > div { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 0.88rem; }
.cart-totals .grand-total { font-size: 1.1rem; font-weight: 700; color: var(--ember); margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--hairline); }
.cart-empty { text-align: center; padding: 28px 16px; color: var(--muted); }
.cart-actions { margin-top: 16px; }
.cart-actions .btn { width: 100%; }
.free-delivery-note { font-size: 0.8rem; color: var(--sage); margin-top: 10px; text-align: center; font-weight: 500; }

/* ═══ Checkout ═══ */
.checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.checkout-form { background: #fff; padding: 32px; border-radius: var(--radius); border: 1px solid var(--hairline); box-shadow: var(--shadow-sm); }
.checkout-form h2 { margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 4px; font-weight: 500; font-size: 0.88rem; color: var(--ink); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 11px 14px; border: 1px solid var(--hairline);
    border-radius: var(--radius-sm); font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem; color: var(--ink); background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--ember);
    box-shadow: 0 0 0 3px rgba(212,69,42,0.1);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.error-msg { color: var(--ember); font-size: 0.82rem; margin-top: 4px; font-weight: 500; }
.form-error { background: #FEF0ED; color: var(--ember); padding: 12px 16px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: 0.9rem; font-weight: 500; }

/* ═══ Order Confirmation ═══ */
.confirmation { text-align: center; padding: 56px 20px; }
.confirmation-icon { font-size: 3.5rem; margin-bottom: 16px; }
.confirmation h2 { font-family: 'Fraunces', Georgia, serif; margin-bottom: 10px; }
.confirmation p { color: var(--muted); margin-bottom: 6px; }
.confirmation-details {
    background: #fff; max-width: 520px; margin: 24px auto; padding: 24px;
    border-radius: var(--radius); text-align: left; border: 1px solid var(--hairline);
}
.confirmation-details h3 { margin-bottom: 14px; font-size: 1.1rem; }
.confirmation-details .row { display: flex; justify-content: space-between; padding: 5px 0; font-size: 0.9rem; }

/* ═══ Admin ═══ */
.admin-login { max-width: 400px; margin: 80px auto; padding: 0 16px; }
.admin-login .box { background: #fff; padding: 32px; border-radius: var(--radius); border: 1px solid var(--hairline); box-shadow: var(--shadow-sm); }
.admin-login h2 { text-align: center; margin-bottom: 24px; }
.admin-header { background: var(--ink); color: #fff; padding: 12px 20px; display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; }
.admin-header a { color: rgba(255,255,255,0.8); }
.admin-header a:hover { color: #fff; }
.admin-container { max-width: 1200px; margin: 0 auto; padding: 20px 24px; }
.admin-nav { display: flex; gap: 0; margin-bottom: 28px; border-bottom: 2px solid var(--hairline); }
.admin-nav a {
    padding: 10px 24px; text-decoration: none; color: var(--muted);
    font-weight: 600; font-size: 0.9rem; border-bottom: 3px solid transparent;
    margin-bottom: -2px; transition: all 0.15s;
}
.admin-nav a.active, .admin-nav a:hover { color: var(--ember); border-bottom-color: var(--ember); }

.admin-table {
    width: 100%; border-collapse: collapse; background: #fff;
    border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--hairline);
}
.admin-table th {
    background: var(--ink); color: #fff; padding: 12px 16px;
    text-align: left; font-family: 'DM Sans', sans-serif; font-size: 0.78rem;
    font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
}
.admin-table td { padding: 12px 16px; border-bottom: 1px solid var(--hairline); font-size: 0.88rem; }
.admin-table tr:hover td { background: var(--glow); }

.status-badge { display: inline-block; padding: 4px 10px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; }
.status-pending { background: #FFF3E0; color: #C57600; }
.status-confirmed { background: #E8F0FE; color: #2A62C4; }
.status-preparing { background: #FFF9DB; color: #B08800; }
.status-out_for_delivery { background: var(--sage-bg); color: var(--sage); }
.status-delivered { background: #E8F5E9; color: #1B5E20; }
.status-cancelled { background: #FEF0ED; color: var(--ember); }

.admin-section { margin-bottom: 40px; }
.admin-section h2 { margin-bottom: 16px; }
.menu-editor { background: #fff; padding: 24px; border-radius: var(--radius); border: 1px solid var(--hairline); margin-bottom: 28px; }
.menu-editor h3 { font-size: 1.1rem; margin-bottom: 16px; }
.menu-editor .form-row-3 { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 12px; }
.menu-editor .form-row-checks { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.menu-editor .form-row-checks label { display: flex; align-items: center; gap: 6px; font-size: 0.88rem; cursor: pointer; }

.flash-msg { padding: 10px 16px; border-radius: var(--radius-sm); margin-bottom: 16px; font-size: 0.88rem; font-weight: 500; }
.flash-success { background: var(--sage-bg); color: var(--sage); }
.flash-info { background: #E8F0FE; color: #2A62C4; }

/* ═══ Option Modal ═══ */
.option-modal-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(26,23,20,0.5); backdrop-filter: blur(2px);
    z-index: 1000; align-items: center; justify-content: center; padding: 20px;
}
.option-modal {
    background: #fff; border-radius: var(--radius); width: 100%; max-width: 460px;
    max-height: 85vh; overflow-y: auto; box-shadow: var(--shadow-lg);
}
.option-modal-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 22px; border-bottom: 1px solid var(--hairline);
}
.option-modal-header h3 { font-size: 1.1rem; font-weight: 600; }
.option-modal-close { background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--muted); padding: 0 4px; line-height: 1; }
.option-modal-close:hover { color: var(--ember); }
.option-modal-body { padding: 18px 22px; }
.option-modal-footer { padding: 16px 22px; border-top: 1px solid var(--hairline); }

.option-group { margin-bottom: 18px; }
.option-group h4 { font-size: 0.92rem; margin-bottom: 8px; font-weight: 600; font-family: 'DM Sans', sans-serif; letter-spacing: 0; }

.opt-label {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; border: 1px solid var(--hairline); border-radius: var(--radius-sm);
    margin-bottom: 6px; cursor: pointer; transition: border-color 0.15s, background-color 0.15s;
    font-size: 0.9rem;
}
.opt-label:hover { border-color: var(--ember); background: var(--glow); }
.opt-label:has(input:checked) { border-color: var(--ember); background: #FEF7F1; }

.opt-label input[type="radio"] { accent-color: var(--ember); width: 16px; height: 16px; flex-shrink: 0; }
.opt-label input[type="checkbox"] { accent-color: var(--ember); width: 16px; height: 16px; flex-shrink: 0; }
.opt-label span:first-of-type { flex: 1; }
.opt-price { color: var(--ember); font-weight: 600; font-size: 0.84rem; white-space: nowrap; }

.option-modal-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; font-size: 1.1rem; font-weight: 700; }
.option-modal-total span:last-child { color: var(--ember); }

/* ═══ About ═══ */
.about-section { text-align: center; max-width: 660px; margin: 0 auto; }
.about-section p { margin-bottom: 14px; font-size: 1rem; line-height: 1.65; color: color-mix(in srgb, var(--ink) 85%, transparent); }

/* ═══ Alerts ═══ */
.alert { padding: 12px 16px; border-radius: var(--radius-sm); margin-bottom: 16px; font-size: 0.9rem; }
.alert-success { background: var(--sage-bg); color: var(--sage); border: 1px solid #C4DDCD; }
.alert-error { background: #FEF0ED; color: var(--ember); border: 1px solid #F5C6BB; }

/* ═══ Status Tracker ═══ */
.status-tracker { display: flex; justify-content: space-between; margin: 24px 0; }
.status-step { text-align: center; flex: 1; position: relative; }
.status-step::after { content: ''; position: absolute; top: 12px; left: 50%; width: 100%; height: 2px; background: var(--hairline); z-index: 0; }
.status-step:last-child::after { display: none; }
.status-dot { width: 24px; height: 24px; border-radius: 50%; background: var(--hairline); margin: 0 auto 6px; position: relative; z-index: 1; }
.status-step.active .status-dot { background: var(--ember); box-shadow: 0 0 0 4px rgba(212,69,42,0.15); }
.status-step.completed .status-dot { background: var(--sage); }
.status-step span { display: block; font-size: 0.7rem; color: var(--muted); margin-top: 2px; }
.status-step.completed span, .status-step.active span { color: var(--ink); font-weight: 600; }

/* ═══ Footer ═══ */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 56px 0 28px; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; margin-bottom: 36px; }
.footer-col h3 { color: #fff; margin-bottom: 14px; font-size: 1.05rem; font-weight: 600; }
.footer-col p { font-size: 0.88rem; margin-bottom: 4px; line-height: 1.6; }
.footer-col a { color: rgba(255,255,255,0.6); }
.footer-col a:hover { color: #fff; }
.footer-note { font-size: 0.8rem !important; opacity: 0.6; font-style: italic; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; text-align: center; font-size: 0.82rem; opacity: 0.5; }

/* ═══ Responsive ═══ */
@media (max-width: 900px) {
    .shop-layout, .checkout-grid { grid-template-columns: 1fr; }
    .shop-sidebar { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .features { grid-template-columns: 1fr; }
    .menu-grid { grid-template-columns: 1fr; }
    .hero h2 { font-size: 1.8rem; }
    .hero { padding: 64px 0 56px; }
    .hero::before { width: 500px; height: 500px; }
    .form-row { grid-template-columns: 1fr; }
    .main-nav { display: none; }
    .main-nav.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 20px; border-top: 1px solid var(--hairline); box-shadow: var(--shadow-md); gap: 4px; }
    .mobile-menu-toggle { display: block; }
    .menu-editor .form-row-3 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .section { padding: 48px 0; }
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }
    .confirmation-details { padding: 20px; }
}

/* ═══ Utility ═══ */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
