:root {
    --bg-1: #06080f;
    --bg-2: #0b1020;
    --bg-3: #141c2f;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --line: rgba(255, 255, 255, 0.1);
    --gold-1: #ffd670;
    --gold-2: #f3c247;
    --gold-3: #d8aa2e;
    --green-1: #16a34a;
    --safe-top: env(safe-area-inset-top, 0px);
    --safe-right: env(safe-area-inset-right, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-left: env(safe-area-inset-left, 0px);
}

* {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: calc(5.5rem + var(--safe-top));
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text-main);
    overflow-x: hidden;
    overscroll-behavior-y: none;
    background: linear-gradient(150deg, var(--bg-1) 0%, var(--bg-2) 60%, var(--bg-3) 100%);
}

img,
svg {
    max-width: 100%;
}

a,
button,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold-1);
    outline-offset: 2px;
}

.brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 0.85rem;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.brand-heading {
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.22rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    padding: 0.22rem;
}

.language-btn {
    min-width: 44px;
    min-height: 36px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #cbd5e1;
    font-family: 'Sora', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.language-btn:hover {
    color: #fff8db;
}

.language-btn.active {
    background: linear-gradient(120deg, rgba(255, 214, 112, 0.22), rgba(255, 214, 112, 0.08));
    color: #fff8db;
    box-shadow: inset 0 0 0 1px rgba(255, 214, 112, 0.24);
}

.back-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.65rem 1rem;
    color: #f8fafc;
    font-size: 0.88rem;
    font-weight: 700;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.back-nav-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 214, 112, 0.34);
    background: rgba(255, 214, 112, 0.1);
}

.back-nav-btn svg {
    width: 1rem;
    height: 1rem;
}

.splash-screen {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #020617;
}

.splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.splash-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: splashZoom 3.5s ease forwards;
}

.splash-layer {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 214, 112, 0.15), rgba(2, 6, 23, 0.84) 60%);
}

.splash-content {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: center;
    gap: 0.8rem;
    padding: 1.4rem;
    text-align: center;
    animation: splashTextIn 0.85s ease both;
}

.splash-content::before {
    content: '';
    position: absolute;
    inset: -1.2rem;
    border-radius: 1.4rem;
    background: radial-gradient(circle at center, rgba(255, 214, 112, 0.26), rgba(255, 214, 112, 0));
    filter: blur(6px);
    z-index: -1;
}

.splash-logo {
    width: 92px;
    height: 92px;
    border-radius: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.45);
    animation: splashLogoPulse 2.2s ease-in-out infinite;
}

.splash-kicker {
    margin: 0;
    font-size: 0.75rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #ffe9a8;
    font-weight: 700;
}

.splash-title {
    margin: 0;
    max-width: 540px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.2rem, 3.8vw, 2rem);
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
}

input[type='radio'] {
    accent-color: #f3c247;
}

.payment-spinner {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 3px solid rgba(255, 255, 255, 0.25);
    border-top-color: #ffd670;
    animation: spin 0.85s linear infinite;
}

.ambient-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 12% 8%, rgba(255, 214, 112, 0.2), transparent 42%),
        radial-gradient(circle at 88% 22%, rgba(22, 163, 74, 0.14), transparent 36%),
        radial-gradient(circle at 70% 80%, rgba(216, 170, 46, 0.17), transparent 42%);
}

.ambient-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(transparent 96%, rgba(255, 255, 255, 0.05) 100%);
    background-size: 100% 18px;
    opacity: 0.3;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 0;
    background: transparent;
    padding: 0;
    color: #cbd5e1;
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    height: 2px;
    width: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold-1), var(--gold-3));
}

.mobile-top-action {
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    padding: 0.72rem 0.95rem;
    text-align: center;
}

.mobile-top-action:hover,
.mobile-top-action.active {
    border-color: rgba(255, 214, 112, 0.4);
    background: rgba(255, 214, 112, 0.1);
}

.mobile-top-action.active::after {
    display: none;
}

.mobile-nav {
    max-height: 0;
    overflow: hidden;
    border-top: 1px solid transparent;
    transition: max-height 0.3s ease, border-color 0.3s ease;
}

.mobile-nav.open {
    max-height: 250px;
    border-color: var(--line);
}

.mobile-nav-link {
    display: block;
    width: 100%;
    min-height: 48px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: transparent;
    padding: 0.9rem 1.2rem;
    text-align: left;
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 600;
}

.mobile-nav-link:last-child {
    border-bottom: 0;
}

