:root {
    --aura-page: #070708;
    --aura-shell: #1c1c1c;
    --aura-panel: #1c1c1c;
    --aura-panel-soft: #252525;
    --aura-line: rgba(255, 245, 222, .12);
    --aura-line-strong: rgba(214, 173, 85, .38);
    --aura-gold: #d6ad55;
    --aura-gold-light: #f1d58d;
    --aura-burgundy: #641f2a;
    --aura-green: #164f46;
    --aura-text: #f7f3ea;
    --aura-muted: #aaa398;
    --aura-dim: #777068;
}

* {
    box-sizing: border-box;
}

html {
    background: var(--aura-page);
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    color: var(--aura-text);
    background: var(--aura-page);
    font-family: Helvetica, Arial, sans-serif;
}

body.drawer-active,
body.modal-active {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

[hidden] {
    display: none !important;
}

.site-shell {
    position: relative;
    width: min(100%, 860px);
    min-height: 100vh;
    margin: 0 auto;
    overflow: hidden;
    background: var(--aura-shell);
    box-shadow: 0 0 80px rgba(0, 0, 0, .38);
    isolation: isolate;
}

.site-shell svg {
    display: block;
    width: 1.2em;
    height: 1.2em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-shell .fill-icon {
    fill: currentColor;
    stroke: none;
}

.eyebrow {
    display: block;
    color: var(--aura-gold);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .18em;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 76px;
    padding: 0 clamp(14px, 4vw, 32px);
    overflow: hidden;
    color: var(--aura-text);
    background: rgba(9, 8, 9, .9);
    border-bottom: 1px solid rgba(241, 213, 141, .25);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .34);
    backdrop-filter: blur(18px);
    isolation: isolate;
    perspective: 900px;
    transform-style: preserve-3d;
}

.site-header::before {
    position: absolute;
    top: -85px;
    left: 50%;
    z-index: 1;
    width: 330px;
    height: 180px;
    background: conic-gradient(from 20deg, transparent, rgba(214, 173, 85, .15), transparent 28%, rgba(118, 35, 42, .2), transparent 65%);
    border-radius: 50%;
    content: '';
    filter: blur(7px);
    pointer-events: none;
    transform: translateX(-50%) rotateX(62deg) rotateZ(-13deg);
    transform-style: preserve-3d;
    animation: aura-header-sweep 12s ease-in-out infinite;
}

.site-header::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--aura-gold), transparent);
    content: '';
    opacity: .6;
}

.header-side,
.header-logo {
    position: relative;
    z-index: 3;
}

.header-side {
    display: flex;
    align-items: center;
    gap: 3px;
}

.header-side-left {
    justify-self: start;
}

.header-side-right {
    justify-self: end;
}

.header-icon-button {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    color: var(--aura-text);
    background: rgba(255, 255, 255, .035);
    border: 1px solid transparent;
    border-radius: 50%;
    transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.header-icon-button:hover,
.header-icon-button:focus-visible {
    color: var(--aura-gold-light);
    background: rgba(214, 173, 85, .12);
    border-color: rgba(214, 173, 85, .42);
    outline: none;
    transform: translateY(-1px);
}

.header-icon-button svg {
    width: 21px;
    height: 21px;
}

.header-logo {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(241, 213, 141, .7);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(214, 173, 85, .07), 0 0 30px rgba(164, 64, 40, .28);
    transition: transform .25s ease, box-shadow .25s ease;
}

.header-logo:hover {
    box-shadow: 0 0 0 8px rgba(214, 173, 85, .09), 0 0 38px rgba(214, 173, 85, .27);
    transform: scale(1.03);
}

.header-logo img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 50%;
}

.language-pill {
    padding: 7px 8px;
    color: var(--aura-muted);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .13em;
    transition: color .2s ease, background .2s ease;
}

.language-pill.is-active,
.language-pill:hover,
.language-pill:focus-visible {
    color: var(--aura-gold-light);
    background: rgba(214, 173, 85, .13);
    outline: none;
}

.header-light,
.header-orbit {
    position: absolute;
    pointer-events: none;
}

.header-light {
    z-index: 1;
    width: 190px;
    height: 130px;
    border-radius: 50%;
    filter: blur(28px);
    opacity: .38;
    transform: translateZ(20px);
    will-change: transform, opacity;
}

.header-light-one {
    top: -74px;
    left: 6%;
    background: rgba(130, 32, 29, .8);
    animation: aura-glow 7s ease-in-out infinite alternate;
}

.header-light-two {
    right: -5%;
    bottom: -78px;
    background: rgba(175, 117, 38, .58);
    animation: aura-glow 9s ease-in-out -3s infinite alternate-reverse;
}

.header-orbit {
    z-index: 2;
    width: 260px;
    height: 76px;
    border: 1px solid rgba(214, 173, 85, .18);
    border-radius: 50%;
    transform-style: preserve-3d;
    will-change: transform;
}

.header-orbit-one {
    top: -37px;
    right: 15%;
    animation: aura-header-3d-one 13s ease-in-out infinite;
}

.header-orbit-two {
    bottom: -39px;
    left: 16%;
    border-color: rgba(139, 40, 42, .2);
    animation: aura-header-3d-two 16s ease-in-out -3s infinite reverse;
}

/* Search and drawer */
.menu-search {
    position: relative;
    z-index: 35;
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    color: var(--aura-muted);
    background: rgba(18, 15, 16, .98);
    border-bottom: 1px solid transparent;
    opacity: 0;
    transition: max-height .25s ease, opacity .2s ease, padding .25s ease, border-color .25s ease;
}

.menu-search.is-open {
    max-height: 104px;
    padding-top: 12px;
    padding-bottom: 14px;
    border-color: var(--aura-line);
    opacity: 1;
}

.menu-search label {
    display: block;
    margin-bottom: 7px;
    color: var(--aura-gold);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.menu-search-input {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 13px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(241, 213, 141, .2);
    border-radius: 11px;
}

.menu-search-input svg {
    flex: 0 0 auto;
    color: var(--aura-gold);
}

.menu-search-input input {
    width: 100%;
    min-height: 40px;
    padding: 0;
    color: var(--aura-text);
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 13px;
}

.menu-search-input input::placeholder {
    color: #817a72;
}

.menu-drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    width: min(88vw, 355px);
    padding: 19px 18px;
    overflow-y: auto;
    color: var(--aura-text);
    background: #151214;
    border-right: 1px solid rgba(214, 173, 85, .24);
    box-shadow: 18px 0 50px rgba(0, 0, 0, .45);
    transform: translateX(-105%);
    transition: transform .28s cubic-bezier(.22, .7, .2, 1);
}

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

.drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: none;
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(3px);
}

.drawer-backdrop.is-visible {
    display: block;
}

.drawer-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--aura-line);
}

.drawer-kicker {
    color: var(--aura-gold-light);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .05em;
}

.drawer-heading button {
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    padding: 0;
    color: var(--aura-text);
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--aura-line);
    border-radius: 50%;
    font-size: 25px;
    line-height: 1;
}

.drawer-heading button:hover {
    color: var(--aura-gold-light);
    border-color: var(--aura-line-strong);
}

.drawer-home,
.drawer-categories a,
.drawer-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 45px;
    padding: 10px 5px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    font-size: 13px;
    transition: color .2s ease, padding .2s ease, background .2s ease;
}

.drawer-home {
    color: var(--aura-gold-light);
    font-weight: 900;
}

.drawer-home:hover,
.drawer-categories a:hover,
.drawer-links a:hover {
    padding-left: 9px;
    color: var(--aura-gold-light);
}

.drawer-home svg,
.drawer-links svg {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
}

.drawer-categories a {
    justify-content: space-between;
}

