/* ======= RESET & BASE ======= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --yellow: #FFD700;
    --yellow-dark: #e6c200;
    --blue: #0057B7;
    --blue-light: #1a6fd4;
    --dark: #08101e;
    --dark2: #0e1a2e;
    --dark3: #162338;
    --gray: #8899aa;
    --light: #e8f0f8;
    --white: #fff;
    --gold: #FFD700;
    --radius: 14px;
    --shadow: 0 4px 24px rgba(0,0,0,.25);
}
html { scroll-behavior: smooth; }
/* Touch-friendliness: прибираємо затримку 300ms та підсвічування tap */
button, a, [role="button"],
.btn, .btn-add, .cat-btn, .ci-btn, .cart-btn, .dtoggle, .close-btn, .burger {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--white);
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ======= NAVBAR ======= */
.navbar {
    position: sticky; top: 0; z-index: 100;
    background: rgba(8,16,30,.93);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid rgba(255,215,0,.18);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
    display: flex; align-items: center; gap: 2rem; height: 64px;
}
.logo { display: flex; align-items: center; gap: .6rem; font-size: 1.15rem; }
.logo-icon-img {
    width: 38px; height: 38px; border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--yellow);
    box-shadow: 0 0 10px rgba(255,215,0,.3);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .logo-elite { color: var(--yellow); font-weight: 700; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }
.logo-text strong { color: var(--white); font-size: 1rem; font-family: 'Playfair Display', serif; }
.nav-links { display: flex; gap: 1.5rem; list-style: none; margin-left: auto; }
.nav-links a { color: #a0b4cc; font-size: .92rem; transition: color .2s; }
.nav-links a:hover { color: var(--yellow); }
.cart-btn {
    background: var(--blue); color: var(--yellow); border: 2px solid var(--yellow);
    padding: .45rem 1.1rem; border-radius: 50px; cursor: pointer;
    font-size: .9rem; font-family: inherit; font-weight: 700;
    display: flex; align-items: center; gap: .5rem;
    transition: transform .15s, background .2s, box-shadow .2s;
    box-shadow: 0 2px 14px rgba(0,87,183,.4);
    letter-spacing: .02em;
}
.cart-btn:hover { transform: scale(1.06); background: #0065d4; box-shadow: 0 4px 22px rgba(0,87,183,.55); }
.cart-count {
    background: var(--yellow); color: var(--dark);
    border-radius: 50%; width: 20px; height: 20px;
    font-size: .74rem; display: flex; align-items: center; justify-content: center;
    font-weight: 800;
}
.burger { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* ======= HERO ======= */
.hero {
    min-height: 90vh; display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding: 6rem 1.5rem 4rem;
}
.hero-bg {
    position: absolute; inset: 0;
    background-image: url('/static/images/hero.jpg');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
}
.hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
        105deg,
        rgba(8,16,30,.92) 0%,
        rgba(0,87,183,.45) 45%,
        rgba(8,16,30,.65) 70%,
        rgba(8,16,30,.85) 100%
    );
}
.hero-content { position: relative; z-index: 1; max-width: 580px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: .4rem;
    background: rgba(255,215,0,.12);
    border: 1px solid rgba(255,215,0,.4);
    color: var(--yellow); padding: .3rem .9rem; border-radius: 50px;
    font-size: .85rem; margin-bottom: 1.5rem;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.05; margin-bottom: 1.2rem;
}
.hero-title .accent-yellow { color: var(--yellow); }
.hero-title .accent-blue { color: #5ba3f5; }
.hero-subtitle { font-size: 1.1rem; color: #b0c4d8; margin-bottom: 2.5rem; max-width: 420px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2.5rem; }
.stat strong { display: block; font-size: 1.6rem; color: var(--yellow); }
.stat span { font-size: .82rem; color: #7a95b0; }
.hero-img { display: none; }

/* Ukraine flag stripe decoration */
.hero-stripe {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue) 50%, var(--yellow) 50%);
    z-index: 2;
}

/* ======= BUTTONS ======= */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: .7rem 1.6rem; border-radius: 50px;
    font-family: inherit; font-size: .95rem; font-weight: 600;
    border: none; cursor: pointer; transition: all .2s;
    text-decoration: none;
}
.btn-primary {
    background: var(--yellow); color: #0a1528;
    box-shadow: 0 4px 16px rgba(255,215,0,.3);
}
.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(255,215,0,.45); }
.btn-outline { background: transparent; border: 1.5px solid rgba(255,255,255,.3); color: #fff; }
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); background: rgba(255,215,0,.08); }
.btn-full { width: 100%; }
.btn-lg { padding: .9rem 2rem; font-size: 1.05rem; }