.hero-grid {
    position: relative;
    display: grid;
    gap: 2.5rem;
}

.hero-grid::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.hero-visual {
    position: relative;
    min-height: 300px;
    border-radius: 1.4rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: #101827;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    animation: heroFloat 8s ease-in-out infinite;
}

.hero-badge {
    position: absolute;
    z-index: 3;
    border-radius: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(8, 15, 30, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.6rem 0.8rem;
    color: #f8fafc;
}

.hero-support-copy {
    letter-spacing: 0.02em;
}

.hero-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 214, 112, 0.18), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 50%);
    pointer-events: none;
}

.hero-kicker,
.section-kicker {
    margin: 0;
    color: #fde68a;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
}

.hero-trust-pill {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.55rem 0.95rem;
    color: #f8fafc;
    font-size: 0.85rem;
    font-weight: 600;
}

.hero-promo-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 100%;
    border-radius: 999px;
    border: 1px solid rgba(251, 191, 36, 0.34);
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.2), rgba(251, 191, 36, 0.14));
    padding: 0.7rem 1rem;
    color: #fff4cf;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 14px 32px rgba(234, 88, 12, 0.14);
}

.hero-proof-grid {
    display: grid;
    gap: 1rem;
}

.hero-proof-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    align-items: start;
    border-radius: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.74), rgba(15, 23, 42, 0.46));
    padding: 1rem 1.05rem;
    backdrop-filter: blur(8px);
}

.hero-proof-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(251, 191, 36, 0.28);
    background: rgba(251, 191, 36, 0.12);
    color: #fde68a;
    font-family: 'Sora', sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
}

.hero-proof-title {
    margin: 0;
    color: #ffffff;
    font-family: 'Sora', sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
}

.hero-proof-copy {
    margin: 0.32rem 0 0;
    color: #cbd5e1;
    font-size: 0.85rem;
    line-height: 1.55;
}

.hero-inline-link {
    border: 0;
    background: transparent;
    padding: 0;
    color: #fde68a;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
}

.hero-inline-link:hover {
    color: #fff8db;
}

.hero-spotlight-card {
    max-width: 220px;
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 0;
    border-radius: 1rem;
    background: linear-gradient(110deg, var(--gold-1), var(--gold-2), var(--gold-3));
    padding: 0.78rem 1.2rem;
    color: #101827;
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-premium:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(255, 214, 112, 0.25);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.75rem 1.2rem;
    color: #f8fafc;
    font-family: 'Sora', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-outline:hover {
    border-color: rgba(255, 214, 112, 0.55);
    background: rgba(255, 214, 112, 0.08);
}

.btn-outline:disabled,
.btn-premium:disabled {
    cursor: not-allowed;
    opacity: 0.55;
    transform: none;
    box-shadow: none;
}

.btn-inline {
    min-height: 42px;
    padding-inline: 1rem;
}

.btn-link {
    min-height: 44px;
    border: 0;
    background: transparent;
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
}

.btn-link:hover {
    color: var(--gold-1);
}

.section-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
}

.section-copy {
    max-width: 42rem;
    line-height: 1.6;
}

.featured-card,
.menu-card,
.category-tile,
.testimonial-card {
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.45));
    backdrop-filter: blur(8px);
}

.featured-card,
.menu-card {
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.featured-card:hover,
.menu-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 214, 112, 0.4);
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.35);
}

.card-media-shell {
    position: relative;
}

.menu-badge {
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(6, 8, 15, 0.78);
    padding: 0.4rem 0.7rem;
    color: #fff8db;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.menu-badge--hot {
    border-color: rgba(255, 214, 112, 0.35);
    background: rgba(255, 214, 112, 0.14);
}

.menu-badge--sale {
    border-color: rgba(251, 191, 36, 0.4);
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.92), rgba(234, 179, 8, 0.88));
    color: #fffdf5;
    box-shadow: 0 10px 28px rgba(234, 88, 12, 0.24);
}

.food-thumb {
    width: 100%;
    aspect-ratio: 1.2;
    object-fit: cover;
}

.food-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.78rem;
    color: #cbd5e1;
}

.price-tag {
    color: var(--gold-1);
    font-family: 'Sora', sans-serif;
    font-size: 1.06rem;
    font-weight: 700;
}

.price-stack {
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
}

.price-stack--compact {
    align-items: flex-end;
}

.price-tag-original {
    color: rgba(226, 232, 240, 0.68);
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: line-through;
}

.payment-total-stack {
    display: inline-flex;
    flex-direction: column;
    gap: 0.18rem;
    align-items: flex-end;
}

