:root {
    --primary: #e4002b;
    --primary-dark: #b90020;
    --accent: #ffb400;
    --ink: #0b0b0b;
    --text: #1b1b1d;
    --muted: #6b717a;
    --line: #e8ebef;
    --paper: #ffffff;
    --soft: #f5f7fa;
    --shadow: 0 18px 48px rgba(11, 11, 11, .12);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--paper);
    font-family: "Segoe UI", Arial, "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 1.55;
}

body.modal-open {
    overflow: hidden;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: var(--ink);
    font-family: "Segoe UI", Arial, "Helvetica Neue", sans-serif;
    font-weight: 750;
    line-height: 1.08;
    letter-spacing: 0;
    text-transform: uppercase;
}

p {
    margin: 0;
    color: var(--muted);
}

[hidden] {
    display: none !important;
}

.site-shell {
    min-height: 100vh;
    overflow-x: clip;
}

.container {
    width: min(100% - 34px, 1120px);
    max-width: 1120px;
    margin-inline: auto;
}

#spinner {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: var(--paper);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility 0s linear .25s;
}

#spinner.show {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

#spinner:not(.show) {
    display: none;
}

.loader-ring {
    width: 46px;
    height: 46px;
    border: 4px solid var(--line);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin .75s linear infinite;
}

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

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 12px 22px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 750;
    text-transform: uppercase;
    transform: translateZ(0);
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}

.btn::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .34) 42%, transparent 64%);
    transform: translateX(-115%);
    transition: transform .55s ease;
}

.btn span,
.btn svg {
    position: relative;
    z-index: 1;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px) scale(1.015);
}

.btn:hover::before,
.btn:focus-visible::before {
    transform: translateX(115%);
}