/* ======= SECTIONS ======= */
.section { padding: 5rem 0; }
.section-dark { background: var(--dark2); }
.section-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 2rem;
}
.section-header h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; }
.link-more { color: var(--yellow); font-size: .9rem; }
.link-more:hover { text-decoration: underline; }

/* ======= CARDS ======= */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
}
.card {
    background: var(--dark3); border-radius: var(--radius);
    overflow: hidden; transition: transform .2s, box-shadow .2s;
    border: 1px solid rgba(255,255,255,.06);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,87,183,.2); }
.card-img {
    height: 180px; position: relative; overflow: hidden;
    background: #0e1a2e; cursor: pointer;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s; }
.card-img:hover img { transform: scale(1.05); }
.card-img:active img { transform: scale(0.97); }
.card-placeholder {
    display: flex; align-items: center; justify-content: center;
    height: 100%; font-size: 4rem; opacity: .5;
}
.badge-popular {
    position: absolute; top: .6rem; left: .6rem;
    background: var(--yellow); color: #0a1528;
    font-size: .72rem; font-weight: 700;
    padding: .2rem .6rem; border-radius: 50px;
}
.card-body { padding: 1rem; }
.card-title { font-size: 1rem; font-weight: 600; margin-bottom: .3rem; }
.card-desc { font-size: .82rem; color: #7a95b0; margin-bottom: .8rem; line-height: 1.4; }
.card-footer { display: flex; align-items: center; justify-content: space-between; }
.card-weight { font-size: .78rem; color: #556677; display: block; }
.card-price { font-size: 1.1rem; font-weight: 700; color: var(--yellow); }
.btn-add {
    background: var(--yellow); color: #0a1528; border: none;
    padding: .35rem .9rem; border-radius: 50px;
    font-size: .82rem; cursor: pointer; font-family: inherit; font-weight: 600;
    transition: background .2s, transform .15s;
}
.btn-add:hover { background: var(--yellow-dark); transform: scale(1.05); }

/* ======= FEATURES ======= */
.features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}
.feature { text-align: center; padding: 1.5rem; }
.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.feature h3 { margin-bottom: .5rem; }
.feature p { color: #7a95b0; font-size: .9rem; }

/* ======= CTA ======= */
.cta-section { padding: 4rem 0; }
.cta-box {
    background: linear-gradient(135deg, #0a1a35, #0d2448);
    border: 1px solid rgba(0,87,183,.45);
    border-top: 3px solid var(--yellow);
    border-radius: 20px; padding: 3rem 2.5rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
    box-shadow: 0 8px 40px rgba(0,87,183,.2);
}
.cta-text h2 { font-family: 'Playfair Display', serif; font-size: 1.9rem; margin-bottom: .5rem; }
.cta-text p { color: #a0b8cc; }

/* ======= MENU PAGE ======= */
.menu-page { min-height: 100vh; }
.menu-header {
    background: var(--dark2); padding: 3rem 0 2rem;
    border-bottom: 1px solid rgba(255,215,0,.1);
}
.menu-header h1 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: .4rem; }
.menu-header p { color: #7a95b0; }
.menu-layout { display: grid; grid-template-columns: 220px 1fr; gap: 2rem; padding-top: 2rem; padding-bottom: 3rem; }
.menu-sidebar h3 { font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: #556677; margin-bottom: 1rem; }
.cat-list { list-style: none; }
.cat-list li { margin-bottom: .3rem; }
.cat-btn {
    width: 100%; text-align: left; background: none; border: none;
    color: #a0b4cc; padding: .55rem .9rem; border-radius: 8px;
    cursor: pointer; font-family: inherit; font-size: .92rem;
    transition: all .15s;
}
.cat-btn:hover { background: rgba(255,255,255,.07); color: #fff; }
.cat-btn.active { background: rgba(255,215,0,.12); color: var(--yellow); font-weight: 600; border-left: 3px solid var(--yellow); }
.menu-items { min-height: 400px; }
.loading { text-align: center; padding: 3rem; color: #7a95b0; }
.empty-msg { color: #7a95b0; padding: 2rem 0; }

/* ======= ORDER PAGE ======= */
.order-page { padding: 3rem 0 5rem; }
.order-page h1 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 2rem; }
.order-layout { display: grid; grid-template-columns: 1fr 360px; gap: 2rem; align-items: start; }
.form-section { background: var(--dark3); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.25rem; border: 1px solid rgba(255,255,255,.06); }
.form-section h3 { margin-bottom: 1.2rem; font-size: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .85rem; color: #a0b4cc; margin-bottom: .4rem; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12); color: #fff;
    padding: .65rem .9rem; border-radius: 8px;
    font-family: inherit; font-size: .92rem;
    transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none; border-color: var(--yellow);
}
.delivery-toggle { display: flex; gap: .5rem; margin-bottom: 1rem; }
.dtoggle {
    flex: 1; padding: .6rem; border-radius: 8px;
    border: 1.5px solid rgba(255,255,255,.15); background: none;
    color: #a0b4cc; cursor: pointer; font-family: inherit; font-size: .9rem;
    transition: all .15s;
}
.dtoggle.active { border-color: var(--yellow); color: var(--yellow); background: rgba(255,215,0,.08); }

.order-summary {
    background: var(--dark3); border-radius: var(--radius);
    padding: 1.5rem; border: 1px solid rgba(255,255,255,.06);
    position: sticky; top: 80px;
}
.order-summary h3 { margin-bottom: 1.2rem; }
.summary-item { display: flex; justify-content: space-between; padding: .5rem 0; border-bottom: 1px solid rgba(255,255,255,.06); font-size: .9rem; }
.summary-total { margin-top: 1rem; padding-top: 1rem; font-size: 1.05rem; display: flex; justify-content: space-between; }

/* ======= MODAL ======= */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.75);
    display: flex; align-items: center; justify-content: center;
    z-index: 200; padding: 1rem;
}
.modal-box {
    background: var(--dark2); border-radius: 20px; padding: 2.5rem;
    max-width: 420px; width: 100%; text-align: center;
    border: 1px solid rgba(255,215,0,.2);
    box-shadow: 0 8px 40px rgba(0,87,183,.2);
}
.modal-icon { font-size: 3rem; margin-bottom: 1rem; }
.modal-box h2 { margin-bottom: .8rem; }
.modal-box p { color: #a0b4cc; margin-bottom: .5rem; }

/* ======= CART SIDEBAR ======= */
.cart-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.55);
    z-index: 150; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar {
    position: fixed; right: -420px; top: 0; width: 380px; max-width: 100vw;
    height: 100vh; background: var(--dark2);
    border-left: 1px solid rgba(255,215,0,.15);
    z-index: 160; transition: right .3s; display: flex; flex-direction: column;
    padding: 0;
}
.cart-sidebar.open { right: 0; }
.cart-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 1.5rem; border-bottom: 2px solid rgba(255,215,0,.15);
}
.cart-header h3 { font-size: 1.1rem; color: var(--yellow); }
.close-btn { background: none; border: none; color: #a0b4cc; font-size: 1.3rem; cursor: pointer; }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-empty { color: #7a95b0; text-align: center; margin-top: 2rem; }
.cart-item {
    display: flex; gap: 1rem; align-items: center;
    padding: .75rem 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.ci-info { flex: 1; }
.ci-name { font-size: .9rem; font-weight: 500; }
.ci-price { font-size: .82rem; color: var(--yellow); }
.ci-controls { display: flex; align-items: center; gap: .5rem; }
.ci-btn {
    background: rgba(255,255,255,.1); border: none; color: #fff;
    width: 26px; height: 26px; border-radius: 50%; cursor: pointer;
    font-size: 1rem; display: flex; align-items: center; justify-content: center;
}
.ci-btn:hover { background: var(--yellow); color: var(--dark); }
.ci-qty { font-size: .9rem; min-width: 20px; text-align: center; }
.cart-footer {
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(255,215,0,.15);
}
.cart-total { display: flex; justify-content: space-between; font-size: 1.05rem; margin-bottom: 1rem; }

/* ======= FOOTER ======= */
.footer {
    background: #040c18;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--blue) 50%, var(--yellow) 50%) 1;
    padding: 3.5rem 0 1.5rem; margin-top: 4rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer h4 { margin-bottom: .8rem; font-size: .95rem; color: var(--yellow); }
.footer p { color: #8899aa; font-size: .88rem; margin-bottom: .3rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.2rem; text-align: center; color: #445566; font-size: .82rem; }

/* ======= TOAST ======= */
.toast {
    position: fixed; bottom: 2rem; right: 2rem;
    background: var(--yellow); color: #0a1528;
    padding: .8rem 1.4rem; border-radius: 50px;
    font-weight: 600; font-size: .9rem;
    z-index: 300; opacity: 0; transform: translateY(10px);
    transition: all .3s;
    box-shadow: 0 4px 20px rgba(255,215,0,.4);
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ======= CAPTCHA ======= */
.captcha-block { padding: .25rem 0; }
.captcha-label { display: block; font-size: .85rem; color: #a0b4cc; margin-bottom: .75rem; }
.captcha-question {
    display: inline-block;
    background: var(--yellow);
    color: #0a1528;
    font-weight: 700;
    font-size: 1.1rem;
    padding: .15rem .6rem;
    border-radius: 6px;
    margin: 0 .3rem;
    letter-spacing: .05em;
}
.captcha-row { display: flex; gap: .6rem; align-items: center; }
.captcha-input {
    width: 160px;
    padding: .6rem .9rem;
    background: #0d1b2e;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    text-align: center;
}
.captcha-input:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 2px rgba(255,215,0,.2); }
.captcha-refresh {
    background: rgba(255,215,0,.1);
    border: 1px solid rgba(255,215,0,.3);
    color: var(--yellow);
    border-radius: 8px;
    width: 38px; height: 38px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background .2s;
    display: flex; align-items: center; justify-content: center;
}
.captcha-refresh:hover { background: rgba(255,215,0,.2); }
.captcha-error { color: #e63946; font-size: .82rem; margin-top: .5rem; }

/* ======= RESPONSIVE ≤768px (планшет / великий телефон) ======= */
@media (max-width: 768px) {
    /* --- Mobile nav dropdown --- */
    .nav-links {
        display: none;
        position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(8,16,30,.97); backdrop-filter: blur(12px);
        flex-direction: column; gap: 0;
        border-bottom: 2px solid rgba(255,215,0,.2);
        padding: .25rem 0 .75rem; z-index: 99;
        box-shadow: 0 8px 24px rgba(0,0,0,.4);
    }
    .nav-links.mobile-open { display: flex; }
    .nav-links li { border-bottom: 1px solid rgba(255,255,255,.05); }
    .nav-links li:last-child { border-bottom: none; }
    .nav-links a { display: block; padding: .9rem 1.5rem; font-size: 1rem; color: #c8d8e8; }
    .nav-links a:hover { color: var(--yellow); background: rgba(255,215,0,.06); }

    .burger {
        display: flex; align-items: center; justify-content: center;
        min-width: 44px; min-height: 44px;
        order: -1;
    }
    .logo { order: 1; margin-left: auto; }
    .cart-btn { order: 2; }

    .hero { padding: 5rem 1.5rem 3rem; min-height: auto; }
    .hero-stats { gap: 1.5rem; }
    .hero-img { display: none; }

    .menu-layout { grid-template-columns: 1fr; }
    /* Горизонтальний scroll категорій */
    .menu-sidebar {
        flex-direction: row; flex-wrap: nowrap; overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; -ms-overflow-style: none;
        padding-bottom: .5rem; gap: .4rem;
    }
    .menu-sidebar::-webkit-scrollbar { display: none; }
    .menu-sidebar h3 { display: none; }
    .cat-btn { white-space: nowrap; flex-shrink: 0; width: auto; }

    .order-layout { grid-template-columns: 1fr; }
    .order-summary { position: static; order: -1; margin-bottom: .25rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-box { flex-direction: column; text-align: center; }
    .cart-sidebar { width: 100vw; right: -100vw; }
    .modal-box { padding: 2rem 1.5rem; }
    .toast { right: 1rem; left: 1rem; text-align: center; bottom: 1rem; }
}

/* ======= RESPONSIVE ≤480px (телефон) ======= */
@media (max-width: 480px) {
    .container { padding: 0 .875rem; }

    /* Navbar */
    .nav-container { padding: 0 .875rem; gap: 1rem; }
    .cart-btn { padding: .4rem .85rem; font-size: .82rem; }

    /* Hero */
    .hero { padding: 4.5rem .875rem 2.5rem; }
    .hero-badge { font-size: .78rem; padding: .25rem .75rem; }
    .hero-subtitle { font-size: .92rem; }
    .hero-btns { gap: .6rem; }
    .hero-btns .btn { padding: .65rem 1.2rem; font-size: .9rem; }
    .hero-stats { gap: .875rem; }
    .stat strong { font-size: 1.25rem; }
    .stat span { font-size: .78rem; }

    /* Cards */
    .cards-grid { grid-template-columns: 1fr 1fr; gap: .75rem; }
    .card-img { height: 130px; }
    .card-body { padding: .75rem; }
    .card-title { font-size: .9rem; }
    .card-desc { font-size: .78rem; margin-bottom: .6rem; }
    .card-price { font-size: 1rem; }
    .btn-add { padding: .35rem .7rem; font-size: .78rem; }

    /* Order page */
    .order-page { padding: 1.5rem 0 2.5rem; }
    .order-page h1 { font-size: 1.4rem; margin-bottom: 1.2rem; }
    .order-layout { gap: .875rem; }
    .form-section { padding: 1rem .875rem; border-radius: 10px; margin-bottom: .875rem; }
    .form-section h3 { font-size: .92rem; margin-bottom: .875rem; }
    .form-group { margin-bottom: .75rem; }
    .form-group label { font-size: .8rem; }
    .form-group input, .form-group textarea, .form-group select { padding: .6rem .75rem; font-size: 16px; } /* 16px — запобігає iOS auto-zoom */
    .dtoggle { font-size: .82rem; padding: .55rem .3rem; min-height: 44px; }

    /* CAPTCHA на маленьких екранах */
    .captcha-label { font-size: .8rem; line-height: 1.5; }
    .captcha-question { font-size: 1rem; padding: .1rem .5rem; }
    .captcha-row { gap: .5rem; }
    .captcha-input { flex: 1; width: auto; min-width: 0; font-size: .95rem; }
    .captcha-refresh { flex-shrink: 0; width: 44px; height: 44px; font-size: 1.3rem; border-radius: 10px; }

    /* Order summary */
    .order-summary { padding: 1rem .875rem; border-radius: 10px; }
    .order-summary h3 { font-size: .95rem; margin-bottom: .875rem; }
    .summary-item { font-size: .82rem; padding: .4rem 0; }
    .summary-total { font-size: .95rem; margin-top: .75rem; padding-top: .75rem; }

    /* Submit button */
    .btn-lg { padding: .85rem 1.5rem; font-size: .98rem; }

    /* Modal */
    .modal-box { padding: 1.5rem 1rem; border-radius: 14px; }
    .modal-icon { font-size: 2.5rem; margin-bottom: .75rem; }
    .modal-box h2 { font-size: 1.25rem; }
    .modal-box p { font-size: .85rem; }

    /* Cart sidebar */
    .cart-header { padding: 1rem 1rem; }
    .cart-items { padding: .75rem 1rem; }
    .cart-footer { padding: .75rem 1rem 1.25rem; }
    .ci-btn { width: 44px; height: 44px; font-size: 1rem; border-radius: 50%; }
    .close-btn { min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }

    /* Footer */
    .footer { padding: 2rem 0 1rem; margin-top: 2.5rem; }
    .footer-grid { gap: 1.5rem; }

    /* Sections */
    .section { padding: 3rem 0; }
    .section-header h2 { font-size: 1.5rem; }
    .cta-box { padding: 2rem 1.25rem; }
    .cta-text h2 { font-size: 1.5rem; }

    /* Menu page */
    .menu-header { padding: 2rem 0 1.5rem; }
    .menu-header h1 { font-size: 1.5rem; }
    .menu-sidebar { gap: .4rem; }
    .cat-btn { font-size: .82rem; padding: .45rem .75rem; }
    .menu-layout { gap: 1rem; padding-top: 1.25rem; padding-bottom: 2rem; }
}

/* ======= RESPONSIVE ≤360px (дуже малий телефон) ======= */
@media (max-width: 360px) {
    .container { padding: 0 .75rem; }
    .cards-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-wrap: wrap; gap: .75rem 1.5rem; }
    .order-page h1 { font-size: 1.25rem; }
    .captcha-question { font-size: .92rem; }
}