.payment-total-stack--inline {
    text-align: right;
}

.payment-total-original {
    color: rgba(226, 232, 240, 0.68);
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: line-through;
}

.metric-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 30px;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
    font-size: 0.72rem;
    font-weight: 700;
}

.metric-chip__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    color: #fde68a;
}

.metric-chip__icon svg {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.menu-card__header,
.menu-card__footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.85rem;
}

.menu-card__metrics {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.45rem;
}

.menu-card__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.5rem;
}

.category-tile {
    position: relative;
    overflow: hidden;
    padding: 1rem;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.category-tile:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 214, 112, 0.45);
}

.category-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(255, 214, 112, 0.16), transparent 60%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.category-tile:hover::after {
    opacity: 1;
}

.category-tile--rich {
    padding: 0;
}

.category-visual {
    width: 100%;
    aspect-ratio: 1.25;
    object-fit: cover;
}

.category-visual--empty {
    background: linear-gradient(135deg, rgba(255, 214, 112, 0.16), rgba(255, 255, 255, 0.04));
}

.category-copy {
    position: relative;
    z-index: 1;
    padding: 1rem;
}

.category-subchips {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.9rem;
}

.category-subchip {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.65rem;
    color: #e2e8f0;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.menu-subtitle {
    color: #fde68a;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.testimonial-card {
    padding: 1.2rem;
}

.offer-card,
.value-card {
    border-radius: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.48));
    backdrop-filter: blur(8px);
}

.offer-card {
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.offer-card:hover,
.value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 214, 112, 0.35);
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.32);
}

.offer-card__media {
    position: relative;
}

.offer-card__body {
    padding: 1.25rem;
}

.offer-card__badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border-radius: 999px;
    background: rgba(255, 214, 112, 0.14);
    border: 1px solid rgba(255, 214, 112, 0.2);
    padding: 0.4rem 0.8rem;
    color: #fff8db;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.offer-card__linked {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.offer-countdown-banner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 1rem;
    align-items: center;
    border-radius: 1.4rem;
    border: 1px solid rgba(251, 191, 36, 0.18);
    background:
        radial-gradient(circle at top left, rgba(251, 191, 36, 0.18), transparent 36%),
        linear-gradient(145deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.68));
    padding: 1.2rem;
}

.offer-countdown-copy {
    min-width: 0;
}

.offer-countdown-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0.3rem 0.72rem;
    border-radius: 999px;
    background: rgba(251, 191, 36, 0.14);
    border: 1px solid rgba(251, 191, 36, 0.22);
    color: #fff3c4;
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.offer-countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.7rem;
}

.countdown-unit {
    display: grid;
    gap: 0.22rem;
    justify-items: center;
    padding: 0.9rem 0.5rem;
    border-radius: 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
}

.countdown-unit__value {
    color: #fff8db;
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
}

.countdown-unit__label {
    color: #cbd5e1;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.countdown-message {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    padding: 1rem;
    border-radius: 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
}

.countdown-message__text {
    color: #fff8db;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.5;
}

.value-card {
    padding: 1.3rem;
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(255, 214, 112, 0.24);
    background: rgba(255, 214, 112, 0.1);
    color: #fde68a;
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
}

.testimonial-quote {
    margin: 0;
    color: #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.55;
}

.testimonial-author {
    margin-top: 0.9rem;
    color: var(--gold-1);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.support-shell {
    position: relative;
    overflow: hidden;
}

.support-shell::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 8% 18%, rgba(255, 214, 112, 0.13), transparent 28%),
        radial-gradient(circle at 88% 86%, rgba(22, 163, 74, 0.1), transparent 26%);
    pointer-events: none;
}

.support-header,
.support-layout {
    position: relative;
    z-index: 1;
}

.support-kicker {
    margin: 0;
    color: #fde68a;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.support-header-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    margin-top: 0.85rem;
}

.support-layout {
    display: grid;
    gap: 1.1rem;
}

.support-chat-hint {
    margin: 0.85rem 0 0;
    color: #cbd5e1;
    font-size: 0.86rem;
    line-height: 1.5;
}

.support-topic-list {
    display: grid;
    gap: 0.75rem;
}

