:root {
    --bg: #f7f4eb;
    --surface: #ffffff;
    --surface-soft: #fff8ee;
    --text: #0f0f0f;
    --text-soft: rgba(15, 15, 15, 0.68);
    --orange: #e85424;
    --green: #234220;
    --yellow: #f3d86d;
    --line: rgba(15, 15, 15, 0.08);
    --shadow: 0 24px 60px rgba(17, 17, 17, 0.12);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --shell: min(1240px, calc(100% - 32px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    html,
    body {
        touch-action: manipulation;
    }
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    overflow-x: hidden;
}

body.cart-open {
    overflow: hidden;
}

body.admin-open {
    overflow: hidden;
}

body.preloader-active {
    overflow: hidden;
}

.page-preloader {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background:
        radial-gradient(circle at top right, rgba(243, 216, 109, 0.18), transparent 22%),
        radial-gradient(circle at left top, rgba(232, 84, 36, 0.16), transparent 24%),
        rgba(247, 244, 235, 0.98);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-preloader-shell {
    display: grid;
    justify-items: center;
    gap: 16px;
    min-width: min(320px, calc(100vw - 48px));
    padding: 28px 32px;
    border: 1px solid rgba(15, 15, 15, 0.08);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 24px 60px rgba(15, 15, 15, 0.1);
    backdrop-filter: blur(12px);
}

.page-preloader-icon-wrap {
    position: relative;
    display: grid;
    place-items: center;
    width: 96px;
    height: 96px;
}

.page-preloader-icon-wrap::before {
    content: "";
    position: absolute;
    inset: 6px;
    border: 2px solid rgba(232, 84, 36, 0.16);
    border-top-color: var(--orange);
    border-radius: 50%;
    animation: preloaderSpin 1.2s linear infinite;
}

.page-preloader-icon {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    object-fit: contain;
    animation: preloaderFloat 1.8s ease-in-out infinite;
}

.page-preloader-title {
    color: var(--text);
    font-family: "Space Grotesk", "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.page-preloader-copy {
    color: var(--text-soft);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
}

.reveal-on-scroll {
    opacity: 0;
    filter: blur(14px);
    transform: translateY(60px);
    transition:
        opacity 1.15s ease,
        filter 1.15s ease,
        transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, filter, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

@keyframes heroGradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes ambientFloat {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    }

    50% {
        transform: translate3d(18px, -20px, 0) rotate(3deg) scale(1.04);
    }

    100% {
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    }
}

@keyframes ambientFloatReverse {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    }

    50% {
        transform: translate3d(-20px, 18px, 0) rotate(-3deg) scale(1.06);
    }

    100% {
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    }
}

@keyframes ambientPulse {
    0% {
        opacity: 0.42;
        transform: scale(1);
    }

    50% {
        opacity: 0.62;
        transform: scale(1.08);
    }

    100% {
        opacity: 0.42;
        transform: scale(1);
    }
}

@keyframes preloaderSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes preloaderFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll,
    .reveal-on-scroll.is-visible,
    .hero::before,
    .hero::after,
    .menu-section::before,
    .menu-section::after,
    .delivery-section::before,
    .delivery-section::after,
    .site-footer::before,
    .site-footer::after {
        opacity: 1;
        filter: none;
        transform: none;
        transition: none;
        animation: none;
    }

    .page-preloader-icon-wrap::before,
    .page-preloader-icon {
        animation: none;
    }
}

.floating-tools {
    position: fixed;
    top: 53px;
    right: 20px;
    z-index: 65;
    display: flex;
    flex-direction: row;
    gap: 10px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.floating-tools.is-hidden {
    opacity: 0;
    transform: translateY(-16px);
    pointer-events: none;
}

.floating-tool {
    position: relative;
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    border: 0;
    border-radius: 22px;
    background: #f0ece6;
    box-shadow: 0 16px 32px rgba(15, 15, 15, 0.1);
    color: #111111;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.floating-tool svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform: scale(1);
    transition: transform 0.35s ease;
}

.floating-tool-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transform: scale(1);
    transition: transform 0.35s ease;
}

.floating-tool-accent {
    background: var(--orange);
    color: #ffffff;
}

.floating-tool-neutral {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 15, 15, 0.08);
    color: #111111;
}

.floating-tool.is-hidden {
    display: none;
}

.floating-tool:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 40px rgba(15, 15, 15, 0.16);
}

.floating-tool:hover svg,
.floating-tool:hover .floating-tool-icon {
    transform: scale(1.08);
}

.floating-count {
    position: absolute;
    top: 10px;
    right: 10px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
}