.btn-icon {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.btn-primary,
.btn.btn-primary {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 12px 26px rgba(228, 0, 43, .24);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn.btn-primary:hover,
.btn.btn-primary:focus-visible {
    color: #fff;
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 16px 32px rgba(228, 0, 43, .32);
}

.btn-wide {
    width: min(100%, 440px);
}

.btn-small {
    min-height: 36px;
    padding: 9px 15px;
    font-size: 11px;
}

.btn-light {
    color: var(--ink);
    background: #fff;
    border-color: #fff;
}

.btn-outline-dark {
    color: var(--ink);
    background: transparent;
    border-color: var(--ink);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus-visible {
    color: #fff;
    background: var(--ink);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(229, 233, 238, .9);
    box-shadow: 0 10px 30px rgba(10, 10, 10, .06);
    backdrop-filter: blur(18px);
}

.raa-nav {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(280px, 1fr) auto;
    gap: 22px;
    align-items: center;
    width: min(100% - 28px, 1220px);
    min-height: 76px;
    margin: 0 auto;
}

.nav-left,
.nav-actions,
.service-switch,
.navbar-nav {
    display: flex;
    align-items: center;
}

.nav-left {
    gap: 18px;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.brand-logo img {
    width: auto;
    height: clamp(34px, 4.2vw, 44px);
    max-width: min(210px, 34vw);
    object-fit: contain;
}

.brand-raa {
    color: var(--primary);
    font-family: Impact, "Arial Black", sans-serif;
    font-size: 39px;
    font-weight: 900;
    line-height: 1;
}

.brand-bites {
    color: var(--ink);
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
}

.navbar-toggler {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    background: transparent;
}

.navbar-toggler span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 3px 0;
    background: var(--ink);
    transition: transform .2s ease, opacity .2s ease;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.service-switch {
    gap: 10px;
    justify-self: start;
}

.service-pill {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    min-height: 42px;
    padding: 7px 16px;
    color: var(--ink);
    background: #f7f8fa;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 750;
    text-transform: uppercase;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .03);
}

.service-pill.active,
.service-pill:hover,
.service-pill:focus-visible {
    color: var(--primary);
    background: #fff;
    border-color: rgba(228, 0, 43, .45);
}

.service-icon {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    color: var(--primary);
    background: #fff;
    border: 1px solid rgba(228, 0, 43, .18);
    border-radius: 6px;
}

.service-icon svg,
.login-order svg,
.nav-link-icon svg,
.quick-add svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.navbar-collapse {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 1004;
    display: block;
    width: min(290px, calc(100vw - 30px));
    max-height: 0;
    padding: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, .98);
    border: 0 solid transparent;
    border-radius: 12px;
    box-shadow: 0 22px 55px rgba(0, 0, 0, .16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(.98);
    transform-origin: top left;
    transition: max-height .26s ease, padding .26s ease, opacity .2s ease, transform .24s ease, visibility .2s ease, border-color .2s ease;
}

.navbar-collapse.show {
    max-height: 360px;
    padding: 12px;
    border-width: 1px;
    border-color: var(--line);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.navbar-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
}

.nav-link {
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
    min-height: 44px;
    padding: 10px 12px;
    color: #3d424a;
    font-size: 13px;
    font-weight: 750;
    text-transform: uppercase;
    border-radius: 9px;
}

.nav-link:hover,
.nav-link.active,
.nav-link:focus-visible {
    color: var(--primary);
    background: #fff0f3;
}

.nav-link.active::after {
    display: none;
}

.nav-link-icon {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    color: var(--primary);
    background: #fff;
    border: 1px solid rgba(228, 0, 43, .14);
    border-radius: 8px;
}

.nav-actions {
    gap: 14px;
}

.cart-button {
    position: relative;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: var(--ink);
    background: #fff;
    border: 0;
    border-radius: 50%;
}

.cart-button svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cart-count {
    position: absolute;
    top: 1px;
    right: 0;
    display: grid;
    place-items: center;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    color: #fff;
    background: var(--primary);
    border: 2px solid #fff;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 750;
}

.login-order {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    color: #fff;
    background: var(--primary);
    border-radius: 5px;
    font-size: 12px;
    font-weight: 750;
    text-transform: uppercase;
}

.login-order span {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 50%;
}

.cart-panel {
    position: fixed;
    top: 86px;
    right: max(18px, calc((100vw - 1220px) / 2));
    z-index: 1002;
    width: min(390px, calc(100vw - 28px));
    max-height: calc(100vh - 110px);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .22);
}

.cart-panel-head,
.cart-panel-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px;
}

.cart-panel-head {
    border-bottom: 1px solid var(--line);
}

.cart-panel-head h2 {
    font-size: 24px;
}

.cart-panel-head button,
.modal-close,
.cart-item-remove {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    color: var(--ink);
    background: #f0f2f5;
    font-size: 22px;
    line-height: 1;
}

.cart-panel-body {
    display: grid;
    gap: 12px;
    max-height: 410px;
    overflow: auto;
    padding: 16px 18px;
}

.cart-empty {
    padding: 22px;
    text-align: center;
    background: var(--soft);
    border-radius: var(--radius);
}

.cart-item {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.cart-item img {
    width: 74px;
    height: 62px;
    object-fit: cover;
    border-radius: 6px;
}

.cart-item h3 {
    font-family: "Segoe UI", Arial, "Helvetica Neue", sans-serif;
    font-size: 14px;
    line-height: 1.2;
    text-transform: none;
}

.cart-addons {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.35;
}

.cart-item p {
    margin-top: 4px;
    font-size: 12px;
    color: var(--primary);
    font-weight: 800;
}

.cart-qty {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
}

.cart-qty button {
    width: 25px;
    height: 25px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    font-weight: 750;
}

.cart-panel-foot {
    border-top: 1px solid var(--line);
    background: var(--soft);
}

.cart-panel-foot span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
    text-transform: uppercase;
}

.cart-panel-foot strong {
    display: block;
    color: var(--ink);
    font-size: 22px;
}

.hero-section {
    background: #070707;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: clamp(170px, 42.85vw, 620px);
    overflow: hidden;
    background: #050505;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.035);
    transition: opacity .65s ease, transform 4.3s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: #050505;
}

.hero-hotspot,
.rewards-hotspot {
    position: absolute;
    z-index: 5;
    border: 0;
    color: transparent;
    background: transparent;
}

.hero-hotspot {
    left: 6.4%;
    bottom: 14%;
    width: 220px;
    height: 76px;
}

.hero-hotspot:focus-visible,
.rewards-hotspot:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    color: #fff;
    background: rgba(255, 255, 255, .18);
    border: 0;
    border-radius: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
    transition: background .2s ease, transform .2s ease;
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
    background: rgba(228, 0, 43, .9);
    transform: translateY(-50%) scale(1.04);
}

.slider-arrow svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.slider-prev {
    left: 22px;
}

.slider-next {
    right: 22px;
}