.support-topic-btn {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 0.95rem 1rem;
    color: #fff;
    text-align: left;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.support-topic-btn:hover,
.support-topic-btn.active {
    border-color: rgba(255, 214, 112, 0.42);
    background: rgba(255, 214, 112, 0.09);
    transform: translateY(-1px);
}

.support-topic-title {
    display: block;
    font-weight: 700;
    color: #fff8db;
}

.support-topic-preview {
    display: block;
    margin-top: 0.4rem;
    color: #cbd5e1;
    font-size: 0.86rem;
    line-height: 1.45;
}

.support-chat-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.4rem;
    background: linear-gradient(160deg, rgba(10, 16, 30, 0.95), rgba(18, 27, 45, 0.93));
    padding: 1.1rem;
}

.support-chat-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    padding-bottom: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.support-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid rgba(134, 239, 172, 0.22);
    border-radius: 999px;
    background: rgba(134, 239, 172, 0.08);
    padding: 0.45rem 0.75rem;
    color: #bbf7d0;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.support-status-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: #4ade80;
    box-shadow: 0 0 0 0.2rem rgba(74, 222, 128, 0.12);
}

.support-admin-name {
    margin: 0;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.support-admin-status {
    margin: 0.32rem 0 0;
    color: #cbd5e1;
    font-size: 0.86rem;
}

.support-chat-thread {
    display: grid;
    gap: 0.9rem;
    padding-top: 1rem;
}

.support-chat-message {
    max-width: min(100%, 470px);
    border-radius: 1.2rem;
    padding: 0.95rem 1rem;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.support-chat-message.customer {
    justify-self: end;
    background: linear-gradient(135deg, rgba(255, 214, 112, 0.22), rgba(255, 214, 112, 0.08));
    border: 1px solid rgba(255, 214, 112, 0.22);
}

.support-chat-message.admin {
    justify-self: start;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.support-chat-message.note {
    max-width: min(100%, 100%);
    background: rgba(134, 239, 172, 0.08);
    border: 1px solid rgba(134, 239, 172, 0.16);
}

.support-chat-role {
    display: inline-flex;
    margin-bottom: 0.45rem;
    color: #fde68a;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.support-chat-message.admin .support-chat-role {
    color: #86efac;
}

.support-chat-meta {
    display: block;
    margin: -0.12rem 0 0.45rem;
    color: #94a3b8;
    font-size: 0.74rem;
    font-weight: 600;
}

.support-chat-text {
    margin: 0;
    color: #f8fafc;
    line-height: 1.6;
}

.whatsapp-float {
    position: fixed;
    right: max(1rem, calc(0.75rem + var(--safe-right)));
    bottom: max(5.8rem, calc(5rem + var(--safe-bottom)));
    z-index: 48;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 56px;
    border-radius: 999px;
    border: 1px solid rgba(74, 222, 128, 0.24);
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.96), rgba(21, 128, 61, 0.96));
    padding: 0.7rem 1rem;
    color: #f8fafc;
    text-decoration: none;
    box-shadow: 0 18px 32px rgba(21, 128, 61, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 36px rgba(21, 128, 61, 0.32);
}

.whatsapp-float__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.whatsapp-float__text {
    font-size: 0.9rem;
    font-weight: 700;
}

.support-chat-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.support-action-btn {
    min-height: 44px;
    border: 1px solid rgba(255, 214, 112, 0.28);
    border-radius: 0.95rem;
    background: rgba(255, 214, 112, 0.08);
    padding: 0.75rem 1rem;
    color: #fff8db;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.support-action-btn:hover {
    border-color: rgba(255, 214, 112, 0.45);
    background: rgba(255, 214, 112, 0.13);
}

.support-action-btn.subtle {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
}

.support-direct-card {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.4rem;
    background: linear-gradient(160deg, rgba(10, 16, 30, 0.88), rgba(18, 27, 45, 0.84));
    padding: 1.15rem;
}

.support-direct-header,
.support-direct-thread-head {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-between;
    gap: 0.9rem;
}

.support-thread-status,
.support-helper-text {
    margin: 0;
    color: #cbd5e1;
    font-size: 0.86rem;
    line-height: 1.55;
}

.support-direct-form {
    display: block;
}

.support-direct-thread {
    min-height: 160px;
}

.support-order-badge,
.support-admin-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border-radius: 999px;
    padding: 0.3rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.support-order-badge {
    border: 1px solid rgba(255, 214, 112, 0.3);
    background: rgba(255, 214, 112, 0.08);
    color: #fff8db;
}

.support-admin-badge {
    border: 1px solid rgba(248, 113, 113, 0.3);
    background: rgba(248, 113, 113, 0.1);
    color: #fecaca;
}

.admin-support-thread {
    max-height: 320px;
    overflow-y: auto;
    padding-right: 0.2rem;
}

.admin-support-reply {
    min-height: 96px;
}

.payment-steps {
    margin: 0;
    padding-left: 1.1rem;
    color: #e2e8f0;
    display: grid;
    gap: 0.5rem;
    line-height: 1.55;
}

.payment-steps li {
    padding: 0.8rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.03);
}

.delivery-fee-note {
    margin: 0;
    color: #cbd5e1;
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.55;
}

.input-premium {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 0.95rem;
    color: white;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea.input-premium {
    min-height: 110px;
    resize: vertical;
}

.input-premium::placeholder {
    color: #94a3b8;
}

.input-premium:focus {
    border-color: rgba(255, 214, 112, 0.6);
    box-shadow: 0 0 0 3px rgba(255, 214, 112, 0.15);
}

.label-premium {
    margin-bottom: 0.4rem;
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #94a3b8;
}

.checkout-layout {
    align-items: start;
}

.checkout-panel,
.checkout-summary-panel {
    position: relative;
    overflow: hidden;
}

.checkout-panel::after,
.checkout-summary-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 214, 112, 0.05), transparent 22%);
}