.cart-toast {
    position: fixed;
    right: 20px;
    bottom: 24px;
    z-index: 80;
    max-width: min(360px, calc(100% - 24px));
    padding: 14px 18px;
    border-radius: 8px;
    background: var(--green);
    color: #ffffff;
    box-shadow: 0 18px 36px rgba(35, 66, 32, 0.28);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.cart-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cart-backdrop {
    position: fixed;
    inset: 0;
    z-index: 69;
    background: rgba(15, 15, 15, 0.34);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.cart-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.checkout-backdrop {
    position: fixed;
    inset: 0;
    z-index: 71;
    background:
        radial-gradient(circle at top left, rgba(232, 84, 36, 0.18), transparent 34%),
        rgba(15, 15, 15, 0.54);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.checkout-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.admin-backdrop {
    position: fixed;
    inset: 0;
    z-index: 71;
    background: rgba(15, 15, 15, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.admin-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    display: flex;
    flex-direction: column;
    width: min(420px, 100%);
    height: auto;
    max-height: none;
    padding: 28px;
    overflow-y: auto;
    background: var(--green);
    color: #ffffff;
    box-shadow: -24px 0 48px rgba(15, 15, 15, 0.18);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    -webkit-overflow-scrolling: touch;
}

.cart-drawer.is-open {
    transform: translateX(0);
}

.cart-close {
    align-self: end;
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
}

.topbar-wrap {
    position: fixed;
    top: 16px;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    justify-content: center;
    padding: 0 16px;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    max-width: 1240px;
    padding: 16px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
}

.topbar-burger {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(15, 15, 15, 0.12);
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
}

.topbar-burger span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: var(--green);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.topbar.is-menu-open .topbar-burger span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.topbar.is-menu-open .topbar-burger span:nth-child(2) {
    opacity: 0;
}

.topbar.is-menu-open .topbar-burger span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.brand,
.hero h1,
.hero h2,
.section-head h2,
.about-copy h2,
.contact-copy h2,
.dish-body h3,
.step-card h3,
.review-card strong,
.contact-card h3 {
    font-family: "Space Grotesk", "Inter", "Segoe UI", Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.brand,
.nav-links a,
.topbar-action,
.hero-button,
.section-link {
    text-decoration: none;
}

.topbar-action-button,
.hero-button-secondary,
.section-link-button {
    border: 0;
    cursor: pointer;
    font: inherit;
}

.brand {
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: rgba(0, 0, 0, 0.8);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--orange);
}

.topbar-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(15, 15, 15, 0.12);
    border-radius: 12px;
    background: #f4efe8;
    color: var(--text);
    font: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.admin-toggle:hover,
.admin-toggle.is-active {
    background: var(--orange);
    color: #ffffff;
    transform: translateY(-2px);
}

.admin-toggle-accent {
    background: var(--green);
    border-color: var(--green);
    color: #ffffff;
}

.admin-toggle-accent:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.topbar-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 20px;
    border-radius: 12px;
    background: var(--green);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: "JetBrains Mono", monospace;
}

.topbar-action:hover {
    background: var(--orange);
    color: #ffffff;
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--orange);
}

.hero::before,
.hero::after,
.menu-section::before,
.menu-section::after,
.delivery-section::before,
.delivery-section::after,
.site-footer::before,
.site-footer::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.hero::before {
    top: -12%;
    left: -8%;
    width: min(44vw, 540px);
    height: min(44vw, 540px);
    border-radius: 42% 58% 55% 45% / 44% 41% 59% 56%;
    background:
        radial-gradient(circle at 35% 35%, rgba(255, 247, 222, 0.42), rgba(255, 247, 222, 0.12) 38%, transparent 68%),
        radial-gradient(circle at 70% 65%, rgba(243, 216, 109, 0.22), transparent 58%);
    filter: blur(8px);
    opacity: 0.8;
    animation: ambientFloat 16s ease-in-out infinite;
}

.hero::after {
    right: -10%;
    bottom: 12%;
    width: min(36vw, 420px);
    height: min(36vw, 420px);
    border-radius: 60% 40% 52% 48% / 38% 62% 38% 62%;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.16), transparent 62%),
        radial-gradient(circle at 38% 38%, rgba(35, 66, 32, 0.18), transparent 52%);
    mix-blend-mode: screen;
    filter: blur(10px);
    opacity: 0.76;
    animation: ambientFloatReverse 18s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.08), transparent 18%),
        radial-gradient(circle at 16% 22%, rgba(255, 247, 222, 0.14), transparent 22%),
        radial-gradient(circle at 82% 34%, rgba(243, 216, 109, 0.14), transparent 20%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.06));
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    min-height: 100vh;
    padding: 104px 16px 92px;
    text-align: center;
    justify-content: center;
}

.hero-kicker,
.section-kicker {
    display: block;
    margin-bottom: 12px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-family: "JetBrains Mono", monospace;
}

.hero-kicker {
    color: rgba(255, 255, 255, 0.82);
}

.hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(4rem, 11vw, 8.8rem);
    line-height: 0.84;
    font-weight: 600;
}

.hero-gradient-text {
    background-image: linear-gradient(90deg, #fff7de, #ffffff, #f3d86d, #ffd8c7, #fff7de);
    background-size: 300% 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: heroGradientShift 8s ease-in-out infinite;
}

.hero-address {
    margin: 10px 0 0;
    max-width: 82ch;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h2 {
    margin: 14px 0 0;
    max-width: none;
    color: var(--yellow);
    font-size: clamp(1.7rem, 3.2vw, 3rem);
    line-height: 0.94;
    font-weight: 600;
}

.hero h2 span {
    display: block;
}

.hero-copy-row {
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
}

.hero-copy-row + .hero-copy-row {
    margin-top: 10px;
}

.hero-copy-row-block {
    display: flex;
    width: 100%;
    justify-content: center;
}

.hero-edit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-top: 4px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(15, 15, 15, 0.28);
    color: #ffffff;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

body.admin-mode .hero-edit-button {
    opacity: 1;
    pointer-events: auto;
}

.hero-edit-button:hover {
    background: var(--orange);
    transform: translateY(-1px);
}

.section-copy-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.section-edit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-top: 2px;
    border: 1px solid rgba(15, 15, 15, 0.12);
    border-radius: 999px;
    background: #f4efe8;
    color: var(--text);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

body.admin-mode .section-edit-button {
    opacity: 1;
    pointer-events: auto;
}

.section-edit-button:hover {
    background: var(--orange);
    color: #ffffff;
    transform: translateY(-1px);
}

.hero-visual {
    position: relative;
    width: min(980px, 100%);
    margin-top: 8px;
}

.hero-plate-shadow {
    position: absolute;
    inset: auto 16% -4% 16%;
    height: 96px;
    background: rgba(0, 0, 0, 0.22);
    filter: blur(28px);
    border-radius: 50%;
    animation: hero-shadow-float 4.2s ease-in-out infinite;
}

.hero-image {
    position: relative;
    z-index: 1;
    display: block;
    width: min(100%, 780px);
    height: auto;
    margin: 0 auto;
    border: 4px solid rgba(255, 255, 255, 0.14);
    border-radius: 32px;
    object-fit: cover;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
    transform: rotate(-2deg);
    animation: hero-image-float 5.5s ease-in-out infinite;
}

.hero-badge {
    position: absolute;
    right: 8%;
    bottom: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 94px;
    height: 94px;
    border: 4px solid var(--green);
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: var(--shadow);
    z-index: 2;
    animation: hero-badge-bounce 3s ease-in-out infinite;
}

.hero-badge span {
    font-family: "Space Grotesk", "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 1.7rem;
    line-height: 1;
}

.hero-badge small {
    margin-top: 4px;
    max-width: 8ch;
    font-size: 0.54rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 14px;
}

.hero-button,
.topbar-action,
.filter-chip,
.add-button,
.checkout-button {
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-button:hover,
.topbar-action:hover,
.filter-chip:hover,
.add-button:hover,
.checkout-button:hover {
    transform: translateY(-2px);
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    border-radius: 14px;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: "JetBrains Mono", monospace;
}

.hero-button-primary {
    background: #ffffff;
    color: #000000;
}

.hero-button-primary:hover {
    background: #000000;
    color: #ffffff;
}

.hero-button-secondary {
    background: var(--orange);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.18);
}

.hero-button-secondary:hover {
    background: #ffffff;
    color: #000000;
}

.hero-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 110px;
    color: var(--bg);
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 100%;
}

.marquee {
    position: relative;
    overflow: hidden;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
    isolation: isolate;
}

.marquee::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(247, 244, 235, 1), rgba(247, 244, 235, 0) 12%),
        linear-gradient(270deg, rgba(247, 244, 235, 1), rgba(247, 244, 235, 0) 12%);
    z-index: 1;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 28px;
    width: max-content;
    animation: marquee-scroll 24s linear infinite;
}