.slider-dots {
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    z-index: 11;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.slider-dots button {
    width: 13px;
    height: 13px;
    padding: 0;
    background: rgba(255, 255, 255, .75);
    border: 2px solid rgba(255, 255, 255, .9);
    border-radius: 50%;
    transition: transform .2s ease, background .2s ease;
}

.slider-dots button.active {
    background: var(--primary);
    transform: scale(1.1);
}

.quick-order {
    display: flex;
    justify-content: center;
    padding: 24px 18px 22px;
    background: #fff;
}

.section-block {
    padding: 28px 0;
}

.rewards-section {
    padding: 4px 0 18px;
    background: #fff;
}

.rewards-card {
    position: relative;
    overflow: hidden;
    height: clamp(235px, 27vw, 400px);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.rewards-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: #080101;
}

.rewards-hotspot {
    left: 7%;
    top: 44%;
    width: 225px;
    height: 82px;
}

.section-title-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 20px;
}

.section-title-row h1,
.section-title-row h2 {
    font-size: clamp(27px, 3.4vw, 34px);
    font-weight: 750;
}

.section-title-row.compact {
    margin-bottom: 16px;
}

.text-action {
    position: relative;
    padding: 4px 0 8px;
    color: var(--primary);
    background: transparent;
    border: 0;
    font-size: 13px;
    font-weight: 750;
    text-transform: uppercase;
}

.text-action::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    content: "";
    background: var(--primary);
}

.category-row {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px;
}

.category-card {
    display: grid;
    justify-items: center;
    gap: 12px;
    min-width: 0;
    padding: 0;
    color: var(--ink);
    background: transparent;
    border: 0;
    font-size: 13px;
    font-weight: 750;
}

.category-image {
    display: block;
    width: min(100%, 126px);
    aspect-ratio: 1;
    padding: 6px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 50%;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.category-card::after {
    width: 30px;
    height: 3px;
    content: "";
    background: var(--primary);
    border-radius: 999px;
    transform: scaleX(.74);
    transition: transform .2s ease;
}

.category-card.active .category-image,
.category-card:hover .category-image,
.category-card:focus-visible .category-image {
    border-color: rgba(228, 0, 43, .55);
    box-shadow: 0 15px 32px rgba(228, 0, 43, .13);
    transform: translateY(-3px);
}

.category-card.active::after,
.category-card:hover::after,
.category-card:focus-visible::after {
    transform: scaleX(1);
}

.seller-grid,
.deal-grid {
    display: grid;
    gap: 24px;
    perspective: 1200px;
}

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

.seller-card,
.deal-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 16px 36px rgba(11, 11, 11, .08);
    transform-style: preserve-3d;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.seller-card::before,
.deal-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 4;
    width: 64px;
    height: 30px;
    background:
        linear-gradient(var(--primary), var(--primary)) 0 0 / 12px 30px no-repeat,
        linear-gradient(var(--primary), var(--primary)) 26px 0 / 12px 30px no-repeat,
        linear-gradient(var(--primary), var(--primary)) 52px 0 / 12px 30px no-repeat;
    transform: translateX(-50%);
    animation: cardBarsFloat 2.8s ease-in-out infinite;
}

@keyframes cardBarsFloat {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

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

.seller-card:hover,
.deal-card:hover {
    border-color: rgba(228, 0, 43, .22);
    box-shadow: 0 26px 58px rgba(228, 0, 43, .16);
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
}

.seller-card[hidden],
.deal-card[hidden] {
    display: none;
}

.card-click-area {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: transparent;
    border: 0;
}

.seller-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
    min-height: 66px;
    padding: 46px 18px 0;
    pointer-events: none;
}

.seller-head h3,
.deal-body h3 {
    font-family: "Segoe UI", Arial, "Helvetica Neue", sans-serif;
    font-size: 15px;
    font-weight: 750;
    line-height: 1.25;
    text-transform: none;
}

.seller-head strong {
    flex: 0 0 auto;
    padding: 8px 10px;
    color: #fff;
    background: var(--primary);
    border-radius: 0 0 0 12px;
    font-size: 12px;
    font-weight: 750;
    line-height: 1;
}

.seller-image {
    height: 178px;
    margin: 0 12px 12px;
    overflow: hidden;
    border-radius: 7px;
    transform: translateZ(14px);
    pointer-events: none;
}

.seller-image img,
.deal-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .45s ease;
}

.seller-card:hover img,
.deal-card:hover img {
    transform: scale(1.06);
}