.payment-option-card {
    min-height: 56px;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.payment-option-card.active {
    border-color: rgba(255, 214, 112, 0.45);
    background: rgba(255, 214, 112, 0.1);
    transform: translateY(-1px);
}

.momo-panel {
    display: grid;
    gap: 0.9rem;
}

.momo-overview-card,
.momo-selected-card,
.manual-payment-device-note,
.manual-payment-card {
    border-radius: 1.15rem;
}

.momo-overview-card {
    border: 1px solid rgba(255, 214, 112, 0.18);
    background: linear-gradient(150deg, rgba(255, 214, 112, 0.12), rgba(22, 163, 74, 0.06));
    padding: 1rem;
}

.momo-overview-kicker {
    margin: 0;
    color: #fde68a;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.momo-overview-title {
    margin: 0.5rem 0 0;
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.4;
}

.momo-overview-text {
    margin: 0.45rem 0 0;
    color: #dbe4f0;
    font-size: 0.9rem;
    line-height: 1.55;
}

.momo-overview-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 0.95rem;
}

.momo-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(6, 10, 20, 0.3);
    padding: 0.35rem 0.8rem;
    color: #f8fafc;
    font-size: 0.78rem;
    font-weight: 700;
}

.momo-quick-grid {
    display: grid;
    gap: 0.75rem;
}

.momo-number-card {
    display: grid;
    gap: 0.35rem;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 0.95rem 1rem;
    text-align: left;
    color: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.momo-number-card:hover,
.momo-number-card.active {
    border-color: rgba(255, 214, 112, 0.4);
    background: rgba(255, 214, 112, 0.09);
    transform: translateY(-1px);
}

.momo-number-label {
    color: #e2e8f0;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.momo-number-meta {
    color: #94a3b8;
    font-size: 0.8rem;
}

.momo-selected-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 15, 30, 0.65);
    padding: 1rem;
}

.momo-selected-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.momo-selected-label {
    margin: 0;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
}

.momo-selected-number {
    margin: 0.7rem 0 0;
    color: #fde68a;
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.3rem, 4vw, 1.85rem);
    font-weight: 800;
    line-height: 1.2;
    word-break: break-word;
}

.momo-selected-help {
    margin: 0.45rem 0 0;
    color: #cbd5e1;
    font-size: 0.86rem;
    line-height: 1.55;
}