.drawer-categories a span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.drawer-categories small {
    flex: 0 0 auto;
    color: var(--aura-dim);
    font-size: 10px;
}

.drawer-links {
    display: grid;
    gap: 2px;
    margin-top: 21px;
    padding-top: 12px;
    border-top: 1px solid var(--aura-line);
}

.drawer-links a {
    color: var(--aura-muted);
    border-bottom: 0;
}

/* Animated hero */
.menu-hero {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 300px;
    padding: 48px 22px 43px;
    overflow: hidden;
    color: var(--aura-text);
    text-align: center;
    background:
        radial-gradient(circle at 50% 42%, rgba(123, 39, 34, .34), transparent 34%),
        radial-gradient(circle at 13% 80%, rgba(172, 114, 38, .18), transparent 30%),
        linear-gradient(145deg, #171010, #090809 58%, #1b1211);
    isolation: isolate;
}

.menu-hero::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: radial-gradient(rgba(255, 255, 255, .12) .8px, transparent .8px);
    background-size: 24px 24px;
    content: '';
    mask-image: linear-gradient(180deg, transparent, #000 30%, transparent 100%);
    opacity: .14;
}

.menu-hero::after {
    position: absolute;
    right: -15%;
    bottom: -60%;
    left: -15%;
    z-index: -1;
    height: 100%;
    border: 1px solid rgba(214, 173, 85, .12);
    border-radius: 50%;
    box-shadow: 0 -14px 0 rgba(214, 173, 85, .06), 0 -29px 0 rgba(214, 173, 85, .035);
    content: '';
    transform: rotate(-7deg);
}

.hero-glow,
.hero-line,
.hero-speck {
    position: absolute;
    pointer-events: none;
}

.hero-glow {
    border-radius: 50%;
    filter: blur(22px);
}

.hero-glow-one {
    top: -92px;
    left: -50px;
    width: 235px;
    height: 235px;
    background: rgba(117, 26, 35, .46);
    animation: aura-glow 8s ease-in-out infinite alternate;
}

.hero-glow-two {
    right: -65px;
    bottom: -115px;
    width: 270px;
    height: 270px;
    background: rgba(180, 115, 30, .29);
    animation: aura-glow 9s ease-in-out -2s infinite alternate-reverse;
}

.hero-line {
    width: 75%;
    height: 42px;
    border: 1px solid rgba(241, 213, 141, .26);
    border-radius: 50%;
    transform: rotate(-14deg);
    animation: aura-orbit 13s linear infinite;
}

.hero-line-one {
    top: 3%;
    right: -22%;
}

.hero-line-two {
    bottom: 8%;
    left: -22%;
    border-color: rgba(150, 57, 55, .28);
    transform: rotate(13deg);
    animation-duration: 17s;
    animation-direction: reverse;
}

.hero-speck {
    width: 4px;
    height: 4px;
    background: var(--aura-gold-light);
    border-radius: 50%;
    box-shadow: 0 0 13px 4px rgba(241, 213, 141, .3);
    animation: aura-float 5s ease-in-out infinite;
}

.hero-speck-one {
    top: 23%;
    left: 19%;
}

.hero-speck-two {
    top: 37%;
    right: 17%;
    width: 3px;
    height: 3px;
    animation-delay: -1.6s;
}

.hero-speck-three {
    bottom: 22%;
    left: 72%;
    width: 5px;
    height: 5px;
    animation-delay: -3.2s;
}

.hero-logo,
.menu-hero .hero-kicker,
.menu-hero h1,
.menu-hero p {
    position: relative;
    z-index: 2;
}

.hero-logo {
    width: 116px;
    height: 116px;
    object-fit: cover;
    border: 1px solid rgba(241, 213, 141, .85);
    border-radius: 50%;
    box-shadow: 0 0 0 9px rgba(214, 173, 85, .08), 0 16px 38px rgba(0, 0, 0, .5), 0 0 42px rgba(139, 42, 34, .26);
    animation: aura-logo-breathe 5s ease-in-out infinite;
}

.menu-hero .hero-kicker {
    margin-top: 17px;
    color: var(--aura-gold-light);
}

.menu-hero h1 {
    max-width: 600px;
    margin: 7px 0 4px;
    color: var(--aura-text);
    font-family: Helvetica, Arial, sans-serif;
    font-size: clamp(25px, 5vw, 39px);
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1.08;
}

.menu-hero p {
    margin: 0;
    color: rgba(247, 243, 234, .72);
    font-size: 13px;
}

/* Menu view and social actions */
.home-content {
    padding: 24px clamp(13px, 4vw, 28px) 105px;
    background: #1c1c1c;
}

.menu-view-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 23px;
    padding: 15px 0 17px;
    border-bottom: 1px solid var(--aura-line);
}

.menu-view-title {
    display: grid;
    gap: 6px;
}

.menu-view-title strong {
    color: var(--aura-text);
    font-family: Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.menu-view-controls {
    display: flex;
    gap: 8px;
}

.menu-view-button {
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    padding: 0;
    color: var(--aura-muted);
    background: rgba(255, 255, 255, .025);
    border: 1px solid rgba(214, 173, 85, .42);
    border-radius: 11px;
    transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.menu-view-button svg {
    width: 20px;
    height: 20px;
}

.menu-view-button:hover,
.menu-view-button:focus-visible,
.menu-view-button.is-active {
    color: #161113;
    background: var(--aura-gold);
    border-color: var(--aura-gold-light);
    outline: none;
    transform: translateY(-2px);
}

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

.section-intro h2 {
    margin: 5px 0 0;
    color: var(--aura-text);
    font-family: Helvetica, Arial, sans-serif;
    font-size: clamp(28px, 6vw, 39px);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1;
}

.count-label {
    flex: 0 0 auto;
    color: var(--aura-dim);
    font-size: 11px;
}

.social-action-grid {
    display: grid;
    grid-column: 2;
    grid-row: span 2;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 10px;
    min-height: 0;
    margin-bottom: 0;
}

.category-grid > .category-card--featured {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.category-grid > .social-action-grid {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: stretch;
}

.social-action {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    color: #fff;
    background: #1c1c1c;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 15px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .25), inset 0 1px 0 rgba(255, 255, 255, .18);
    backdrop-filter: blur(8px);
    isolation: isolate;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.social-action::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, rgba(255, 255, 255, .14), transparent 42%, rgba(0, 0, 0, .16));
    content: '';
}

.social-action::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: inherit;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15);
    content: '';
    pointer-events: none;
}

.social-action:hover,
.social-action:focus-visible {
    border-color: rgba(255, 255, 255, .55);
    box-shadow: 0 17px 30px rgba(0, 0, 0, .34);
    outline: none;
    transform: translateY(-3px);
}

.social-action-media {
    position: absolute;
    inset: 0;
    z-index: -2;
    display: block;
    background: #2b1a25;
}

.social-action-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.03) contrast(1.05);
    transition: filter .35s ease, transform .55s cubic-bezier(.22, .7, .2, 1);
}

.social-action:hover .social-action-media img,
.social-action:focus-visible .social-action-media img {
    filter: saturate(1.12) contrast(1.08);
    transform: scale(1.06);
}

.social-action-shine {
    position: absolute;
    top: -120%;
    left: -44%;
    z-index: -1;
    width: 33%;
    height: 340%;
    background: rgba(255, 255, 255, .24);
    transform: rotate(28deg);
    transition: left .55s ease;
}

.social-action:hover .social-action-shine {
    left: 120%;
}

/* Category cards */
.category-grid {
    display: grid;
    grid-auto-flow: row;
    grid-auto-rows: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
    align-items: stretch;
}