.quick-add {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 3;
    min-height: 34px;
    padding: 0 13px;
    color: #fff;
    background: var(--primary);
    border: 0;
    border-radius: 6px;
    font-size: 11px;
    display: inline-flex;
    gap: 6px;
    align-items: center;
    font-weight: 750;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease;
}

.seller-card:hover .quick-add,
.seller-card:focus-within .quick-add {
    opacity: 1;
    transform: translateY(0);
}

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

.deal-card {
    min-height: 420px;
}

.wish-button {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: var(--primary);
    background: #fff;
    border: 1px solid rgba(228, 0, 43, .22);
    border-radius: 50%;
    font-size: 19px;
    line-height: 1;
    transition: transform .2s ease, color .2s ease, background .2s ease, box-shadow .2s ease;
    animation: heartSoftPulse 2.9s ease-in-out infinite;
}

.wish-button:hover,
.wish-button:focus-visible {
    box-shadow: 0 10px 24px rgba(228, 0, 43, .16);
    transform: translateY(-2px) scale(1.06);
}

.wish-button.active {
    color: #fff;
    background: var(--primary);
    animation: heartPop .38s ease both;
}

.seller-wish {
    top: 14px;
    right: 14px;
}

@keyframes heartSoftPulse {
    0%,
    100% {
        transform: scale(1);
    }

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

@keyframes heartPop {
    0% {
        transform: scale(.9);
    }

    70% {
        transform: scale(1.18);
    }

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

.deal-media {
    display: block;
    width: 100%;
    height: 178px;
    padding: 0;
    overflow: hidden;
    background: #fff;
    border: 0;
}

.deal-body {
    display: grid;
    gap: 8px;
    padding: 15px 16px 17px;
}

.deal-body strong {
    color: var(--ink);
    font-size: 15px;
    font-weight: 750;
}

.product-bullets {
    display: grid;
    gap: 6px;
    min-height: 58px;
    margin: 0;
    padding: 0;
    color: #323744;
    font-size: 12px;
    line-height: 1.35;
    list-style: none;
}

.product-bullets li {
    position: relative;
    display: -webkit-box;
    overflow: hidden;
    padding-left: 12px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-bullets li::before {
    content: "";
    position: absolute;
    top: .6em;
    left: 0;
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(228, 0, 43, .08);
}

.seller-bullets {
    position: relative;
    z-index: 2;
    min-height: 64px;
    margin: 0 18px 58px;
    pointer-events: none;
}

.promo-section {
    padding-bottom: 38px;
}

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

.promo-tile {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 2.08;
    background: #111;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.promo-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .5s ease;
}

.promo-tile:hover img,
.promo-tile:focus-visible img {
    transform: scale(1.04);
}

.product-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: 22px;
    isolation: isolate;
}

.product-modal-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(6, 6, 6, .74);
    border: 0;
    backdrop-filter: blur(8px);
    opacity: 1;
}

.modal-card {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(340px, 1.05fr) minmax(320px, .95fr);
    width: min(1080px, 100%);
    max-height: min(calc(100vh - 80px), 650px);
    overflow: hidden;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 30px 110px rgba(0, 0, 0, .42);
    transform-style: preserve-3d;
    animation: modalUp .24s ease both;
}

.modal-stripes {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 5;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.modal-stripes span {
    width: 16px;
    height: 30px;
    background: var(--primary);
}

@keyframes modalUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 4;
    background: var(--primary);
    color: #fff;
    border-radius: 8px;
}

.modal-options {
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 58px 28px 28px;
    background: #f2f3f5;
    border-right: 1px solid #dfe3e8;
    overflow: auto;
}

.option-panel {
    overflow: hidden;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .05);
}

.option-panel-head {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-height: 58px;
    padding: 0 16px;
    color: #fff;
    background: var(--primary);
    border: 0;
    font-size: 18px;
    font-weight: 750;
    text-align: left;
}

.option-panel-head small {
    margin-left: auto;
    font-size: 13px;
    font-weight: 650;
}

.option-caret {
    width: 0;
    height: 0;
    margin-left: 4px;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-top: 6px solid #fff;
    transition: transform .2s ease;
}

.option-panel.open .option-caret {
    transform: rotate(180deg);
}

.option-panel-body {
    display: none;
    padding: 12px;
    background: #eef1f5;
}

.option-panel.open .option-panel-body {
    display: grid;
    gap: 8px;
}