.manual-payment-sheet {
    max-height: calc(100dvh - 2rem - var(--safe-top) - var(--safe-bottom));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.manual-payment-device-note {
    margin-top: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    padding: 0.9rem 1rem;
    color: #dbe4f0;
    font-size: 0.86rem;
    line-height: 1.55;
}

.filter-chip {
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.5rem 0.95rem;
    color: #cbd5e1;
    font-size: 0.83rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-chip:hover,
.filter-chip.active {
    border-color: rgba(255, 214, 112, 0.45);
    background: rgba(255, 214, 112, 0.1);
    color: #fef08a;
}

.line-clamp-3 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.app-view {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.34s ease, transform 0.34s ease;
}

.app-view.is-active {
    opacity: 1;
    transform: translateY(0);
}

.hidden {
    display: none !important;
}

.floating-cart-btn {
    position: fixed;
    right: max(1rem, calc(0.75rem + var(--safe-right)));
    bottom: max(1rem, calc(0.75rem + var(--safe-bottom)));
    z-index: 52;
    display: none;
    align-items: center;
    gap: 0.7rem;
    border: 1px solid rgba(255, 214, 112, 0.35);
    border-radius: 1rem;
    background: rgba(6, 10, 20, 0.95);
    backdrop-filter: blur(12px);
    padding: 0.7rem 0.95rem;
    color: #fff;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease;
}

.floating-cart-btn.visible {
    display: flex;
}

.floating-cart-btn:hover {
    transform: translateY(-2px);
}

.floating-cart-icon {
    display: grid;
    height: 2rem;
    width: 2rem;
    place-items: center;
    border-radius: 0.75rem;
    background: rgba(255, 214, 112, 0.18);
    color: #ffe9a8;
}

.overlay {
    position: fixed;
    inset: 0;
    z-index: 58;
    background: rgba(2, 6, 23, 0.62);
    backdrop-filter: blur(4px);
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 60;
    display: flex;
    height: 100dvh;
    width: min(100%, 420px);
    flex-direction: column;
    transform: translateX(105%);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(8, 15, 30, 0.97);
    transition: transform 0.3s ease;
    -webkit-overflow-scrolling: touch;
}

.cart-drawer > header {
    padding-top: max(1.25rem, calc(1rem + var(--safe-top)));
}

.cart-drawer > footer {
    padding-bottom: max(1.25rem, calc(1rem + var(--safe-bottom)));
}

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

.icon-button {
    display: grid;
    height: 2.5rem;
    width: 2.5rem;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    color: #e2e8f0;
    cursor: pointer;
}

.icon-button:hover {
    border-color: rgba(255, 214, 112, 0.4);
    color: #fef08a;
}

.cart-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 0.75rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.03);
    padding: 0.6rem;
}

.cart-thumb {
    width: 72px;
    height: 72px;
    border-radius: 0.8rem;
    object-fit: cover;
}

.qty-stepper {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    background: rgba(255, 255, 255, 0.04);
    padding: 0.25rem 0.45rem;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
}

.qty-btn:hover {
    background: rgba(255, 214, 112, 0.3);
}

.product-modal {
    position: fixed;
    inset: 0;
    z-index: 64;
    display: grid;
    place-items: center;
    padding:
        max(1rem, calc(0.75rem + var(--safe-top)))
        max(1rem, calc(0.75rem + var(--safe-right)))
        max(1rem, calc(0.75rem + var(--safe-bottom)))
        max(1rem, calc(0.75rem + var(--safe-left)));
    background: rgba(2, 6, 23, 0.72);
    backdrop-filter: blur(4px);
}

.product-modal-content {
    position: relative;
    width: min(100%, 800px);
    max-height: calc(100dvh - 2rem - var(--safe-top) - var(--safe-bottom));
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.4rem;
    background: linear-gradient(160deg, rgba(10, 16, 30, 0.95), rgba(18, 27, 45, 0.93));
    -webkit-overflow-scrolling: touch;
}

.product-modal-close {
    position: absolute;
    right: 0.8rem;
    top: 0.8rem;
    z-index: 2;
}

.modal-image {
    width: 100%;
    aspect-ratio: 2.1;
    object-fit: cover;
}

.toast-host {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: max(1rem, calc(0.75rem + var(--safe-bottom)));
    z-index: 80;
    display: grid;
    gap: 0.6rem;
    justify-items: center;
}

.toast {
    width: min(100%, 410px);
    border-radius: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(8, 15, 30, 0.95);
    padding: 0.75rem 0.95rem;
    color: #f8fafc;
    font-size: 0.9rem;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.45);
    animation: toastIn 0.22s ease;
}

.toast.success {
    border-color: rgba(22, 163, 74, 0.45);
}

.toast.error {
    border-color: rgba(248, 113, 113, 0.45);
}