.category-card {
    position: relative;
    display: block;
    height: auto;
    min-width: 0;
    min-height: 0;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #1c1c1c;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .27), inset 0 1px 0 rgba(255, 255, 255, .13);
    animation: aura-card-in .55s cubic-bezier(.22, .7, .2, 1) both;
    animation-delay: calc(var(--card-index, 0) * 45ms);
    isolation: isolate;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.category-card::before {
    position: absolute;
    inset: -60%;
    z-index: 0;
    background: linear-gradient(112deg, transparent 34%, rgba(255, 255, 255, .03) 43%, rgba(255, 255, 255, .19) 50%, rgba(255, 255, 255, .03) 57%, transparent 67%);
    content: '';
    mix-blend-mode: screen;
    opacity: .38;
    pointer-events: none;
    transform: translate3d(-30%, -8%, 0) rotate(15deg);
    animation: aura-category-sheen 8s ease-in-out infinite;
    animation-delay: calc(var(--card-index, 0) * -650ms);
}

.category-card.is-wide {
    grid-column: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
}

.category-card.is-tall {
    grid-row: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
}

.category-card--featured {
    grid-row: span 2;
    aspect-ratio: .86 / 1;
}

.category-grid.is-list .social-action-grid,
.category-grid.is-text .social-action-grid {
    grid-column: 1;
    grid-row: auto;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, minmax(112px, 1fr));
    aspect-ratio: auto;
}

.category-grid.is-list > .category-card--featured,
.category-grid.is-text > .category-card--featured {
    grid-column: 1;
    grid-row: auto;
}

.category-grid.is-list .category-card--featured,
.category-grid.is-text .category-card--featured {
    grid-row: auto;
    aspect-ratio: auto;
}

.category-card::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    border: 1px solid transparent;
    border-radius: inherit;
    content: '';
    pointer-events: none;
    transition: border-color .25s ease;
}

.category-card:hover,
.category-card:focus-visible {
    border-color: rgba(241, 213, 141, .52);
    box-shadow: 0 18px 33px rgba(0, 0, 0, .4), 0 0 0 1px rgba(214, 173, 85, .1);
    outline: none;
    transform: translateY(-4px);
}

.category-card:hover::after,
.category-card:focus-visible::after {
    border-color: rgba(241, 213, 141, .42);
}

.category-media,
.category-media img,
.category-overlay {
    position: absolute;
    inset: 0;
}

.category-media {
    z-index: -2;
    display: block;
}

.category-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 8, 9, .03) 6%, rgba(8, 8, 9, .08) 44%, rgba(8, 8, 9, .64) 100%);
    content: '';
}

.category-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.02) contrast(1.05);
    transition: filter .35s ease, transform .55s cubic-bezier(.22, .7, .2, 1);
}

.category-card:hover .category-media img,
.category-card:focus-visible .category-media img {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.06);
}

.category-overlay {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 12px;
    color: #fff;
    text-align: center;
    isolation: isolate;
}

.category-overlay::before {
    position: absolute;
    inset: 23% 8%;
    z-index: 0;
    background: rgba(28, 28, 28, .17);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 24px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16), 0 8px 24px rgba(0, 0, 0, .08);
    backdrop-filter: blur(5px);
    content: '';
    opacity: .72;
    transform: scale(.94);
    transition: opacity .25s ease, transform .25s ease, border-color .25s ease;
}

.category-card:hover .category-overlay::before,
.category-card:focus-visible .category-overlay::before {
    border-color: rgba(255, 255, 255, .28);
    opacity: .95;
    transform: scale(1);
}

.category-overlay strong {
    max-width: 96%;
    position: relative;
    z-index: 1;
    font-family: Helvetica, Arial, sans-serif;
    font-size: clamp(19px, 4vw, 29px);
    font-weight: 500;
    letter-spacing: -.015em;
    line-height: 1.06;
    text-shadow: 0 3px 12px rgba(0, 0, 0, .75);
}

.category-card.is-wide .category-overlay strong,
.category-card.is-tall .category-overlay strong {
    font-size: clamp(24px, 5vw, 39px);
    font-weight: 500;
}

.category-overlay small {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, .76);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.category-grid.is-list {
    grid-auto-rows: auto;
    grid-template-columns: 1fr;
}

.category-grid.is-list .category-card,
.category-grid.is-list .category-card.is-wide,
.category-grid.is-list .category-card.is-tall {
    grid-column: auto;
    grid-row: auto;
    height: 166px;
    min-height: 166px;
    aspect-ratio: auto;
}

.category-grid.is-list .category-overlay {
    align-items: flex-start;
    padding: 24px 28px;
    text-align: left;
}

.category-grid.is-list .category-overlay strong {
    max-width: 72%;
    font-size: clamp(24px, 5vw, 37px);
}

.category-grid.is-text {
    grid-auto-rows: auto;
    grid-template-columns: 1fr;
    gap: 8px;
}

.category-grid.is-text .category-card,
.category-grid.is-text .category-card.is-wide,
.category-grid.is-text .category-card.is-tall {
    grid-column: auto;
    grid-row: auto;
    height: 78px;
    min-height: 78px;
    aspect-ratio: auto;
    background: #211b1b;
}

.category-grid.is-text .category-media {
    opacity: .16;
}

.category-grid.is-text .category-media::after {
    background: linear-gradient(90deg, rgba(17, 16, 18, .95), rgba(17, 16, 18, .43));
}

.category-grid.is-text .category-overlay {
    align-items: flex-start;
    justify-content: center;
    padding: 16px 20px;
    text-align: left;
}

.category-grid.is-text .category-overlay::before {
    display: none;
}

.category-grid.is-text .category-overlay strong {
    max-width: 100%;
    color: var(--aura-text);
    font-family: Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-shadow: none;
}

.category-grid.is-text .category-overlay small {
    color: var(--aura-gold);
}

.category-no-results {
    margin: 20px 0 0;
    padding: 18px;
    color: var(--aura-muted);
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--aura-line);
    border-radius: 12px;
    text-align: center;
    font-size: 13px;
}

/* Category detail and products */
.category-page {
    min-height: 60vh;
    padding-bottom: 105px;
    background: linear-gradient(180deg, #111012, #171315);
}

.category-hero {
    position: relative;
    display: grid;
    place-items: center;
    height: 320px;
    min-height: 320px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 47%, rgba(115, 189, 226, .2), transparent 14%),
        radial-gradient(ellipse at 50% 100%, rgba(72, 238, 190, .2), transparent 43%),
        linear-gradient(135deg, #040611 0%, #0a1026 52%, #03040a 100%);
    isolation: isolate;
    perspective: 1100px;
    transform-style: preserve-3d;
}

.aura-space-hero::before {
    position: absolute;
    inset: -24%;
    z-index: 0;
    background-image:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, .9) 0 1px, transparent 1.6px),
        radial-gradient(circle at 77% 31%, rgba(164, 224, 255, .86) 0 1px, transparent 1.7px),
        radial-gradient(circle at 38% 76%, rgba(255, 231, 159, .74) 0 1px, transparent 1.8px),
        radial-gradient(circle at 90% 84%, rgba(255, 255, 255, .74) 0 1px, transparent 1.6px);
    background-size: 108px 93px, 151px 129px, 183px 157px, 223px 191px;
    content: '';
    opacity: .72;
    pointer-events: none;
    transform: translate3d(0, 0, 0) scale(1.06);
    animation: aura-space-drift 24s linear infinite;
}

.aura-space-hero::after {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: 410px;
    height: 145px;
    border: 1px solid rgba(139, 225, 255, .22);
    border-radius: 50%;
    box-shadow: 0 0 28px rgba(78, 207, 255, .12), inset 0 0 24px rgba(113, 239, 207, .08);
    content: '';
    pointer-events: none;
    transform: translate(-50%, -50%) rotateX(68deg) rotateZ(-13deg);
    animation: aura-space-ring 13s ease-in-out infinite;
}