.marquee-track span {
    font-family: "Space Grotesk", "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
    text-transform: uppercase;
}

.marquee-item {
    color: var(--green);
}

.marquee-item-green {
    color: var(--green);
}

.marquee-item-yellow {
    color: var(--yellow);
}

.marquee-item-black {
    color: #000000;
}

.marquee-dot {
    color: #000000;
}

.section-shell {
    position: relative;
    width: var(--shell);
    margin: 0 auto;
    padding: 72px 0 0;
    isolation: isolate;
}

.menu-section,
.delivery-section,
.site-footer {
    overflow: hidden;
}

.menu-section::before {
    top: 108px;
    right: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(232, 84, 36, 0.14), rgba(232, 84, 36, 0.06) 42%, transparent 70%);
    filter: blur(12px);
    animation: ambientPulse 14s ease-in-out infinite;
}

.menu-section::after {
    left: -80px;
    bottom: 60px;
    width: 260px;
    height: 260px;
    border-radius: 38% 62% 56% 44% / 50% 38% 62% 50%;
    background:
        radial-gradient(circle at 44% 44%, rgba(243, 216, 109, 0.2), rgba(243, 216, 109, 0.08) 46%, transparent 72%);
    filter: blur(8px);
    opacity: 0.8;
    animation: ambientFloatReverse 17s ease-in-out infinite;
}

.delivery-section::before {
    top: 84px;
    left: -110px;
    width: 300px;
    height: 300px;
    border-radius: 44% 56% 60% 40% / 40% 44% 56% 60%;
    background:
        radial-gradient(circle at 40% 40%, rgba(35, 66, 32, 0.14), rgba(35, 66, 32, 0.05) 48%, transparent 74%);
    filter: blur(10px);
    animation: ambientFloat 18s ease-in-out infinite;
}

.delivery-section::after {
    right: -90px;
    bottom: 24px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(232, 84, 36, 0.12), rgba(232, 84, 36, 0.04) 48%, transparent 72%);
    filter: blur(10px);
    animation: ambientPulse 15s ease-in-out infinite;
}

.about-grid,
.menu-layout,
.contact-grid {
    display: grid;
    gap: 24px;
}

.about-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: stretch;
}

.about-copy h2,
.section-head h2,
.contact-copy h2 {
    margin: 0;
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    line-height: 0.94;
    color: var(--text);
}

.about-copy p,
.dish-body p,
.order-note,
.step-card p,
.review-card p,
.contact-copy p {
    color: var(--text-soft);
    line-height: 1.7;
}

.about-copy p,
.contact-copy p {
    margin: 20px 0 0;
    max-width: 58ch;
}

.about-cards {
    display: grid;
    gap: 18px;
}

.about-card,
.menu-content,
.order-panel,
.dish-card,
.step-card,
.review-card,
.contact-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
}

.about-card {
    padding: 28px;
    box-shadow: var(--shadow);
}

.about-card span,
.step-card span {
    display: block;
    margin-bottom: 10px;
    font-family: "Space Grotesk", "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 3rem;
    line-height: 0.9;
    text-transform: uppercase;
}

.about-card p {
    margin: 0;
    line-height: 1.7;
}

.about-card-dark {
    background: var(--green);
    color: #ffffff;
}

.about-card-accent {
    background: var(--yellow);
    color: var(--text);
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.section-kicker {
    color: var(--orange);
}

.menu-section .section-kicker {
    color: var(--text);
}

.menu-section .section-head h2 {
    color: var(--orange);
}

.section-link {
    color: var(--orange);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: transparent;
    padding: 0;
    font-family: "JetBrains Mono", monospace;
}

.menu-layout {
    grid-template-columns: 1fr;
    align-items: start;
}

.menu-admin-bar {
    display: none;
    justify-content: flex-end;
    margin-bottom: 16px;
}

body.admin-mode .menu-admin-bar {
    display: flex;
}

.menu-content,
.cart-drawer {
    padding: 28px;
    background: var(--surface);
    box-shadow: 0 16px 40px rgba(17, 17, 17, 0.06);
}

.menu-content {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(243, 216, 109, 0.14), transparent 22%),
        radial-gradient(circle at left bottom, rgba(232, 84, 36, 0.08), transparent 20%),
        var(--surface);
}

.menu-content::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(232, 84, 36, 0.08) 1px, transparent 0);
    background-size: 22px 22px;
    mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.26), transparent 72%);
    opacity: 0.6;
}