.base-option,
.addon-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    width: 100%;
    min-height: 56px;
    padding: 10px 12px;
    color: var(--ink);
    background: #fff;
    border: 1px solid transparent;
    border-radius: 8px;
}

.base-option input {
    accent-color: var(--primary);
}

.base-option strong {
    color: var(--ink);
    font-size: 13px;
}

.addon-row {
    border: 1px solid #e1e5eb;
    text-align: left;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.addon-row:hover,
.addon-row.active {
    border-color: rgba(228, 0, 43, .35);
    box-shadow: 0 12px 24px rgba(228, 0, 43, .11);
    transform: translateY(-2px);
}

.addon-icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: var(--primary);
    background: #fff2f4;
    border-radius: 8px;
}

.addon-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.addon-copy {
    display: grid;
}

.addon-copy strong {
    color: var(--ink);
    font-size: 15px;
    font-weight: 700;
}

.addon-copy small {
    color: var(--muted);
    font-size: 12px;
}

.addon-add {
    min-width: 64px;
    padding: 9px 12px;
    color: #fff;
    text-align: center;
    background: var(--primary);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 750;
}

.product-modal-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    padding: 70px 32px 24px;
    background: #fff;
    text-align: center;
}

.modal-product-shot {
    display: grid;
    place-items: center;
    width: min(100%, 270px);
    height: 150px;
    margin-bottom: 0;
}

.modal-product-shot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 24px rgba(0, 0, 0, .18));
}

.modal-tag {
    width: fit-content;
    padding: 7px 10px;
    color: #fff;
    background: var(--primary);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 750;
    text-transform: uppercase;
}

.product-modal-content h2 {
    font-size: clamp(27px, 3.4vw, 38px);
    font-weight: 750;
    line-height: 1.1;
    text-transform: none;
}

.product-modal-content p:not(.modal-tag) {
    max-width: 360px;
    color: #242934;
    font-size: 14px;
    line-height: 1.45;
}

.product-modal-content strong {
    color: var(--primary);
    font-size: 24px;
    font-weight: 750;
}

.quantity-control {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    overflow: hidden;
    border: 0;
    gap: 12px;
    border-radius: 8px;
}

.quantity-control button {
    width: 38px;
    height: 38px;
    background: #fff;
    border: 2px solid var(--primary);
    border-radius: 6px;
    font-size: 20px;
    font-weight: 750;
}

.quantity-control span {
    display: grid;
    place-items: center;
    min-width: 48px;
    color: var(--ink);
    font-weight: 750;
}

.product-modal-content [data-modal-add] {
    width: min(100%, 360px);
    min-height: 54px;
    justify-content: space-between;
    padding-inline: 18px;
    border-radius: 9px;
    box-shadow: 0 16px 38px rgba(228, 0, 43, .24);
}

.product-modal-content [data-modal-add] strong {
    color: #fff;
    font-size: 18px;
}

.toast-stack {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 3000;
    display: grid;
    gap: 10px;
    width: min(360px, calc(100vw - 32px));
}

.toast {
    padding: 14px 16px;
    color: #fff;
    background: var(--ink);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
    font-size: 14px;
    font-weight: 800;
    animation: toastIn .22s ease both;
}

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

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

.page-hero {
    padding: 76px 0;
    background: var(--soft);
    border-bottom: 1px solid var(--line);
}

.compact-hero .container {
    max-width: 850px;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(42px, 7vw, 74px);
}

.page-hero p {
    max-width: 660px;
    margin: 18px auto 0;
    font-size: 17px;
}

.section-pad {
    padding: 72px 0;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 30px;
    text-align: center;
}

.section-heading.left {
    margin-left: 0;
    text-align: left;
}

.section-label {
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 750;
    text-transform: uppercase;
}

.section-copy h2,
.section-heading h2,
.booking-band h2,
.booking-panel h2 {
    font-size: clamp(34px, 5vw, 52px);
}

.feature-strip,
.light-section {
    background: var(--soft);
}

.feature-grid,
.team-grid,
.contact-grid,
.footer-grid {
    display: grid;
    gap: 20px;
}

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

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

.contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 28px;
}

.feature-card,
.contact-card,
.team-card,
.booking-panel,
.booking-note,
.map-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.feature-card,
.contact-card,
.booking-panel {
    padding: 28px;
}

.menu-category + .menu-category {
    margin-top: 50px;
}

.menu-list {
    display: grid;
    gap: 14px;
}