.space-stars,
.space-nebula,
.aurora-ribbon,
.space-orbit,
.space-logo {
    position: absolute;
    pointer-events: none;
}

.space-stars {
    inset: -15%;
    z-index: 1;
    background-image:
        radial-gradient(circle at 21% 42%, rgba(255, 255, 255, .65) 0 1px, transparent 1.5px),
        radial-gradient(circle at 68% 14%, rgba(184, 230, 255, .62) 0 1px, transparent 1.6px),
        radial-gradient(circle at 83% 72%, rgba(255, 237, 178, .56) 0 1px, transparent 1.5px);
    background-size: 127px 113px, 177px 151px, 241px 203px;
    opacity: .48;
    transform: translateZ(8px) scale(1.12);
    animation: aura-space-drift-two 31s linear infinite reverse;
}

.space-stars-two {
    z-index: 2;
    opacity: .28;
    transform: translateZ(20px) scale(1.2) rotate(8deg);
    animation-duration: 39s;
}

.space-nebula {
    z-index: 1;
    width: 72%;
    height: 55%;
    border-radius: 50%;
    filter: blur(26px);
    mix-blend-mode: screen;
    opacity: .5;
    transform-style: preserve-3d;
}

.space-nebula-one {
    top: 4%;
    left: -16%;
    background: radial-gradient(ellipse at center, rgba(57, 158, 240, .48), rgba(55, 55, 168, .12) 47%, transparent 72%);
    transform: rotate(-18deg) translateZ(12px);
    animation: aura-nebula-float-one 17s ease-in-out infinite alternate;
}

.space-nebula-two {
    right: -18%;
    bottom: -7%;
    background: radial-gradient(ellipse at center, rgba(49, 236, 171, .42), rgba(34, 121, 146, .12) 48%, transparent 73%);
    transform: rotate(19deg) translateZ(5px);
    animation: aura-nebula-float-two 21s ease-in-out -4s infinite alternate-reverse;
}

.aurora-ribbon {
    z-index: 2;
    left: -19%;
    width: 138%;
    height: 46%;
    border-radius: 50%;
    filter: blur(10px);
    mix-blend-mode: screen;
    opacity: .72;
    transform-origin: 50% 50%;
    will-change: transform;
}

.aurora-ribbon-one {
    top: 28%;
    background: linear-gradient(90deg, transparent 4%, rgba(50, 219, 170, .06) 16%, rgba(90, 255, 210, .76) 42%, rgba(131, 201, 255, .4) 62%, transparent 92%);
    transform: rotate(-9deg) skewX(-18deg) translateZ(30px);
    animation: aura-aurora-wave-one 11s ease-in-out infinite;
}

.aurora-ribbon-two {
    top: 38%;
    height: 33%;
    opacity: .54;
    background: linear-gradient(90deg, transparent 3%, rgba(133, 91, 255, .08) 18%, rgba(138, 126, 255, .58) 46%, rgba(48, 235, 181, .3) 72%, transparent 96%);
    transform: rotate(8deg) skewX(20deg) translateZ(18px);
    animation: aura-aurora-wave-two 14s ease-in-out -3s infinite;
}

.aurora-ribbon-three {
    top: 48%;
    height: 25%;
    opacity: .42;
    background: linear-gradient(90deg, transparent 4%, rgba(54, 232, 193, .12) 22%, rgba(85, 188, 255, .6) 51%, rgba(173, 102, 255, .18) 79%, transparent 97%);
    transform: rotate(-5deg) skewX(-14deg) translateZ(8px);
    animation: aura-aurora-wave-three 16s ease-in-out -7s infinite;
}

.space-orbit {
    z-index: 3;
    width: 250px;
    height: 110px;
    border: 1px solid rgba(222, 250, 255, .33);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(119, 232, 255, .18);
    transform-style: preserve-3d;
}

.space-orbit-one {
    transform: translateZ(45px) rotateX(65deg) rotateZ(-18deg);
    animation: aura-space-orbit-one 12s ease-in-out infinite;
}

.space-orbit-two {
    width: 196px;
    height: 82px;
    border-color: rgba(103, 246, 206, .28);
    transform: translateZ(32px) rotateX(70deg) rotateZ(24deg);
    animation: aura-space-orbit-two 15s ease-in-out -5s infinite reverse;
}

.space-logo {
    z-index: 5;
    display: grid;
    place-items: center;
    width: 118px;
    height: 118px;
    padding: 9px;
    background: radial-gradient(circle at 36% 28%, rgba(255, 255, 255, .19), rgba(255, 255, 255, .03) 35%, rgba(2, 3, 12, .84) 72%);
    border: 1px solid rgba(231, 252, 255, .72);
    border-radius: 50%;
    box-shadow: 0 0 0 7px rgba(130, 228, 255, .08), 0 0 28px rgba(77, 220, 255, .34), 0 18px 42px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .42);
    transform: translateZ(62px);
    transform-style: preserve-3d;
    animation: aura-space-logo 7s ease-in-out infinite;
}

.space-logo::before {
    position: absolute;
    inset: -13px;
    border: 1px solid rgba(97, 239, 202, .34);
    border-radius: 50%;
    box-shadow: 0 0 18px rgba(67, 219, 190, .18);
    content: '';
    transform: translateZ(-7px);
}

.space-logo img {
    display: block;
    width: 94px;
    height: 94px;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 5px 12px rgba(0, 0, 0, .5));
}

.category-hero-shade {
    position: absolute;
    inset: 0;
    z-index: 4;
    background: linear-gradient(180deg, rgba(2, 3, 10, .05) 8%, rgba(2, 3, 10, .16) 47%, rgba(2, 3, 10, .86) 100%);
    pointer-events: none;
}

.category-hero-label {
    position: absolute;
    right: 20px;
    bottom: 23px;
    left: 20px;
    z-index: 6;
    color: #fff;
    font-family: Helvetica, Arial, sans-serif;
    font-size: clamp(30px, 7vw, 56px);
    font-weight: 800;
    line-height: 1.04;
    text-align: center;
    text-shadow: 0 4px 15px rgba(0, 0, 0, .78);
}

@keyframes aura-space-drift {
    from { transform: translate3d(-2%, 0, 0) scale(1.06) rotate(0deg); }
    50% { transform: translate3d(1%, -1%, 0) scale(1.1) rotate(2deg); }
    to { transform: translate3d(3%, 1%, 0) scale(1.06) rotate(4deg); }
}

@keyframes aura-space-drift-two {
    from { transform: translate3d(2%, 1%, 8px) scale(1.12) rotate(0deg); }
    50% { transform: translate3d(-2%, -2%, 15px) scale(1.17) rotate(-3deg); }
    to { transform: translate3d(-4%, 1%, 8px) scale(1.12) rotate(-6deg); }
}

@keyframes aura-space-ring {
    0%, 100% { opacity: .55; transform: translate(-50%, -50%) rotateX(68deg) rotateZ(-13deg) scale(.96); }
    50% { opacity: .95; transform: translate(-50%, -50%) rotateX(57deg) rotateY(20deg) rotateZ(12deg) scale(1.08); }
}

@keyframes aura-nebula-float-one {
    from { transform: rotate(-18deg) translate3d(-2%, 2%, 12px) scale(.94); }
    to { transform: rotate(-12deg) translate3d(7%, -4%, 32px) scale(1.08); }
}

@keyframes aura-nebula-float-two {
    from { transform: rotate(19deg) translate3d(3%, 4%, 5px) scale(1); }
    to { transform: rotate(11deg) translate3d(-7%, -3%, 24px) scale(1.12); }
}