.admin-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 72;
    width: min(620px, calc(100% - 24px));
    max-height: calc(100vh - 40px);
    padding: 24px;
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 32px 80px rgba(15, 15, 15, 0.22);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -44%);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.checkout-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 72;
    width: min(1080px, calc(100% - 24px));
    max-height: calc(100vh - 32px);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -46%);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.checkout-modal.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%);
}

.auth-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 72;
    width: min(460px, calc(100% - 24px));
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -46%);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.auth-modal.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%);
}

.auth-modal-shell {
    overflow: hidden;
    border-radius: 32px;
    background: #ffffff;
    box-shadow: 0 36px 90px rgba(15, 15, 15, 0.28);
}

.auth-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 18px 0;
}

.auth-modal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #f2efe9;
    color: var(--text);
    font: inherit;
    font-size: 1.2rem;
    cursor: pointer;
}

.auth-modal-body {
    display: grid;
    gap: 18px;
    padding: 10px 28px 28px;
}

.auth-switcher {
    margin-bottom: 4px;
}

.auth-form {
    display: grid;
    gap: 16px;
}

.auth-form.is-hidden {
    display: none;
}

.auth-copy {
    display: grid;
    gap: 10px;
    text-align: center;
}

.auth-copy h3,
.account-orders h3,
.account-summary-card strong {
    font-family: "Space Grotesk", "Inter", "Segoe UI", Arial, sans-serif;
    text-transform: uppercase;
}

.auth-copy h3 {
    margin: 0;
    font-size: clamp(2rem, 6vw, 3.2rem);
    line-height: 0.92;
}

#auth-login-form .auth-copy h3 {
    white-space: nowrap;
    font-size: clamp(1.75rem, 9vw, 3.2rem);
}

.auth-copy p,
.account-summary-card p,
.account-order-empty,
.account-order-meta,
.account-order-items {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.6;
}

.auth-field input {
    width: 100%;
    min-height: 58px;
    padding: 0 20px;
    border: 1px solid rgba(15, 15, 15, 0.08);
    border-radius: 18px;
    background: #f3f3f3;
    color: var(--text);
    font: inherit;
    font-size: 1.8rem;
    font-weight: 700;
}

.auth-field input:focus {
    outline: none;
    border-color: rgba(232, 84, 36, 0.46);
    box-shadow: 0 0 0 4px rgba(232, 84, 36, 0.12);
}

.auth-submit {
    min-height: 48px;
    border: 0;
    border-radius: 16px;
    background: #ffc2ad;
    color: #ffffff;
    font: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.auth-submit:hover {
    background: var(--orange);
    transform: translateY(-1px);
}

.auth-submit-secondary {
    background: #f3ede4;
    color: var(--text);
}

.auth-submit-secondary:hover {
    background: #eadfce;
}

.auth-submit:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
}

.auth-hint {
    min-height: 24px;
    color: var(--orange);
    font-size: 0.92rem;
    line-height: 1.45;
    text-align: center;
}

.auth-required-actions {
    display: grid;
    gap: 12px;
}

.account-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    z-index: 72;
    width: min(430px, 100%);
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100svh;
    max-height: 100dvh;
    padding: 0;
    background: transparent;
    transform: translateX(0);
    transition: transform 0.28s ease;
}

.account-modal.is-hidden {
    display: block;
    pointer-events: none;
    transform: translateX(100%);
}

.account-modal-shell {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 24px;
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
    border: 0;
    border-radius: 0;
    background: var(--surface);
    box-shadow: -24px 0 48px rgba(15, 15, 15, 0.18);
    -webkit-overflow-scrolling: touch;
}

.account-modal-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
    padding-right: 48px;
}

.account-modal-head h2 {
    margin: 6px 0 0;
    font-size: 1.45rem;
    line-height: 1.1;
}

.account-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.account-current-order,
.account-orders,
.account-profile-card,
.account-summary-card {
    backdrop-filter: blur(10px);
}

.account-current-order,
.account-profile-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(17, 17, 17, 0.06);
    padding: 16px;
}

.account-current-order {
    margin-bottom: 12px;
}

.account-order-card-current {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(247, 241, 232, 0.92)),
        #ffffff;
}

.account-summary-card-highlight {
    background:
        radial-gradient(circle at top right, rgba(232, 84, 36, 0.12), transparent 42%),
        #ffffff;
}

.account-profile-copy {
    margin: 8px 0 12px;
    color: var(--text-soft);
    line-height: 1.45;
}

.account-phone-form {
    display: grid;
    gap: 10px;
}

.account-phone-hint {
    text-align: left;
    min-height: 18px;
    margin-top: 8px;
}

.account-modal .auth-field input {
    min-height: 48px;
    border-radius: 8px;
}

.account-modal .auth-submit {
    min-height: 44px;
    border-radius: 8px;
}

.account-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.account-summary-card,
.account-orders {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(17, 17, 17, 0.06);
}

.account-summary-card {
    display: grid;
    gap: 6px;
    padding: 16px;
}

.account-summary-label {
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: "JetBrains Mono", monospace;
}

.account-summary-card strong {
    font-size: clamp(1.5rem, 3.4vw, 2.25rem);
    line-height: 0.9;
    color: var(--green);
}

.account-orders {
    padding: 16px;
    margin-bottom: 10px;
}

.account-orders-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.account-orders-head h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--orange);
}

.account-refresh {
    background: var(--green);
}

.account-orders-list {
    display: grid;
    gap: 8px;
}

#catalog-search-results .order-line {
    border-color: rgba(15, 15, 15, 0.08);
    background: rgba(15, 15, 15, 0.03);
}

#catalog-search-results .order-line strong,
#catalog-search-results .order-line small {
    display: block;
    color: var(--text);
}

#catalog-search-results .order-line small {
    margin-top: 4px;
    color: var(--text-soft);
}

.account-order-card {
    display: grid;
    gap: 7px;
    padding: 12px;
    border: 1px solid rgba(15, 15, 15, 0.08);
    border-radius: 8px;
    background: #fbf8f2;
}