.menu-row {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.menu-row img {
    width: 100px;
    height: 78px;
    object-fit: cover;
    border-radius: 7px;
}

.menu-row h3,
.contact-card h2,
.team-card h2,
.feature-card h2 {
    font-family: Arial, "Helvetica Neue", sans-serif;
    font-size: 19px;
    line-height: 1.2;
    text-transform: none;
}

.menu-row p {
    margin-top: 5px;
    font-size: 14px;
}

.menu-row strong {
    color: var(--primary);
    font-size: 18px;
}

.booking-layout,
.contact-layout,
.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
    gap: 28px;
    align-items: start;
}

.demo-form {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

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

.demo-form label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 750;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.demo-form textarea {
    resize: vertical;
}

.booking-note {
    overflow: hidden;
}

.booking-note img,
.team-card img {
    width: 100%;
    object-fit: cover;
}

.booking-note img {
    aspect-ratio: 4 / 3;
}

.booking-note h3,
.booking-note p,
.team-card div {
    margin: 22px;
}

.map-panel {
    min-height: 360px;
    padding: 30px;
    background:
        linear-gradient(135deg, rgba(10, 10, 10, .84), rgba(185, 0, 32, .82)),
        url("../img/raa-bites/slider-2.png") center / cover;
}

.map-panel h2,
.map-panel p {
    color: #fff;
}

.site-footer {
    padding: 54px 0 26px;
    color: #cbd1d8;
    background: #020202;
}

.site-footer p,
.site-footer a,
.site-footer h3 {
    color: #cbd1d8;
}

.footer-grid {
    grid-template-columns: 1.5fr .8fr .85fr .9fr 1.15fr;
    align-items: start;
}

.footer-logo {
    margin-bottom: 14px;
}

.footer-logo img {
    width: auto;
    height: 52px;
    max-width: min(100%, 230px);
    filter: brightness(1.08);
}

.footer-logo .brand-raa,
.footer-logo .brand-bites {
    color: #fff;
}

.footer-logo .brand-raa {
    color: var(--primary);
}

.footer-brand-block p {
    color: #fff;
    font-size: 14px;
}

.social-row {
    display: flex;
    gap: 14px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.social-row a {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #1b2430;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.social-row a:hover,
.social-row a:focus-visible {
    transform: translateY(-2px);
}

.social-row a[aria-label="YouTube"] {
    color: #ff0033;
}

.social-row a[aria-label="Instagram"] {
    color: #0b0b0b;
}

.social-row a[aria-label="Facebook"] {
    color: #4267b2;
}

.social-row svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.social-row a[aria-label="YouTube"] svg,
.social-row a[aria-label="Facebook"] svg {
    fill: currentColor;
    stroke: currentColor;
}

.social-row a[aria-label="YouTube"] svg path:last-child {
    fill: #fff;
    stroke: #fff;
}

.site-footer h3 {
    margin-bottom: 14px;
    font-family: "Segoe UI", Arial, "Helvetica Neue", sans-serif;
    font-size: 12px;
    font-weight: 750;
    text-transform: uppercase;
}

.site-footer a {
    display: block;
    margin-bottom: 9px;
    font-size: 13px;
}

.store-badge {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 178px;
    min-height: 54px;
    margin-bottom: 12px;
    padding: 8px 13px;
    color: #fff;
    text-align: left;
    background: #050505;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 8px;
    font-size: 10px;
    line-height: 1.1;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .24);
    transition: transform .2s ease, border-color .2s ease;
}

.store-badge:hover,
.store-badge:focus-visible {
    border-color: rgba(255, 255, 255, .6);
    transform: translateY(-2px);
}

.store-badge svg {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 0;
}

.store-google svg path:nth-child(1) {
    fill: #34a853;
}

.store-google svg path:nth-child(2) {
    fill: #fbbc05;
}

.store-google svg path:nth-child(3) {
    fill: none;
    stroke: #4285f4;
    stroke-width: 2.4;
}

.store-google svg path:nth-child(4) {
    fill: none;
    stroke: #ea4335;
    stroke-width: 2.4;
}

.store-badge span {
    display: grid;
    gap: 2px;
}

.store-badge strong {
    display: block;
    color: #fff;
    font-size: 18px;
    line-height: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-bottom p {
    font-size: 12px;
}

.agency-credit {
    display: inline;
    color: #fff;
    font-weight: 750;
    border-bottom: 1px solid rgba(255, 255, 255, .35);
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 998;
    display: none;
    place-items: center;
    width: 44px;
    height: 44px;
    color: #fff;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 14px 32px rgba(228, 0, 43, .25);
}

.back-to-top.show {
    display: grid;
}

@media (max-width: 1160px) {
    .raa-nav {
        grid-template-columns: auto 1fr auto;
    }

    .navbar-collapse {
        width: min(290px, calc(100vw - 30px));
    }

    .navbar-collapse.show {
        max-height: 360px;
        padding: 12px;
    }

    .navbar-nav {
        justify-content: flex-start;
    }

    .nav-actions {
        justify-self: end;
    }
}

@media (max-width: 991.98px) {
    .raa-nav {
        grid-template-columns: 1fr auto;
        gap: 12px;
        padding: 10px 0;
    }

    .service-switch {
        grid-column: 1 / -1;
        justify-self: stretch;
        order: 3;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .navbar-collapse {
        top: calc(100% + 8px);
        left: 0;
        order: initial;
    }

    .hero-slider {
        height: clamp(210px, 42.85vw, 440px);
    }

    .category-row,
    .seller-grid,
    .deal-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand-block,
    #app-download {
        justify-self: start;
    }

    .feature-grid,
    .team-grid,
    .contact-grid,
    .booking-layout,
    .contact-layout,
    .split-section {
        grid-template-columns: 1fr;
    }

    .modal-card {
        grid-template-columns: 1fr;
        max-height: calc(100vh - 28px);
        overflow: auto;
    }

    .modal-options {
        order: 2;
        border-right: 0;
        border-bottom: 1px solid #dfe3e8;
        padding: 48px 18px 18px;
    }

    .product-modal-content {
        order: 1;
        border-bottom: 1px solid #dfe3e8;
        padding: 24px 18px 22px;
    }
}

@media (max-width: 767.98px) {
    body {
        font-size: 15px;
    }

    .container {
        width: min(100% - 24px, 1120px);
    }

    .brand-raa {
        font-size: 32px;
    }

    .brand-bites {
        font-size: 28px;
    }

    .login-order {
        width: 46px;
        padding: 0;
    }

    .login-order strong {
        display: none;
    }

    .hero-slider {
        height: clamp(165px, 42.85vw, 240px);
    }

    .hero-slide img {
        object-fit: cover;
        object-position: center;
    }

    .hero-hotspot {
        left: 5%;
        bottom: 12%;
        width: 160px;
        height: 58px;
    }

    .slider-arrow {
        width: 44px;
        height: 44px;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .quick-order {
        padding: 18px 12px;
    }

    .rewards-card {
        height: calc((100vw - 48px) / 1.909);
        min-height: 168px;
        max-height: 250px;
    }

    .rewards-card img {
        object-position: 56% center;
    }

    .rewards-hotspot {
        left: 6%;
        top: 38%;
        width: 150px;
        height: 60px;
    }

    .section-block {
        padding: 22px 0;
    }

    .section-title-row {
        align-items: start;
    }

    .category-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px 10px;
    }

    .category-card {
        font-size: 12px;
    }

    .seller-grid,
    .deal-grid,
    .promo-grid,
    .feature-grid,
    .team-grid,
    .contact-grid,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        gap: 28px;
        text-align: left;
    }

    .social-row {
        justify-content: flex-start;
    }

    .store-badge {
        width: min(100%, 190px);
    }

    .seller-image,
    .deal-media {
        height: 210px;
    }

    .promo-tile {
        aspect-ratio: 1.42;
    }

    .cart-panel {
        top: auto;
        right: 10px;
        bottom: 10px;
        left: 10px;
        width: auto;
        max-height: calc(100vh - 24px);
    }

    .option-panel-head {
        min-height: 50px;
        font-size: 15px;
    }

    .modal-product-shot {
        height: 170px;
    }

    .menu-row {
        grid-template-columns: 86px minmax(0, 1fr);
    }

    .menu-row img {
        width: 86px;
        height: 72px;
    }

    .menu-row strong {
        grid-column: 2;
    }

    .footer-bottom {
        display: grid;
        justify-items: start;
    }
}

@media (max-width: 420px) {
    .nav-actions {
        gap: 6px;
    }

    .cart-button,
    .login-order {
        width: 40px;
        height: 40px;
        min-height: 40px;
    }

    .service-pill {
        min-height: 38px;
        padding: 6px 12px;
        font-size: 11px;
    }

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

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