@keyframes aura-aurora-wave-one {
    0%, 100% { opacity: .55; transform: rotate(-9deg) skewX(-18deg) translate3d(-5%, 7%, 30px) scaleY(.9); }
    50% { opacity: .9; transform: rotate(-3deg) skewX(-27deg) translate3d(5%, -7%, 52px) scaleY(1.15); }
}

@keyframes aura-aurora-wave-two {
    0%, 100% { opacity: .34; transform: rotate(8deg) skewX(20deg) translate3d(4%, 4%, 18px) scaleY(.92); }
    50% { opacity: .76; transform: rotate(15deg) skewX(12deg) translate3d(-5%, -8%, 42px) scaleY(1.18); }
}

@keyframes aura-aurora-wave-three {
    0%, 100% { opacity: .26; transform: rotate(-5deg) skewX(-14deg) translate3d(-3%, 6%, 8px) scaleY(.9); }
    50% { opacity: .62; transform: rotate(3deg) skewX(-21deg) translate3d(7%, -4%, 28px) scaleY(1.2); }
}

@keyframes aura-space-orbit-one {
    0%, 100% { opacity: .42; transform: translateZ(45px) rotateX(65deg) rotateZ(-18deg) scale(.96); }
    50% { opacity: .92; transform: translate3d(2%, -2%, 64px) rotateX(54deg) rotateY(18deg) rotateZ(8deg) scale(1.06); }
}

@keyframes aura-space-orbit-two {
    0%, 100% { opacity: .3; transform: translateZ(32px) rotateX(70deg) rotateZ(24deg) scale(.94); }
    50% { opacity: .8; transform: translate3d(-3%, 2%, 54px) rotateX(62deg) rotateY(-16deg) rotateZ(6deg) scale(1.08); }
}

@keyframes aura-space-logo {
    0%, 100% { transform: translateZ(62px) rotateY(-5deg) rotateX(2deg) scale(1); }
    50% { transform: translate3d(0, -4px, 76px) rotateY(7deg) rotateX(-3deg) scale(1.045); }
}

.category-heading {
    padding: 22px clamp(16px, 4vw, 29px) 8px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 21px;
    color: var(--aura-gold-light);
    font-size: 12px;
    font-weight: 800;
}

.back-link:hover {
    color: #fff;
}

.category-heading h1 {
    margin: 7px 0 5px;
    color: var(--aura-text);
    font-family: Helvetica, Arial, sans-serif;
    font-size: clamp(30px, 7vw, 47px);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1;
}

.category-heading p,
.product-heading {
    color: var(--aura-muted);
    font-size: 12px;
}

.category-heading p {
    margin: 0;
}

.product-heading {
    padding: 18px clamp(16px, 4vw, 29px) 0;
}

.product-list {
    padding: 0 clamp(16px, 4vw, 29px);
}

.product-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto 31px;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 17px 0;
    color: var(--aura-text);
    text-align: left;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--aura-line);
    transition: background .2s ease, padding .2s ease;
}

.product-row.has-image {
    grid-template-columns: 58px minmax(0, 1fr) auto 31px;
}

.product-row:hover,
.product-row:focus-visible {
    padding-right: 8px;
    padding-left: 8px;
    background: rgba(214, 173, 85, .055);
    outline: none;
}

.product-thumb {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    aspect-ratio: 1 / 1;
    padding: 3px;
    overflow: hidden;
    background: #282021;
    border: 1px solid rgba(241, 213, 141, .22);
    border-radius: 12px;
}

.product-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 9px;
    transition: transform .35s ease;
}

.product-row:hover .product-thumb img,
.product-row:focus-visible .product-thumb img {
    transform: scale(1.08);
}

.product-row-copy {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.product-row-copy > strong {
    display: block;
    color: var(--aura-text);
    overflow-wrap: anywhere;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.13;
}

.product-row-copy > small {
    display: block;
    color: var(--aura-muted);
    font-size: 12px;
    line-height: 1.42;
    overflow-wrap: anywhere;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.product-meta em,
.modal-meta i {
    padding: 4px 7px;
    color: #cbb88e;
    background: rgba(214, 173, 85, .1);
    border: 1px solid rgba(214, 173, 85, .22);
    border-radius: 99px;
    font-size: 9px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.15;
}

.product-meta .allergen {
    color: #e5ad9e;
    background: rgba(145, 57, 49, .16);
    border-color: rgba(194, 104, 88, .26);
}

.product-price {
    align-self: start;
    padding-top: 4px;
    color: var(--aura-gold-light);
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
}

.product-open {
    display: grid;
    place-items: center;
    width: 31px;
    height: 31px;
    color: var(--aura-gold-light);
    background: rgba(214, 173, 85, .08);
    border: 1px solid rgba(214, 173, 85, .5);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.product-row:hover .product-open,
.product-row:focus-visible .product-open {
    color: #151113;
    background: var(--aura-gold);
    transform: rotate(90deg);
}

.empty-state {
    margin: 0;
    padding: 30px 0;
    color: var(--aura-muted);
    font-size: 14px;
}

/* Footer and mobile navigation */
.site-footer {
    position: relative;
    padding: 66px 20px 119px;
    overflow: hidden;
    color: var(--aura-text);
    text-align: center;
    background: #0d0b0d;
    border-top: 1px solid var(--aura-line);
    isolation: isolate;
}

.site-footer::before {
    position: absolute;
    top: -170px;
    left: 50%;
    width: 470px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(118, 40, 34, .24), transparent 68%);
    content: '';
    pointer-events: none;
    transform: translateX(-50%);
}

.footer-light {
    position: absolute;
    right: 10%;
    bottom: 9%;
    width: 100px;
    height: 100px;
    background: rgba(191, 131, 38, .18);
    border-radius: 50%;
    filter: blur(30px);
    pointer-events: none;
}

.site-footer > .footer-logo {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border: 1px solid rgba(241, 213, 141, .65);
    border-radius: 50%;
    transition: transform .25s ease, box-shadow .25s ease;
}

.site-footer > .footer-logo:hover,
.site-footer > .footer-logo:focus-visible {
    box-shadow: 0 0 0 7px rgba(214, 173, 85, .08);
    outline: none;
    transform: scale(1.03);
}

.site-footer > .footer-logo img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 50%;
}

.site-footer h2 {
    position: relative;
    margin: 14px 0 7px;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 22px;
    font-weight: 800;
}

.site-footer p {
    position: relative;
    max-width: 510px;
    margin: 0 auto 6px;
    color: var(--aura-muted);
    font-size: 12px;
    line-height: 1.5;
}

.site-footer > a {
    position: relative;
    color: var(--aura-gold-light);
    font-size: 12px;
}

.footer-actions {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 22px 0 28px;
}

.footer-actions a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 12px;
    color: var(--aura-gold-light);
    border: 1px solid rgba(214, 173, 85, .48);
    border-radius: 99px;
    font-size: 10px;
    font-weight: 800;
    transition: background .2s ease, transform .2s ease;
}

.footer-actions a:hover {
    background: rgba(214, 173, 85, .1);
    transform: translateY(-2px);
}

.footer-actions svg {
    width: 14px;
    height: 14px;
}

.site-footer > small {
    position: relative;
    color: #70686a;
    font-size: 10px;
}

.mobile-bottom-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
    width: min(100%, 860px);
    margin: 0 auto;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    color: var(--aura-muted);
    background: rgba(17, 15, 16, .94);
    border-top: 1px solid rgba(214, 173, 85, .26);
    box-shadow: 0 -12px 30px rgba(0, 0, 0, .35);
    backdrop-filter: blur(16px);
}