.account-order-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.account-order-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 8px;
    background: rgba(35, 66, 32, 0.12);
    color: var(--green);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.account-order-status-preparing {
    background: rgba(232, 84, 36, 0.14);
    color: var(--orange);
}

.account-order-status-ready {
    background: rgba(35, 66, 32, 0.12);
    color: var(--green);
}

.order-admin-meta-grid {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.order-admin-meta-card {
    display: grid;
    gap: 4px;
    padding: 12px 14px;
    border: 1px solid rgba(15, 15, 15, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
}

.order-admin-meta-card span {
    color: rgba(15, 15, 15, 0.6);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.order-admin-meta-card strong {
    font-size: 1rem;
    color: var(--text);
}

.order-admin-actions {
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
}

.order-admin-actions .admin-field {
    gap: 8px;
}

.order-admin-items {
    color: var(--text-soft);
    line-height: 1.5;
}

.order-admin-hint {
    color: var(--text-soft);
    font-size: 0.92rem;
}

.checkout-modal-shell {
    display: block;
    max-height: inherit;
    overflow: hidden;
    border-radius: 32px;
    background: #ffffff;
    box-shadow: 0 36px 90px rgba(15, 15, 15, 0.28);
}

.checkout-modal-head h3,
.checkout-preview strong {
    font-family: "Space Grotesk", "Inter", "Segoe UI", Arial, sans-serif;
    text-transform: uppercase;
}

.checkout-modal-head h3 {
    margin: 6px 0 0;
    font-size: clamp(2rem, 3.5vw, 3.4rem);
    line-height: 0.92;
}

.checkout-modal-form-wrap {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 20px;
    max-height: inherit;
    padding: 30px;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background:
        radial-gradient(circle at top right, rgba(217, 163, 95, 0.16), transparent 26%),
        #fffdf9;
}

.checkout-modal-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
}

.checkout-form {
    display: grid;
    gap: 18px;
}

.checkout-preview {
    display: grid;
    gap: 12px;
}

.checkout-preview-inline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.checkout-preview > div {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border: 1px solid rgba(15, 15, 15, 0.08);
    border-radius: 20px;
    background: #f7f1e8;
}

.checkout-preview span {
    color: rgba(15, 15, 15, 0.62);
    font-size: 0.78rem;
    line-height: 1.45;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.checkout-preview strong {
    font-size: 1.45rem;
    letter-spacing: -0.03em;
    color: var(--text);
}

.checkout-switcher {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 8px;
    border: 1px solid rgba(15, 15, 15, 0.08);
    border-radius: 20px;
    background: #f7f1e8;
}

.checkout-switch {
    min-height: 52px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: rgba(15, 15, 15, 0.74);
    font: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.checkout-switch.is-active {
    background: #ffffff;
    color: var(--text);
    box-shadow: 0 12px 24px rgba(15, 15, 15, 0.08);
}

.checkout-switch:hover {
    transform: translateY(-1px);
}

.checkout-switch.is-disabled,
.checkout-switch:disabled {
    opacity: 0.42;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.cart-checkout-mode {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.cart-checkout-mode-label {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: "JetBrains Mono", monospace;
}

.cart-drawer .checkout-switcher {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.14);
}

.cart-checkout-switcher {
    margin-bottom: 18px;
}

.cart-drawer .checkout-switch {
    color: rgba(255, 255, 255, 0.76);
}

.cart-drawer .checkout-switch.is-active {
    background: #ffffff;
    color: var(--text);
}

.cart-checkout-note {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.84rem;
    line-height: 1.45;
}

.delivery-threshold {
    display: none !important;
}

.delivery-threshold-icon,
#delivery-threshold-amount,
#delivery-threshold-amount + span {
    display: none !important;
}

.checkout-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.checkout-field {
    display: grid;
    gap: 8px;
}

.checkout-field-wide {
    grid-column: 1 / -1;
}

.checkout-field span,
.checkout-label {
    color: rgba(15, 15, 15, 0.7);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: "JetBrains Mono", monospace;
}

.checkout-field input {
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid rgba(15, 15, 15, 0.12);
    border-radius: 16px;
    background: #ffffff;
    color: var(--text);
    font: inherit;
}

.checkout-field input:focus {
    outline: none;
    border-color: rgba(232, 84, 36, 0.46);
    box-shadow: 0 0 0 4px rgba(232, 84, 36, 0.12);
}

.checkout-delivery-fields {
    display: grid;
    gap: 14px;
}

.checkout-delivery-fields.is-hidden {
    display: none;
}

.checkout-switcher.is-hidden {
    display: none;
}

.checkout-payment {
    display: grid;
    gap: 10px;
}

.checkout-bonus-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 14px;
    align-items: end;
    padding: 16px 18px;
    border: 1px solid rgba(15, 15, 15, 0.08);
    border-radius: 18px;
    background: #f7f1e8;
}

.checkout-bonus-copy {
    display: grid;
    gap: 8px;
}

.checkout-bonus-copy p {
    margin: 0;
    color: rgba(15, 15, 15, 0.68);
    line-height: 1.5;
}

.checkout-note {
    padding: 16px 18px;
    border: 1px solid rgba(15, 15, 15, 0.08);
    border-radius: 18px;
    background: #f6efe7;
    color: rgba(15, 15, 15, 0.76);
    line-height: 1.5;
}

.checkout-consents {
    display: grid;
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid rgba(15, 15, 15, 0.08);
    border-radius: 8px;
    background: #ffffff;
}

.checkout-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(15, 15, 15, 0.76);
    font-size: 0.9rem;
    line-height: 1.35;
}

.checkout-consent input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    accent-color: var(--green);
}

.checkout-consent a {
    color: var(--orange);
    font-weight: 700;
    text-decoration: none;
}

.checkout-consent a:hover {
    text-decoration: underline;
}

.checkout-consents.is-attention {
    border-color: rgba(232, 84, 36, 0.72);
    box-shadow: 0 0 0 3px rgba(232, 84, 36, 0.14);
}

.checkout-consent-popup {
    position: fixed;
    left: 50%;
    bottom: 28px;
    z-index: 130;
    width: min(420px, calc(100% - 24px));
    padding: 14px 16px;
    border-radius: 8px;
    background: var(--green);
    color: #ffffff;
    box-shadow: 0 18px 36px rgba(35, 66, 32, 0.28);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 14px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.checkout-consent-popup.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.checkout-actions {
    display: flex;
    justify-content: flex-end;
}

.checkout-submit {
    min-height: 58px;
    padding: 0 24px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--orange), #f38a3d);
    color: #ffffff;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(232, 84, 36, 0.26);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.checkout-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 44px rgba(232, 84, 36, 0.32);
}

.admin-modal.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%);
}