.order-card {
    position: relative;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.order-card-newest {
    border-color: rgba(251, 191, 36, 0.4) !important;
    background: linear-gradient(160deg, rgba(251, 191, 36, 0.1), rgba(255, 255, 255, 0.05));
    box-shadow: 0 18px 38px rgba(251, 191, 36, 0.14);
    animation: newestOrderPulse 1.8s ease 2;
}

.order-card-flag {
    display: inline-flex;
    margin-bottom: 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(251, 191, 36, 0.35);
    background: rgba(251, 191, 36, 0.12);
    padding: 0.2rem 0.7rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fef3c7;
}

.skeleton-card {
    min-height: 285px;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.skeleton-card::before {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.11), transparent);
    animation: shimmer 1.1s infinite;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

body,
header,
main,
footer,
.cart-drawer,
.product-modal > div {
    transition: opacity 0.24s ease, transform 0.24s ease;
}

body.language-transitioning header,
body.language-transitioning main,
body.language-transitioning footer,
body.language-transitioning .cart-drawer,
body.language-transitioning .product-modal > div {
    opacity: 0.94;
}

[dir='rtl'] body {
    font-family: 'Tajawal', 'Manrope', sans-serif;
}

[dir='rtl'] .font-display,
[dir='rtl'] .nav-link,
[dir='rtl'] .language-btn,
[dir='rtl'] .btn-premium,
[dir='rtl'] .btn-outline {
    font-family: 'Tajawal', 'Manrope', sans-serif !important;
    letter-spacing: 0;
}

[dir='rtl'] .label-premium,
[dir='rtl'] .menu-subtitle,
[dir='rtl'] .testimonial-author,
[dir='rtl'] .support-chat-role {
    letter-spacing: 0.06em;
}

[dir='rtl'] main,
[dir='rtl'] .cart-drawer,
[dir='rtl'] .product-modal-content,
[dir='rtl'] .mobile-nav-link {
    text-align: right;
}

[dir='rtl'] .cart-drawer {
    right: auto;
    left: 0;
    transform: translateX(-105%);
    border-left: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

[dir='rtl'] .cart-drawer.open {
    transform: translateX(0);
}

[dir='rtl'] .product-modal-close {
    right: auto;
    left: 0.8rem;
}

[dir='rtl'] .mobile-nav-link {
    text-align: right;
}

[dir='rtl'] .floating-cart-btn {
    right: auto;
    left: max(1rem, calc(0.75rem + var(--safe-left)));
}

[dir='rtl'] .hero-badge.top-5.left-5 {
    left: auto;
    right: 1.25rem;
}

[dir='rtl'] .hero-badge.bottom-5.right-5 {
    right: auto;
    left: 1.25rem;
}

[dir='rtl'] #menuSearch {
    padding-left: 0.95rem !important;
    padding-right: 2.75rem !important;
}

[dir='rtl'] #menuSearch + svg {
    left: auto;
    right: 1rem;
}

[dir='rtl'] .food-meta,
[dir='rtl'] .qty-stepper,
[dir='rtl'] .language-switch {
    direction: rtl;
}

[dir='rtl'] .brand-heading {
    letter-spacing: 0.1em;
}

[dir='rtl'] .momo-number-card,
[dir='rtl'] .support-action-btn,
[dir='rtl'] .support-topic-btn {
    text-align: right;
}

[dir='rtl'] .momo-selected-top,
[dir='rtl'] .support-chat-actions {
    direction: rtl;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes newestOrderPulse {
    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 18px 38px rgba(251, 191, 36, 0.14);
    }

    50% {
        transform: translateY(-2px);
        box-shadow: 0 24px 44px rgba(251, 191, 36, 0.2);
    }
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

@keyframes heroFloat {
    0%,
    100% {
        transform: scale(1.04) translateY(0);
    }

    50% {
        transform: scale(1.06) translateY(-5px);
    }
}

@keyframes splashZoom {
    0% {
        transform: scale(1.08);
        opacity: 0.85;
    }

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

@keyframes splashLogoPulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 18px 35px rgba(0, 0, 0, 0.45);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 20px 40px rgba(255, 214, 112, 0.2);
    }
}