.mobile-bottom-nav a,
.mobile-bottom-nav button {
    display: grid;
    place-items: center;
    gap: 4px;
    min-height: 43px;
    padding: 3px;
    color: inherit;
    background: transparent;
    border: 0;
    border-radius: 10px;
    font-size: 19px;
    line-height: 1;
    transition: color .2s ease, background .2s ease;
}

.mobile-bottom-nav a:hover,
.mobile-bottom-nav button:hover,
.mobile-bottom-nav a:focus-visible,
.mobile-bottom-nav button:focus-visible {
    color: var(--aura-gold-light);
    background: rgba(214, 173, 85, .1);
    outline: none;
}

.mobile-bottom-nav svg {
    width: 19px;
    height: 19px;
}

.mobile-bottom-nav span {
    overflow: hidden;
    max-width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 9px;
    font-weight: 800;
}

/* Fixed guest actions and service popups */
.floating-actions {
    position: fixed;
    right: max(14px, calc((100vw - 860px) / 2 + 14px));
    bottom: calc(82px + env(safe-area-inset-bottom));
    z-index: 80;
    display: grid;
    gap: 8px;
    width: min(226px, calc(100vw - 28px));
}

.floating-action {
    position: relative;
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 49px;
    padding: 8px 15px 8px 10px;
    overflow: hidden;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 17px;
    box-shadow: 0 4px 0 rgba(20, 12, 10, .62), 0 15px 30px rgba(0, 0, 0, .46), inset 0 1px 0 rgba(255, 255, 255, .3), inset 0 -9px 18px rgba(0, 0, 0, .16);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.1;
    text-align: left;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .32);
    transform: translateZ(0);
    transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
    isolation: isolate;
}

.floating-action::before {
    position: absolute;
    top: -135%;
    left: -38%;
    z-index: 1;
    width: 29%;
    height: 370%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .38), transparent);
    content: '';
    pointer-events: none;
    transform: rotate(25deg);
    transition: left .62s ease;
}

.floating-action::after {
    position: absolute;
    right: 10%;
    bottom: -4px;
    left: 10%;
    z-index: -1;
    height: 8px;
    background: rgba(0, 0, 0, .3);
    border-radius: 99px;
    content: '';
    filter: blur(4px);
    pointer-events: none;
}

.floating-action > span:last-child {
    position: relative;
    z-index: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.floating-action:hover,
.floating-action:focus-visible {
    box-shadow: 0 5px 0 rgba(20, 12, 10, .62), 0 19px 36px rgba(0, 0, 0, .54), inset 0 1px 0 rgba(255, 255, 255, .34), inset 0 -9px 18px rgba(0, 0, 0, .14);
    filter: brightness(1.08);
    outline: none;
    transform: translateY(-3px) scale(1.015);
}

.floating-action:hover::before,
.floating-action:focus-visible::before {
    left: 120%;
}

.floating-action:active {
    box-shadow: 0 2px 0 rgba(20, 12, 10, .62), 0 8px 17px rgba(0, 0, 0, .4), inset 0 1px 0 rgba(255, 255, 255, .22), inset 0 -8px 16px rgba(0, 0, 0, .2);
    transform: translateY(2px) scale(.99);
}

.floating-waiter {
    color: #fff8e7;
    background: linear-gradient(145deg, #f2c875 0%, #ba7538 38%, #71372a 76%, #48221e 100%);
    border-color: rgba(255, 225, 160, .82);
    box-shadow: 0 4px 0 #43201c, 0 15px 30px rgba(54, 24, 17, .48), inset 0 1px 0 rgba(255, 255, 255, .4), inset 0 -9px 18px rgba(73, 20, 13, .2);
}

.floating-review {
    color: #fff;
    background: linear-gradient(145deg, #79aaff 0%, #397ad9 42%, #2356a3 72%, #183b73 100%);
    border-color: rgba(207, 225, 255, .86);
    box-shadow: 0 4px 0 #133363, 0 15px 30px rgba(10, 39, 87, .42), inset 0 1px 0 rgba(255, 255, 255, .42), inset 0 -9px 18px rgba(8, 36, 86, .2);
}

.floating-action-icon {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    color: currentColor;
    background: linear-gradient(145deg, rgba(255, 255, 255, .34), rgba(255, 255, 255, .08));
    border: 1px solid rgba(255, 255, 255, .48);
    border-radius: 50%;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, .34), 0 3px 7px rgba(0, 0, 0, .28);
    transform: translateZ(7px);
}

.floating-review .floating-action-icon {
    color: #ffd45c;
    background: linear-gradient(145deg, rgba(255, 255, 255, .28), rgba(15, 55, 120, .35));
    border-color: rgba(255, 255, 255, .56);
}

.floating-action-icon svg {
    width: 17px;
    height: 17px;
}

.service-modal {
    position: fixed;
    inset: 0;
    z-index: 130;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.service-modal.is-visible {
    display: flex;
}

.service-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .76);
    backdrop-filter: blur(8px);
}

.service-modal-card {
    position: relative;
    width: min(100%, 430px);
    max-height: min(740px, 92vh);
    overflow: auto;
    padding: 27px 23px 23px;
    color: var(--aura-text);
    background: linear-gradient(155deg, #24211f, #141415 74%);
    border: 1px solid rgba(241, 213, 141, .35);
    border-radius: 23px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .62), 0 0 0 1px rgba(255, 255, 255, .04);
    animation: aura-service-in .26s cubic-bezier(.22, .7, .2, 1) both;
}

.service-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    padding: 0;
    color: #fff;
    background: rgba(0, 0, 0, .36);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
}

.service-modal-close:hover,
.service-modal-close:focus-visible {
    color: var(--aura-gold-light);
    border-color: var(--aura-gold);
    outline: none;
}

.service-modal-icon {
    display: grid;
    place-items: center;
    width: 57px;
    height: 57px;
    margin-bottom: 15px;
    color: var(--aura-gold-light);
    background: rgba(214, 173, 85, .12);
    border: 1px solid rgba(214, 173, 85, .35);
    border-radius: 18px;
}

.service-modal-icon svg {
    width: 28px;
    height: 28px;
}

.service-modal-card h2 {
    margin: 7px 0 8px;
    color: var(--aura-text);
    font-size: 27px;
    font-weight: 900;
    letter-spacing: -.035em;
    line-height: 1.05;
}

.service-modal-card > p,
.review-modal-body > p {
    margin: 0;
    color: var(--aura-muted);
    font-size: 13px;
    line-height: 1.5;
}

.table-qr-gate {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 17px;
    padding: 12px;
    color: var(--aura-text);
    border: 1px solid rgba(214, 173, 85, .3);
    border-radius: 14px;
    background: rgba(255, 255, 255, .055);
}

.table-qr-gate.is-locked {
    border-color: rgba(255, 183, 167, .25);
    background: rgba(255, 183, 167, .055);
}

.table-qr-gate.is-ready {
    border-color: rgba(155, 215, 168, .32);
    background: rgba(155, 215, 168, .07);
}

.table-qr-gate-mark {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 39px;
    height: 39px;
    color: var(--aura-gold-light);
    background: rgba(214, 173, 85, .12);
    border: 1px solid rgba(214, 173, 85, .28);
    border-radius: 11px;
}

.table-qr-gate.is-ready .table-qr-gate-mark {
    color: #9bd7a8;
    background: rgba(155, 215, 168, .12);
    border-color: rgba(155, 215, 168, .3);
}

.table-qr-gate-mark svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 1.1;
}

.table-qr-gate > span:last-child {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.table-qr-gate strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 900;
}

.table-qr-gate small {
    color: var(--aura-muted);
    font-size: 10px;
    line-height: 1.35;
}

.waiter-modal-card form {
    display: grid;
    gap: 13px;
    margin-top: 20px;
}