.admin-modal-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.admin-modal-head h3 {
    margin: 6px 0 0;
    font-family: "Space Grotesk", "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 2rem;
    line-height: 0.96;
    text-transform: uppercase;
}

.admin-close {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: #f3eee7;
    color: var(--text);
    font-size: 1.2rem;
    cursor: pointer;
}

.admin-form {
    display: grid;
    gap: 16px;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.admin-field {
    display: grid;
    gap: 8px;
}

.admin-field span {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: "JetBrains Mono", monospace;
}

.admin-field input,
.admin-field select,
.admin-field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(15, 15, 15, 0.12);
    border-radius: 14px;
    background: #fbf8f2;
    color: var(--text);
    font: inherit;
}

.admin-field textarea {
    resize: vertical;
    min-height: 140px;
}

.category-admin-list {
    display: grid;
    gap: 12px;
}

.category-admin-row {
    display: grid;
    grid-template-columns: minmax(0, 180px) minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
}

.category-admin-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(15, 15, 15, 0.12);
    border-radius: 14px;
    background: #ffffff;
    color: var(--text);
}

.category-admin-remove {
    flex: 0 0 auto;
}

.admin-checkbox {
    grid-template-columns: 1fr auto;
    align-items: center;
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid rgba(15, 15, 15, 0.12);
    border-radius: 14px;
    background: #fbf8f2;
}

.admin-checkbox input {
    width: 20px;
    height: 20px;
    margin: 0;
}

.admin-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.admin-actions-end {
    justify-content: flex-end;
}

.admin-save {
    min-height: 48px;
    padding: 0 22px;
    border: 0;
    border-radius: 14px;
    background: var(--orange);
    color: #ffffff;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.admin-save:hover {
    background: var(--green);
    transform: translateY(-2px);
}

.admin-save:disabled {
    opacity: 0.6;
    cursor: wait;
    transform: none;
}

.admin-delete {
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid rgba(15, 15, 15, 0.12);
    border-radius: 14px;
    background: #fff3ef;
    color: #9f2d0f;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.admin-delete:hover {
    background: #d9411b;
    color: #ffffff;
    transform: translateY(-2px);
}

.admin-delete.is-hidden {
    visibility: hidden;
    pointer-events: none;
}

.cart-drawer {
    background: var(--green);
    box-shadow: -24px 0 48px rgba(15, 15, 15, 0.18);
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.filter-chip {
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #ffffff;
    color: var(--text);
    font: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: "JetBrains Mono", monospace;
}

.filter-chip:hover {
    background: #f1ede7;
    border-color: rgba(15, 15, 15, 0.12);
    color: var(--text);
}

.filter-chip.active {
    background: var(--orange);
    border-color: var(--orange);
    color: #ffffff;
}

.menu-grid,
.steps-grid,
.reviews-grid {
    display: grid;
    gap: 18px;
}

.menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dish-card {
    padding: 18px;
    background: #ffffff;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.dish-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 36px rgba(15, 15, 15, 0.08);
}

.dish-card.is-hidden {
    display: none;
}

.dish-visual {
    position: relative;
    min-height: 220px;
    margin-bottom: 16px;
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(circle at 50% 45%, color-mix(in srgb, var(--card-accent) 82%, white), transparent 28%),
        linear-gradient(180deg, #fff9f1, #f3eadf);
}

.dish-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    transform: scale(1);
    transition: transform 0.35s ease;
}

.dish-card:hover .dish-image {
    transform: scale(1.06);
}

.dish-image.is-hidden,
.dish-plate.is-hidden {
    display: none;
}

.dish-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: "JetBrains Mono", monospace;
}

.dish-plate {
    position: absolute;
    inset: 0;
    width: 182px;
    height: 182px;
    margin: auto;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 0 20%, transparent 21%),
        radial-gradient(circle at 50% 50%, #f1dbc0 22%, #deb983 54%, #b06f42 100%);
    box-shadow:
        inset 0 10px 20px rgba(255, 255, 255, 0.24),
        inset 0 -14px 20px rgba(0, 0, 0, 0.16),
        0 22px 30px rgba(0, 0, 0, 0.14);
}