@keyframes splashTextIn {
    from {
        transform: translateY(12px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (min-width: 960px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
        align-items: center;
    }

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

    .support-layout {
        grid-template-columns: minmax(260px, 0.44fr) minmax(0, 0.56fr);
        align-items: start;
    }

    .toast-host {
        left: auto;
        right: 1rem;
        justify-items: end;
    }
}

@media (min-width: 640px) {
    .momo-quick-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    body {
        padding-bottom: max(1rem, calc(0.75rem + var(--safe-bottom)));
    }

    main {
        padding-left: max(1rem, calc(0.75rem + var(--safe-left))) !important;
        padding-right: max(1rem, calc(0.75rem + var(--safe-right))) !important;
        padding-bottom: calc(7.25rem + var(--safe-bottom)) !important;
    }

    .hero-grid {
        gap: 1.5rem;
        padding: 1.2rem !important;
    }

    .hero-visual {
        min-height: 250px;
    }

    .hero-support-copy {
        max-width: 100%;
    }

    .hero-trust-row,
    .section-heading,
    .offer-card__linked {
        align-items: stretch;
    }

    .offer-countdown-banner {
        grid-template-columns: 1fr;
    }

    .menu-card__header,
    .menu-card__footer {
        flex-direction: column;
        align-items: stretch;
    }

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

    .menu-card__metrics,
    .menu-card__actions {
        justify-content: flex-start;
    }

    .menu-card__actions .btn-outline,
    .menu-card__actions .btn-premium {
        flex: 1 1 0;
        min-width: 0;
        padding-inline: 0.8rem;
    }

    .metric-chip {
        min-height: 28px;
        padding: 0.3rem 0.55rem;
        font-size: 0.68rem;
    }

    .hero-trust-pill,
    .hero-inline-link,
    .section-heading .btn-link {
        width: 100%;
    }

    .hero-inline-link {
        text-align: left;
    }

    .brand-heading {
        font-size: 0.96rem;
        letter-spacing: 0.12em;
    }

    .support-header-row {
        align-items: stretch;
    }

    .support-header-row .btn-outline,
    .support-call-btn {
        width: 100%;
    }

    .support-status-pill,
    .support-action-btn {
        width: 100%;
        justify-content: center;
    }

    .support-direct-header,
    .support-direct-thread-head {
        align-items: stretch;
    }

    .support-thread-status,
    .support-order-badge,
    .support-admin-badge {
        width: 100%;
        justify-content: center;
    }

    .support-direct-header .btn-outline {
        width: 100%;
    }

    .support-topic-list {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(220px, 80%);
        overflow-x: auto;
        padding-bottom: 0.35rem;
        scroll-snap-type: x proximity;
    }

    .support-topic-btn {
        scroll-snap-align: start;
    }

    .cart-item {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .cart-thumb {
        width: 64px;
        height: 64px;
    }

    .cart-item > :last-child {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding-top: 0.25rem;
    }

    .floating-cart-btn {
        left: max(1rem, calc(0.75rem + var(--safe-left)));
        right: max(1rem, calc(0.75rem + var(--safe-right)));
        justify-content: center;
    }

    [dir='rtl'] .floating-cart-btn {
        left: max(1rem, calc(0.75rem + var(--safe-left)));
        right: max(1rem, calc(0.75rem + var(--safe-right)));
    }

    .product-modal-content {
        width: 100%;
        border-radius: 1.1rem;
    }

    .product-modal {
        align-items: end;
        padding-inline: 0;
        padding-bottom: 0;
    }

    .product-modal > div,
    .product-modal-content {
        width: 100%;
        max-height: min(88dvh, 820px);
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .manual-payment-sheet {
        max-height: min(92dvh, 960px);
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .hero-main-image {
        min-height: 250px;
    }

    .hero-badge {
        max-width: calc(100% - 1.5rem);
        padding: 0.55rem 0.7rem;
    }

    .toast {
        width: 100%;
    }

    .momo-selected-top {
        align-items: stretch;
    }

    .momo-selected-top .btn-outline,
    .support-chat-actions .support-action-btn {
        width: 100%;
    }

    .whatsapp-float {
        right: max(0.85rem, calc(0.75rem + var(--safe-right)));
        bottom: max(5.2rem, calc(4.6rem + var(--safe-bottom)));
        padding-inline: 0.85rem;
    }

    .whatsapp-float__text {
        font-size: 0.82rem;
    }
}

@media (max-width: 480px) {
    .splash-logo {
        width: 78px;
        height: 78px;
    }

    .splash-title {
        font-size: clamp(1.2rem, 7vw, 1.65rem);
    }

    .hero-visual {
        min-height: 220px;
    }

    .hero-main-image {
        min-height: 220px;
    }

    .mobile-top-action {
        padding-inline: 0.8rem;
        font-size: 0.84rem;
    }

    .language-btn {
        min-width: 40px;
    }

    .btn-premium,
    .btn-outline {
        width: 100%;
    }

    .momo-overview-title {
        font-size: 1rem;
    }

    .momo-selected-number {
        font-size: 1.15rem;
    }

    .whatsapp-float {
        left: auto;
        min-height: 52px;
    }

    .support-chat-card,
    .support-shell,
    .offer-card,
    .offer-countdown-banner,
    .value-card,
    .featured-card,
    .menu-card,
    .category-tile,
    .testimonial-card {
        border-radius: 1.1rem;
    }

    .offer-countdown-banner {
        padding: 1rem;
    }

    .countdown-unit {
        padding: 0.75rem 0.4rem;
    }

    .countdown-unit__value {
        font-size: 1.15rem;
    }
}

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