.waiter-modal-card label {
    display: grid;
    gap: 7px;
    color: #d9cbaa;
    font-size: 11px;
    font-weight: 900;
}

.waiter-modal-card input,
.waiter-modal-card textarea {
    width: 100%;
    padding: 12px 13px;
    color: var(--aura-text);
    background: rgba(255, 255, 255, .065);
    border: 1px solid rgba(241, 213, 141, .24);
    border-radius: 11px;
    outline: none;
    font-size: 14px;
}

.waiter-modal-card input:focus,
.waiter-modal-card textarea:focus {
    border-color: var(--aura-gold);
    box-shadow: 0 0 0 3px rgba(214, 173, 85, .12);
}

.waiter-modal-card textarea {
    min-height: 83px;
    resize: vertical;
}

.waiter-modal-card input::placeholder,
.waiter-modal-card textarea::placeholder {
    color: #817b74;
}

.service-feedback {
    min-height: 18px;
    margin: 0;
    color: var(--aura-muted);
    font-size: 11px;
    line-height: 1.4;
}

.service-feedback.is-success {
    color: #9bd7a8;
}

.service-feedback.is-error {
    color: #ffb7a7;
}

.service-feedback.is-loading {
    color: var(--aura-gold-light);
}

.service-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.service-modal-actions button,
.google-review-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 43px;
    padding: 0 16px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 900;
}

.service-secondary {
    color: var(--aura-muted);
    background: transparent;
    border: 1px solid var(--aura-line);
}

.service-secondary:hover,
.service-secondary:focus-visible {
    color: var(--aura-text);
    border-color: var(--aura-line-strong);
    outline: none;
}

.service-primary {
    color: #171313;
    background: linear-gradient(135deg, var(--aura-gold-light), var(--aura-gold));
    border: 1px solid var(--aura-gold-light);
}

.service-primary:disabled {
    cursor: not-allowed;
    color: #8d877e;
    background: rgba(255, 255, 255, .09);
    border-color: rgba(255, 255, 255, .14);
    box-shadow: none;
    opacity: .7;
}

.service-primary:hover,
.service-primary:focus-visible {
    filter: brightness(1.08);
    outline: none;
}

.service-primary:disabled {
    cursor: not-allowed;
    opacity: .55;
}

.google-map-preview {
    position: relative;
    height: 190px;
    margin: -27px -23px 21px;
    overflow: hidden;
    background: #d9e2d6;
    border-radius: 22px 22px 0 0;
}

.google-map-preview::before {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(28deg, transparent 47%, rgba(255, 255, 255, .88) 48%, rgba(255, 255, 255, .88) 50%, transparent 51%), linear-gradient(115deg, transparent 44%, rgba(255, 255, 255, .76) 45%, rgba(255, 255, 255, .76) 47%, transparent 48%), linear-gradient(5deg, transparent 49%, rgba(188, 201, 184, .9) 50%, transparent 51%);
    background-size: 125px 107px, 155px 133px, 198px 88px;
    content: '';
    opacity: .8;
    transform: rotate(-8deg) scale(1.18);
}

.google-map-preview::after {
    position: absolute;
    right: -7%;
    bottom: -35%;
    width: 53%;
    height: 90%;
    background: #b8d9d2;
    border-radius: 50%;
    content: '';
    opacity: .88;
    transform: rotate(-21deg);
}

.map-water,
.map-road,
.map-marker,
.map-label {
    position: absolute;
    z-index: 1;
}

.map-water {
    top: -25%;
    left: -8%;
    width: 48%;
    height: 70%;
    background: rgba(173, 208, 211, .72);
    border-radius: 50%;
    transform: rotate(20deg);
}

.map-road {
    height: 7px;
    background: #fffdf0;
    border: 1px solid rgba(190, 180, 155, .38);
    border-radius: 99px;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, .17);
}

.map-road-one {
    top: 39%;
    left: -8%;
    width: 117%;
    transform: rotate(-17deg);
}

.map-road-two {
    top: 62%;
    left: -11%;
    width: 108%;
    transform: rotate(31deg);
}

.map-road-three {
    top: -4%;
    left: 58%;
    width: 7px;
    height: 112%;
    transform: rotate(23deg);
}