.dish-center {
    position: absolute;
    inset: 22%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 45% 35%, color-mix(in srgb, var(--card-accent) 65%, #ffd462), color-mix(in srgb, var(--card-accent) 70%, #db5f28) 42%, #6c2810 100%);
}

.dish-body h3 {
    margin: 0 0 10px;
    font-size: 1.6rem;
    line-height: 0.95;
    color: var(--orange);
}

.dish-body p {
    margin: 0;
}

.dish-admin-row {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.dish-admin-row .dish-title {
    margin-bottom: 0;
}

.dish-edit-button {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(15, 15, 15, 0.12);
    border-radius: 10px;
    background: #f4efe8;
    color: var(--text);
    font: inherit;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
}

body.admin-mode .dish-edit-button {
    opacity: 1;
    pointer-events: auto;
}

.dish-edit-button:hover {
    background: var(--orange);
    color: #ffffff;
}

.dish-footer,
.order-summary,
.order-line,
.contact-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.dish-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-picker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #ffffff;
}

.qty-picker-ghost {
    width: fit-content;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
}

.qty-picker-ghost .qty-button {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.qty-picker-ghost .qty-value {
    color: #ffffff;
}

.qty-button {
    width: 26px;
    height: 26px;
    border: 0;
    border-radius: 8px;
    background: #f3efe9;
    color: var(--text);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.qty-value {
    min-width: 18px;
    text-align: center;
    font-size: 0.86rem;
    font-weight: 700;
}

.add-button,
.checkout-button {
    border: 0;
    cursor: pointer;
}

.add-button {
    min-height: 44px;
    padding: 0 16px;
    border-radius: 12px;
    background: var(--green);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: "JetBrains Mono", monospace;
}

.add-button:hover {
    background: var(--orange);
    color: #ffffff;
}

.cart-drawer .section-kicker,
.order-note,
.order-summary span,
.order-empty p,
.order-line small {
    font-family: "JetBrains Mono", monospace;
    color: rgba(255, 255, 255, 0.72);
}

.cart-drawer h3 {
    margin: 0 0 10px;
    font-size: 2rem;
    color: #ffffff;
}

.order-note {
    margin: 0 0 18px;
}

.order-items {
    display: grid;
    gap: 12px;
    margin: 18px 0 20px;
    min-height: 0;
}

.order-empty,
.order-line {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
}

.order-empty strong,
.order-line strong,
.order-summary strong {
    color: #ffffff;
}

.order-line-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.order-remove-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.order-remove-button:hover {
    background: rgba(232, 84, 36, 0.92);
    transform: translateY(-1px);
}

.order-summary {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 14px;
    padding: 18px 0;
    margin-bottom: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.order-summary > div {
    display: grid;
    gap: 8px;
}

.order-summary span {
    display: block;
    margin-bottom: 0;
}

.checkout-button {
    width: 100%;
    min-height: 54px;
    flex: 0 0 auto;
    margin-top: auto;
    border-radius: 14px;
    background: var(--yellow);
    color: var(--text);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.checkout-button:disabled {
    background: rgba(245, 211, 94, 0.45);
    color: rgba(15, 15, 15, 0.52);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card {
    padding: 24px;
    background: var(--orange);
    color: #ffffff;
    box-shadow: var(--shadow);
}

.step-card span {
    color: var(--yellow);
}

.step-card h3 {
    margin: 0 0 10px;
    font-size: 1.6rem;
    line-height: 0.95;
}

.step-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
}

.reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
    padding: 24px;
    background: var(--surface);
}

.review-stars {
    margin-bottom: 12px;
    color: var(--orange);
    font-size: 0.88rem;
    letter-spacing: 0.16em;
}

.review-card p {
    margin: 0;
}

.review-card strong {
    display: block;
    margin-top: 18px;
    font-size: 1.2rem;
}

.contact-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: start;
    padding-bottom: 64px;
}

.contact-card {
    padding: 28px;
    background: var(--orange);
    color: #ffffff;
    box-shadow: var(--shadow);
}

.contact-card h3 {
    margin: 0 0 18px;
    font-size: 2rem;
    color: #ffffff;
}

.contact-line {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-line:last-child {
    border-bottom: 0;
}

.site-footer {
    position: relative;
    border-top: 1px solid var(--line);
    background: #fbf7f1;
}

.site-footer::before {
    top: -80px;
    right: 8%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(232, 84, 36, 0.2), rgba(232, 84, 36, 0.04) 52%, transparent 72%);
    filter: blur(10px);
    animation: ambientPulse 16s ease-in-out infinite;
}

.site-footer::after {
    left: -60px;
    bottom: -40px;
    width: 220px;
    height: 220px;
    border-radius: 40% 60% 58% 42% / 44% 42% 58% 56%;
    background:
        radial-gradient(circle at 40% 40%, rgba(243, 216, 109, 0.12), rgba(243, 216, 109, 0.03) 48%, transparent 74%);
    filter: blur(10px);
    animation: ambientFloat 18s ease-in-out infinite;
}

.site-footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(240px, 0.8fr);
    gap: 32px;
    align-items: start;
    max-width: 1240px;
    margin: 0 auto;
    padding: 32px 16px 40px;
}

.site-footer-logo {
    color: var(--text);
    text-decoration: none;
    font-family: "Space Grotesk", "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.site-footer-copy {
    max-width: 34ch;
    margin: 12px 0 0;
    color: var(--text-soft);
}

.site-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    justify-content: center;
    padding-top: 8px;
}

.site-footer-nav a {
    color: var(--text);
    text-decoration: none;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    padding-bottom: 4px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.site-footer-nav a:hover {
    color: var(--orange);
    border-color: var(--orange);
}

.site-footer-meta {
    display: grid;
    gap: 8px;
    justify-items: end;
    text-align: right;
}

.site-footer-label {
    color: var(--orange);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer-meta strong {
    color: var(--text);
    font-family: "Space Grotesk", "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.1;
}

.site-footer-phone,
.site-footer-map-trigger {
    color: var(--text);
    text-decoration: none;
    font-family: "Space Grotesk", "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.1;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer-map-trigger {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: right;
}

.site-footer-phone:hover,
.site-footer-map-trigger:hover {
    color: var(--orange);
    transform: translateY(-1px);
}

.legal-page-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, rgba(243, 216, 109, 0.18), transparent 22%),
        radial-gradient(circle at left top, rgba(232, 84, 36, 0.12), transparent 24%),
        var(--bg);
}

.legal-page-header {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 16px;
    backdrop-filter: blur(14px);
}

.legal-page-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: min(1100px, calc(100% - 16px));
    margin: 0 auto;
    padding: 16px 22px;
    border: 1px solid rgba(15, 15, 15, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 44px rgba(15, 15, 15, 0.08);
}

.legal-page-brand,
.legal-page-back {
    text-decoration: none;
}

.legal-page-brand {
    color: var(--text);
    font-family: "Space Grotesk", "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.legal-page-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 14px;
    background: var(--green);
    color: #ffffff;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.2s ease, background 0.2s ease;
}

.legal-page-back:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

.legal-page-main {
    padding: 16px 16px 56px;
}

.legal-page-shell {
    width: min(1100px, calc(100% - 16px));
    margin: 0 auto;
}

.legal-page-head {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
    padding: 24px 8px 0;
}

.legal-page-head h1 {
    margin: 0;
    font-family: "Space Grotesk", "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    line-height: 0.92;
    text-transform: uppercase;
    letter-spacing: -0.04em;
}

.legal-page-head p {
    margin: 0;
    max-width: 56ch;
    color: var(--text-soft);
    line-height: 1.7;
}

.legal-document {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(243, 216, 109, 0.1), transparent 18%),
        #ffffff;
    box-shadow: 0 18px 44px rgba(15, 15, 15, 0.06);
}