.map-marker {
    top: 42%;
    left: 50%;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: #d94b3d;
    background: #fff;
    border: 4px solid rgba(255, 255, 255, .86);
    border-radius: 50% 50% 50% 8%;
    box-shadow: 0 9px 18px rgba(74, 62, 45, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.map-marker svg {
    width: 23px;
    height: 23px;
    transform: rotate(45deg);
}

.map-label {
    right: 14px;
    bottom: 13px;
    padding: 5px 8px;
    color: #53625c;
    background: rgba(255, 255, 255, .82);
    border-radius: 6px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .04em;
}

.review-modal-body {
    display: grid;
    gap: 12px;
}

.review-modal-body h2 {
    margin: 0;
    font-size: 25px;
}

.google-place-line {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 0 2px;
}

.google-place-avatar {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: #fff;
    background: linear-gradient(145deg, #3785f4, #db4437 52%, #f4b400 80%);
    border-radius: 50%;
    font-size: 17px;
    font-weight: 900;
}

.google-place-line > span:last-child {
    display: grid;
    gap: 3px;
}

.google-place-line strong {
    color: var(--aura-text);
    font-size: 14px;
    font-weight: 900;
}

.google-place-line small {
    color: var(--aura-muted);
    font-size: 11px;
}

.google-stars {
    color: #f5ae22;
    font-size: 21px;
    letter-spacing: .12em;
}

.google-review-link {
    gap: 9px;
    margin-top: 3px;
    color: #fff;
    background: #2f72d5;
    border: 1px solid #6ea1ef;
}

.google-review-link:hover,
.google-review-link:focus-visible {
    background: #205db8;
    outline: none;
    transform: translateY(-1px);
}

@keyframes aura-service-in {
    from { opacity: 0; transform: translateY(16px) scale(.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Product popup */
.product-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    align-items: flex-end;
    justify-content: center;
}

.product-modal.is-visible {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .72);
    backdrop-filter: blur(5px);
}

.modal-card {
    position: relative;
    width: min(100%, 570px);
    max-height: 90vh;
    overflow: auto;
    color: var(--aura-text);
    background: #1b1718;
    border: 1px solid rgba(241, 213, 141, .32);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -18px 55px rgba(0, 0, 0, .46);
    animation: aura-sheet-in .28s cubic-bezier(.22, .7, .2, 1) both;
}

.modal-card > img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    padding: 10px 18px;
    object-fit: contain;
    object-position: center;
    background: #282021;
}

.modal-close {
    position: absolute;
    top: 13px;
    right: 13px;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    color: #fff;
    background: rgba(12, 11, 12, .72);
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 50%;
    font-size: 25px;
    line-height: 1;
}

.modal-close:hover {
    color: var(--aura-gold-light);
    border-color: var(--aura-gold);
}

.modal-body {
    padding: 23px 20px 28px;
}

.modal-title-line {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin: 7px 0 11px;
}

.modal-title-line h2 {
    margin: 0;
    color: var(--aura-text);
    font-family: Helvetica, Arial, sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.04;
}

.modal-title-line > strong {
    flex: 0 0 auto;
    padding-top: 4px;
    color: var(--aura-gold-light);
    font-size: 15px;
    font-weight: 900;
    white-space: nowrap;
}

.modal-body > p {
    margin: 0;
    color: var(--aura-muted);
    font-size: 14px;
    line-height: 1.55;
}

.modal-meta {
    display: grid;
    gap: 9px;
    margin-top: 19px;
}

.modal-meta span {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.modal-meta b {
    min-width: 76px;
    color: var(--aura-dim);
    font-size: 11px;
    font-weight: 800;
}

.modal-meta i {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    overflow-wrap: anywhere;
    color: #e0c98e;
    background: rgba(214, 173, 85, .1);
    border-color: rgba(214, 173, 85, .26);
    line-height: 1.35;
    white-space: normal;
}

.modal-meta .allergen-value {
    color: #ffc0ae;
    background: rgba(145, 57, 49, .18);
    border-color: rgba(194, 104, 88, .35);
}

@keyframes aura-card-in {
    from { opacity: 0; transform: translateY(16px) scale(.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes aura-float {
    0%, 100% { opacity: .45; transform: translate3d(0, 0, 0); }
    50% { opacity: 1; transform: translate3d(5px, -9px, 0); }
}

@keyframes aura-glow {
    0% { opacity: .26; transform: scale(.92) translate3d(-4px, 3px, 0); }
    100% { opacity: .68; transform: scale(1.09) translate3d(11px, -7px, 0); }
}

@keyframes aura-category-sheen {
    0%, 100% { opacity: .16; transform: translate3d(-34%, -10%, 0) rotate(15deg); }
    50% { opacity: .62; transform: translate3d(34%, 10%, 0) rotate(15deg); }
}

@keyframes aura-orbit {
    from { transform: rotate(-13deg) translateX(0); }
    50% { transform: rotate(-9deg) translateX(13px); }
    to { transform: rotate(-13deg) translateX(0); }
}

@keyframes aura-header-sweep {
    0%, 100% { opacity: .42; transform: translateX(-50%) rotateX(62deg) rotateZ(-13deg) translate3d(-20px, 0, 0); }
    50% { opacity: .82; transform: translateX(-50%) rotateX(66deg) rotateY(18deg) rotateZ(11deg) translate3d(22px, 7px, 28px); }
}

@keyframes aura-header-3d-one {
    0%, 100% { opacity: .38; transform: translate3d(-12px, 0, 26px) rotateX(63deg) rotateY(-20deg) rotateZ(-14deg) scale(1); }
    50% { opacity: .9; transform: translate3d(16px, 5px, 70px) rotateX(47deg) rotateY(24deg) rotateZ(9deg) scale(1.08); }
}

@keyframes aura-header-3d-two {
    0%, 100% { opacity: .3; transform: translate3d(12px, 0, 18px) rotateX(54deg) rotateY(18deg) rotateZ(13deg) scale(.98); }
    50% { opacity: .78; transform: translate3d(-18px, -4px, 58px) rotateX(72deg) rotateY(-26deg) rotateZ(-7deg) scale(1.06); }
}

@keyframes aura-logo-breathe {
    0%, 100% { box-shadow: 0 0 0 9px rgba(214, 173, 85, .08), 0 16px 38px rgba(0, 0, 0, .5), 0 0 42px rgba(139, 42, 34, .26); }
    50% { box-shadow: 0 0 0 13px rgba(214, 173, 85, .11), 0 20px 42px rgba(0, 0, 0, .55), 0 0 58px rgba(214, 173, 85, .2); }
}

@keyframes aura-sheet-in {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 761px) {
    .mobile-bottom-nav {
        display: none;
    }

    .product-modal {
        align-items: center;
    }

    .modal-card {
        border-radius: 20px;
    }
}

@media (max-width: 520px) {
    .site-header {
        min-height: 70px;
    }

    .header-logo {
        width: 53px;
        height: 53px;
    }

    .header-logo img {
        width: 48px;
        height: 48px;
    }

    .header-icon-button {
        width: 38px;
        height: 38px;
    }

    .language-pill {
        padding-right: 6px;
        padding-left: 6px;
        font-size: 10px;
    }

    .menu-hero {
        min-height: 272px;
        padding-top: 39px;
        padding-bottom: 36px;
    }

    .hero-logo {
        width: 102px;
        height: 102px;
    }

    .home-content {
        padding-right: 12px;
        padding-left: 12px;
    }

    .floating-actions {
        right: 10px;
        bottom: calc(78px + env(safe-area-inset-bottom));
        width: min(206px, calc(100vw - 20px));
        gap: 6px;
    }

    .floating-action {
        min-height: 46px;
        padding: 7px 12px 7px 8px;
        font-size: 10.5px;
    }

    .floating-action-icon {
        width: 29px;
        height: 29px;
    }

    .service-modal {
        align-items: flex-end;
        padding: 0;
    }

    .service-modal-card {
        width: 100%;
        max-height: 91vh;
        padding: 24px 17px calc(18px + env(safe-area-inset-bottom));
        border-radius: 22px 22px 0 0;
    }

    .service-modal-card h2 {
        font-size: 24px;
    }

    .google-map-preview {
        margin: -24px -17px 19px;
        border-radius: 22px 22px 0 0;
    }

    .service-modal-actions {
        display: grid;
        grid-template-columns: 1fr 1.25fr;
    }

    .service-modal-actions button,
    .google-review-link {
        width: 100%;
    }

    .menu-view-bar {
        align-items: flex-start;
        margin-bottom: 19px;
    }

    .menu-view-title strong {
        font-size: 16px;
    }

    .menu-view-controls {
        gap: 5px;
    }

    .menu-view-button {
        width: 39px;
        height: 39px;
    }

    .social-action {
        aspect-ratio: 16 / 9;
    }

    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        grid-auto-rows: auto;
    }

    .category-card,
    .category-card.is-wide,
    .category-card.is-tall {
        grid-row: auto;
        grid-column: auto;
        height: auto;
        min-height: 0;
        aspect-ratio: 1 / 1;
    }

    .category-card--featured {
        aspect-ratio: .86 / 1;
    }

    .category-overlay {
        gap: 5px;
        padding: 13px 8px;
    }

    .category-overlay strong {
        font-size: 22px;
    }

    .category-card.is-wide .category-overlay strong,
    .category-card.is-tall .category-overlay strong {
        font-size: 26px;
    }

    .category-overlay small {
        font-size: 8px;
    }

    .category-grid.is-list .category-card,
    .category-grid.is-list .category-card.is-wide,
    .category-grid.is-list .category-card.is-tall {
        height: 148px;
        min-height: 148px;
        aspect-ratio: auto;
    }

    .category-grid.is-list .category-overlay {
        padding: 18px;
    }

    .category-grid.is-list .category-overlay strong {
        max-width: 85%;
        font-size: 25px;
    }

    .product-row {
        grid-template-columns: minmax(0, 1fr) auto 28px;
        gap: 8px;
        padding: 15px 0;
    }

    .product-row.has-image {
        grid-template-columns: 50px minmax(0, 1fr) auto 28px;
    }

    .product-row:hover,
    .product-row:focus-visible {
        padding-right: 4px;
        padding-left: 4px;
    }

    .product-thumb {
        width: 50px;
        height: 50px;
        aspect-ratio: 1 / 1;
        border-radius: 10px;
    }

    .product-row-copy > strong {
        font-size: 15px;
    }

    .product-row-copy > small {
        font-size: 11px;
    }

    .product-price {
        font-size: 12px;
    }

    .product-open {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }

    .category-hero {
        min-height: 260px;
        height: 260px;
    }

    .space-logo {
        width: 96px;
        height: 96px;
        padding: 7px;
    }

    .space-logo img {
        width: 78px;
        height: 78px;
    }

    .category-hero-label {
        bottom: 18px;
    }

    .modal-card > img {
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .modal-title-line h2 {
        font-size: 24px;
    }
}

@media (max-width: 355px) {
    .header-side-right {
        gap: 0;
    }

    .language-pill {
        padding-right: 4px;
        padding-left: 4px;
    }

    .social-action-grid {
        gap: 6px;
    }

    .social-action {
        aspect-ratio: 16 / 9;
    }

}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