.legal-document-text {
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
    color: var(--text);
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 0.98rem;
    line-height: 1.75;
}

.footer-map-modal {
    width: min(980px, calc(100% - 24px));
}

.footer-map-modal-wrap {
    display: grid;
    gap: 20px;
    padding: 28px;
    background:
        linear-gradient(180deg, rgba(232, 84, 36, 0.06), transparent 32%),
        #ffffff;
}

.footer-map-frame {
    overflow: hidden;
    border: 1px solid rgba(15, 15, 15, 0.08);
    border-radius: 24px;
    background: #f7f3ee;
    min-height: 420px;
}

.footer-map-frame iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}

.contact-line span {
    font-family: "Space Grotesk", "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes hero-image-float {
    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-10px) rotate(-1deg);
    }
}

@keyframes hero-badge-bounce {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes hero-shadow-float {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.22;
    }

    50% {
        transform: scale(0.96);
        opacity: 0.16;
    }
}

@media (max-width: 1100px) {
    .about-grid,
    .steps-grid,
    .reviews-grid,
    .contact-grid,
    .site-footer-inner {
        grid-template-columns: 1fr;
    }

    .section-head {
        align-items: start;
        flex-direction: column;
    }
}

@media (max-width: 820px) {
    .topbar {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px 20px;
    }

    .hero-inner {
        min-height: 100vh;
        padding: 132px 16px 88px;
    }

    .hero-badge {
        right: 4%;
        bottom: -6px;
        width: 82px;
        height: 82px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .menu-content,
    .cart-drawer {
        padding: 20px;
    }

    .cart-drawer {
        inset: 0 0 0 auto;
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: none;
        padding: 18px;
        padding-bottom: calc(32px + env(safe-area-inset-bottom));
        overflow-y: auto;
    }

    .dish-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .site-footer-nav {
        justify-content: start;
    }

    .site-footer-meta {
        justify-items: start;
        text-align: left;
    }

    .site-footer-map-trigger {
        text-align: left;
    }

    .dish-actions {
        justify-content: space-between;
    }

    .floating-tools {
        right: 12px;
        gap: 8px;
        top: 104px;
    }

    body.mobile-menu-open .floating-tools {
        opacity: 0;
        transform: translateY(-16px);
        pointer-events: none;
    }

    .floating-tool {
        width: 68px;
        height: 68px;
    }

    .topbar {
        position: relative;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px;
        padding: 12px;
        border-radius: 16px;
    }

    .topbar-burger {
        display: block;
        border: 0;
        background: transparent;
    }

    .nav-links,
    .topbar-controls {
        display: none;
        grid-column: 1 / -1;
        width: 100%;
    }

    .topbar.is-menu-open .nav-links,
    .topbar.is-menu-open .topbar-controls {
        display: grid;
    }

    .nav-links {
        gap: 6px;
        padding-top: 8px;
    }

    .nav-links a {
        padding: 10px 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        text-align: center;
    }

    .topbar-controls {
        gap: 8px;
    }

    .topbar-controls .admin-toggle,
    .topbar-controls .topbar-action {
        width: 100%;
        border: 0;
        box-shadow: none;
    }

    .cart-toast {
        right: 12px;
        bottom: 16px;
    }

    .admin-grid {
        grid-template-columns: 1fr;
    }

    .category-admin-row {
        grid-template-columns: 1fr;
    }

    .checkout-modal-form-wrap {
        padding: 24px;
    }

    .account-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .dish-admin-row {
        flex-direction: column;
    }

    .admin-modal {
        padding: 18px;
    }

    .checkout-modal {
        width: calc(100% - 16px);
        max-height: calc(100vh - 16px);
        max-height: calc(100svh - 16px);
        max-height: calc(100dvh - 16px);
    }

    .checkout-modal-form-wrap {
        padding: 18px;
    }

    #checkout-modal {
        top: 8px;
        bottom: 8px;
        height: calc(100vh - 16px);
        height: calc(100svh - 16px);
        height: calc(100dvh - 16px);
        max-height: none;
        transform: translateX(-50%);
    }

    #checkout-modal.is-open {
        transform: translateX(-50%);
    }

    #checkout-modal .checkout-modal-shell,
    #checkout-modal .checkout-modal-form-wrap {
        height: 100%;
        max-height: none;
    }

    .footer-map-modal-wrap {
        padding: 18px;
    }

    .footer-map-frame,
    .footer-map-frame iframe {
        min-height: 320px;
        height: 320px;
    }

    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .checkout-preview-inline,
    .checkout-switcher {
        grid-template-columns: 1fr;
    }

    .checkout-bonus-box {
        grid-template-columns: 1fr;
    }

    .auth-modal-body,
    .account-orders {
        padding: 18px;
    }

    .account-modal {
        width: min(430px, 100%);
        height: 100svh;
        height: 100dvh;
        max-height: 100svh;
        max-height: 100dvh;
        padding: 0;
    }

    .account-modal-shell {
        width: 100%;
        max-height: none;
        padding: 18px;
        padding-bottom: calc(18px + env(safe-area-inset-bottom));
    }

    .account-modal-head {
        padding-right: 44px;
    }

    .account-modal-head h2 {
        font-size: 1.25rem;
    }

    .account-modal-close {
        top: 16px;
        right: 16px;
    }

    .account-orders-head,
    .account-order-head {
        flex-direction: column;
        align-items: flex-start;
    }
}
