:root {
    --rc-red: #ef1c23;
    --rc-red-dark: #c90f16;
    --rc-navy: #10254a;
    --rc-navy-2: #18345f;
    --rc-green: #4cae63;
    --rc-yellow: #f8c84e;
    --rc-bg: #f7f9fc;
    --rc-muted: #5d6878;
    --rc-border: #e5e9f1;
    --rc-white: #fff;
    --rc-shadow: 0 20px 55px rgba(16, 37, 74, .12);
    --rc-radius: 22px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--rc-navy);
    background: #fff;
    line-height: 1.72;
    overflow-x: hidden
}

a {
    text-decoration: none
}

.text-muted {
    color: var(--rc-muted) !important
}

.section-pad {
    padding: 88px 0
}

.section-soft {
    background: var(--rc-bg)
}

.section-red-soft {
    background: linear-gradient(135deg, #fff5f5 0%, #fff 55%, #f0faf3 100%)
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -100px;
    z-index: 9999;
    background: var(--rc-navy);
    color: #fff;
    padding: 10px 16px;
    border-radius: 10px
}

.skip-link:focus {
    top: 16px
}

.top-strip {
    background: var(--rc-navy);
    color: #fff;
    font-size: .86rem
}

.top-strip a {
    color: #fff
}

.top-strip .dot {
    width: 5px;
    height: 5px;
    background: var(--rc-green);
    border-radius: 50%;
    display: inline-block
}

.navbar {
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 5px 20px rgba(16, 37, 74, .06);
    backdrop-filter: blur(14px)
}

.navbar-brand img {
    width: 215px;
    height: 49px;
    object-fit: contain;
    object-position: left center
}

.navbar-nav .nav-link {
    font-weight: 700;
    color: var(--rc-navy);
    padding: .7rem .82rem !important
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--rc-red)
}

.dropdown-menu {
    border: 0;
    border-radius: 16px;
    box-shadow: var(--rc-shadow);
    padding: .65rem
}

.dropdown-item {
    border-radius: 10px;
    padding: .62rem .75rem;
    font-weight: 600
}

.dropdown-item:hover {
    background: #fff1f1;
    color: var(--rc-red)
}

.btn {
    border-radius: 12px;
    font-weight: 800;
    padding: .72rem 1.15rem
}

.btn-rc {
    background: var(--rc-red);
    border-color: var(--rc-red);
    color: #fff
}

.btn-rc:hover {
    background: var(--rc-red-dark);
    border-color: var(--rc-red-dark);
    color: #fff;
    transform: translateY(-1px)
}

.btn-navy {
    background: var(--rc-navy);
    border-color: var(--rc-navy);
    color: #fff
}

.btn-navy:hover {
    background: var(--rc-navy-2);
    border-color: var(--rc-navy-2);
    color: #fff
}

.btn-soft {
    background: #fff1f1;
    color: var(--rc-red);
    border: 1px solid #ffd3d5
}

.btn-soft:hover {
    background: var(--rc-red);
    color: #fff
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 84px 0 72px;
    background: radial-gradient(circle at 10% 0%, #fff0f0 0, transparent 32%), radial-gradient(circle at 90% 100%, #eaf8ef 0, transparent 35%), #fff
}

.hero:after {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    border: 70px solid rgba(239, 28, 35, .045);
    border-radius: 50%;
    right: -170px;
    top: -170px
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff0f0;
    border: 1px solid #ffd5d7;
    color: var(--rc-red-dark);
    border-radius: 999px;
    padding: 7px 13px;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase
}

.display-title {
    font-size: clamp(2.25rem, 5vw, 4.65rem);
    line-height: 1.06;
    letter-spacing: -.045em;
    font-weight: 900
}

.display-title .accent {
    color: var(--rc-red)
}

.lead-copy {
    font-size: 1.08rem;
    color: var(--rc-muted);
}

.hero-art {
    position: relative;
    z-index: 1
}

.hero-art img {
    width: 100%;
    filter: drop-shadow(0 28px 34px rgba(16, 37, 74, .12))
}

.order-box {
    background: #fff;
    border: 1px solid var(--rc-border);
    box-shadow: var(--rc-shadow);
    border-radius: var(--rc-radius);
    padding: 18px
}

.order-tabs {
    display: flex;
    gap: 8px;
    background: #f3f5f8;
    border-radius: 14px;
    padding: 5px;
    margin-bottom: 15px;
    font-size: 12px;
}

.order-tab {
    flex: 1;
    border: 0;
    background: transparent;
    border-radius: 10px;
    font-weight: 800;
    color: var(--rc-muted);
    padding: 10px
}

.order-tab.active {
    background: #fff;
    color: var(--rc-red);
    box-shadow: 0 5px 15px rgba(16, 37, 74, .08)
}

.input-wrap {
    position: relative
}

.input-wrap .bi {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--rc-red);
    font-size: 1.08rem
}

.input-wrap .form-control {
    height: 54px;
    padding-left: 45px;
    border-radius: 12px;
    border-color: var(--rc-border);
    font-weight: 700
}

.input-wrap .form-control:focus {
    border-color: var(--rc-red);
    box-shadow: 0 0 0 .2rem rgba(239, 28, 35, .1)
}

.trust-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .92rem;
    font-weight: 700;
    color: var(--rc-muted)
}

.trust-item i {
    color: var(--rc-green)
}

.stat-bar {
    margin-top: -28px;
    position: relative;
    z-index: 4
}

.stat-shell {
    background: var(--rc-navy);
    color: #fff;
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 22px 45px rgba(16, 37, 74, .24)
}

.stat {
    padding: 10px 22px;
    border-right: 1px solid rgba(255, 255, 255, .15)
}

.stat:last-child {
    border-right: 0
}

.stat strong {
    font-size: 1.72rem;
    display: block
}

.stat span {
    color: #c9d4e6;
    font-size: .88rem
}

.section-kicker {
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--rc-red);
    margin-bottom: 8px
}

.section-title {
    font-weight: 900;
    letter-spacing: -.03em;
    font-size: clamp(1.85rem, 3.5vw, 3rem);
    line-height: 1.15
}

.section-copy {
    color: var(--rc-muted);
    max-width: 760px
}

.feature-card,
.food-card,
.benefit-card,
.info-card,
.coupon-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--rc-border);
    border-radius: var(--rc-radius);
    box-shadow: 0 12px 35px rgba(16, 37, 74, .06);
    padding: 25px;
    transition: .25s ease
}

.feature-card:hover,
.food-card:hover,
.benefit-card:hover,
.coupon-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--rc-shadow);
    border-color: #ffd0d2
}

.icon-tile {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: #fff0f0;
    color: var(--rc-red);
    font-size: 1.35rem;
    margin-bottom: 18px
}

.step-card {
    position: relative;
    height: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid var(--rc-border)
}

.step-no {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--rc-red);
    color: #fff;
    font-weight: 900;
    margin-bottom: 16px
}

.step-card:after {
    content: "";
    position: absolute;
    right: -18px;
    top: 42px;
    width: 36px;
    border-top: 2px dashed #d5dbe5
}

.row>div:last-child .step-card:after {
    display: none
}

.food-emoji {
    font-size: 2.55rem;
    line-height: 1;
    margin-bottom: 17px
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid var(--rc-border);
    background: #fff;
    border-radius: 999px;
    padding: 7px 12px;
    font-weight: 700;
    font-size: .88rem
}

.pill i {
    color: var(--rc-green)
}

.station-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.station-cloud span {
    background: #fff;
    border: 1px solid var(--rc-border);
    border-radius: 999px;
    padding: 9px 14px;
    font-weight: 700;
    color: var(--rc-navy)
}

.cta-band {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: linear-gradient(120deg, var(--rc-red), #ff4b38);
    color: #fff;
    padding: 48px
}

.cta-band:before,
.cta-band:after {
    content: "";
    position: absolute;
    border: 45px solid rgba(255, 255, 255, .08);
    border-radius: 50%
}

.cta-band:before {
    width: 260px;
    height: 260px;
    right: -110px;
    top: -130px
}

.cta-band:after {
    width: 180px;
    height: 180px;
    left: -80px;
    bottom: -100px
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(16, 37, 74, .28);
    padding: 9px 14px;
    border-radius: 12px;
    color: #fff
}

.app-badge:hover {
    background: var(--rc-navy);
    color: #fff
}

.app-badge i {
    font-size: 1.65rem
}

.faq .accordion-item {
    border: 1px solid var(--rc-border);
    border-radius: 16px !important;
    margin-bottom: 12px;
    overflow: hidden
}

.faq .accordion-button {
    font-weight: 800;
    color: var(--rc-navy);
    padding: 18px 20px
}

.faq .accordion-button:not(.collapsed) {
    background: #fff2f2;
    color: var(--rc-red);
    box-shadow: none
}

.faq .accordion-button:focus {
    box-shadow: none
}

.page-hero {
    padding: 72px 0;
    background: linear-gradient(135deg, #fff1f1, #fff 50%, #edf8f1);
    border-bottom: 1px solid var(--rc-border)
}

.page-hero h1 {
    font-size: clamp(2.1rem, 4vw, 3.8rem);
    font-weight: 900;
    letter-spacing: -.04em
}

.breadcrumb-item a {
    color: var(--rc-red);
    font-weight: 700
}

.content-card {
    background: #fff;
    border: 1px solid var(--rc-border);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 15px 40px rgba(16, 37, 74, .07)
}

.content-card h2,
.content-card h3 {
    font-weight: 900;
    letter-spacing: -.02em
}

.content-card h2 {
    margin-top: 2.1rem;
    font-size: 1.6rem
}

.content-card h3 {
    font-size: 1.2rem;
    margin-top: 1.55rem
}

.content-card p,
.content-card li {
    color: #465368
}

.content-card ul,
.content-card ol {
    padding-left: 1.25rem
}

.content-card li {
    margin-bottom: .5rem
}

.content-card h2:first-child {
    margin-top: 0
}

.policy-layout {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 30px
}

.policy-nav {
    position: sticky;
    top: 105px;
    background: #fff;
    border: 1px solid var(--rc-border);
    border-radius: 18px;
    padding: 18px;
    height: max-content
}

.policy-nav strong {
    display: block;
    margin-bottom: 10px
}

.policy-nav a {
    display: block;
    padding: 8px 9px;
    border-radius: 9px;
    color: var(--rc-muted);
    font-weight: 650;
    font-size: .91rem
}

.policy-nav a:hover {
    background: #fff1f1;
    color: var(--rc-red)
}

.notice {
    border-left: 4px solid var(--rc-yellow);
    background: #fff9e8;
    border-radius: 0 14px 14px 0;
    padding: 15px 18px;
    color: #6b5720
}

.contact-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--rc-border);
    border-radius: 20px;
    padding: 25px
}

.contact-card a {
    color: var(--rc-navy);
    font-weight: 800
}

.form-control,
.form-select {
    border-radius: 12px;
    border-color: var(--rc-border);
    padding: .8rem .9rem
}

.form-control:focus,
.form-select:focus {
    border-color: var(--rc-red);
    box-shadow: 0 0 0 .2rem rgba(239, 28, 35, .1)
}

.footer {
    background: #0b1d3a;
    color: #fff;
    padding: 66px 0 20px
}

.footer-logo {
    width: 225px;
    height: 55px;
    object-fit: contain;
    object-position: left center;
    background: #fff;
    border-radius: 10px;
    padding: 5px
}

.footer p,
.footer a {
    color: #b8c4d8
}

.footer a:hover {
    color: #fff
}

.footer h6 {
    font-weight: 900;
    color: #fff;
    margin-bottom: 17px
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0
}

.footer-links li {
    margin-bottom: 9px
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 35px;
    padding-top: 20px
}

.social-link {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff !important
}

.social-link:hover {
    background: var(--rc-red);
    border-color: var(--rc-red)
}

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: var(--rc-red);
    color: #fff;
    box-shadow: 0 10px 25px rgba(239, 28, 35, .35);
    display: none;
    z-index: 1000
}

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

.toast-note {
    position: fixed;
    right: 18px;
    bottom: 76px;
    background: var(--rc-navy);
    color: #fff;
    padding: 13px 17px;
    border-radius: 12px;
    box-shadow: var(--rc-shadow);
    z-index: 1100;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: .25s
}

.toast-note.show {
    opacity: 1;
    transform: translateY(0)
}

.offer-ribbon {
    display: inline-block;
    background: var(--rc-yellow);
    color: #503d00;
    border-radius: 8px;
    padding: 5px 10px;
    font-weight: 900;
    font-size: .78rem
}

.coupon-card {
    position: relative;
    overflow: hidden
}

.coupon-card:after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #fff1f1;
    right: -35px;
    top: -35px
}

.coupon-icon {
    font-size: 2rem;
    color: var(--rc-red)
}

.timeline {
    position: relative;
    padding-left: 28px
}

.timeline:before {
    content: "";
    position: absolute;
    left: 6px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: #dce2eb
}

.timeline-item {
    position: relative;
    margin-bottom: 24px
}

.timeline-item:before {
    content: "";
    position: absolute;
    left: -28px;
    top: 7px;
    width: 14px;
    height: 14px;
    border: 4px solid #fff;
    background: var(--rc-red);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--rc-red)
}

@media(max-width:991.98px) {
    .section-pad {
        padding: 68px 0
    }

    .navbar-brand img {
        width: 180px
    }

    .hero {
        padding-top: 58px
    }

    .stat-bar {
        margin-top: 0
    }

    .stat {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .13)
    }

    .stat:last-child {
        border-bottom: 0
    }

    .policy-layout {
        grid-template-columns: 1fr
    }

    .policy-nav {
        position: static
    }

    .step-card:after {
        display: none
    }

    .cta-band {
        padding: 34px
    }

    .top-strip .top-hide {
        display: none
    }
}

@media(max-width:575.98px) {
    .navbar-brand img {
        width: 155px;
        height: 43px
    }

    .hero {
        padding: 45px 0 55px
    }

    .display-title {
        font-size: 2.35rem
    }

    .order-box {
        padding: 13px
    }

    .section-pad {
        padding: 55px 0
    }

    .page-hero {
        padding: 52px 0
    }

    .content-card {
        padding: 22px
    }

    .cta-band {
        padding: 28px 22px;
        border-radius: 22px
    }

    .footer-logo {
        width: 200px
    }

    .trust-row {
        gap: 10px
    }

    .stat-shell {
        padding: 12px
    }

    .stat {
        padding: 13px
    }

    .hero-art {
        margin-top: 20px
    }
}

.display-title,
.section-title,
.page-hero h1 {
    letter-spacing: 0
}

.display-title {
    font-size: 4.1rem
}

.section-title {
    font-size: 2.7rem
}

.app-hero {
    position: relative;
    overflow: hidden;
    padding: 40px 0 70px;
    background: linear-gradient(135deg, #fff7f1 0%, #fff 38%, #eef8f2 100%)
}

.app-hero:before {
    content: "";
    position: absolute;
    inset: auto -12% -38% -12%;
    height: 52%;
    background: linear-gradient(90deg, rgba(239, 28, 35, .08), rgba(76, 174, 99, .1));
    transform: skewY(-4deg)
}

.hero-slider {
    position: relative;
    z-index: 1
}

.hero-image-slide {
    display: block;
    overflow: hidden;
    border: 1px solid var(--rc-border);
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--rc-shadow)
}

.hero-image-slide img {
    display: block;
    width: 100%;
    aspect-ratio: 16/6.8;
    max-height: 360px;
    object-fit: cover
}

.hero-content-strip {
    margin-top: 16px;
    background: #fff;
    border: 1px solid var(--rc-border);
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(16,37,74,.08);
    padding: 22px 24px
}

.hero-content-strip h1 {
    margin: 10px 0 8px;
    color: var(--rc-navy);
    font-size: clamp(1.7rem, 3vw, 2.55rem);
    line-height: 1.1;
    font-weight: 900
}

.hero-content-strip p {
    color: var(--rc-muted);
    max-width: 720px;
    margin: 0
}

.hero-content-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px
}

.hero-slide {
    min-height: 570px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
    gap: 32px;
    align-items: center;
    border: 1px solid var(--rc-border);
    border-radius: 30px;
    padding: 44px;
    background: #fff;
    box-shadow: var(--rc-shadow);
    overflow: hidden
}

.hero-slide-primary {
    background: linear-gradient(135deg, #fff, #fff5f5 55%, #edf8f1)
}

.hero-slide-offer {
    background: linear-gradient(135deg, #0f2448, #18345f);
    color: #fff
}

.hero-slide-quality {
    background: linear-gradient(135deg, #f8fbff, #fff 45%, #f0faf3)
}

.hero-slide-offer .lead-copy,
.hero-slide-offer .section-copy {
    color: #dce6f5
}

.hero-slide-copy {
    position: relative;
    z-index: 2
}

.hero-slide-art {
    position: relative;
    z-index: 1
}

.hero-slide-art img {
    display: block;
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    filter: drop-shadow(0 28px 34px rgba(16, 37, 74, .13))
}

.hero-slider .carousel-indicators {
    display: none
}

.hero-slider .carousel-indicators [data-bs-target] {
    width: 28px;
    height: 6px;
    border: 0;
    border-radius: 999px;
    background: #ef1c23
}

.promo-slide {
    position: relative;
    min-height: 430px;
    grid-template-columns: minmax(0, 1fr) 320px;
    background: #fff;
    isolation: isolate
}

.promo-slide:before {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: -1;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(239,28,35,.08), rgba(76,174,99,.08))
}

.promo-slide-red {
    background: linear-gradient(135deg, #fff8f6 0%, #fff 48%, #f2fbf5 100%)
}

.promo-slide-green {
    background: linear-gradient(135deg, #f2fff6 0%, #fff 48%, #fff7ec 100%)
}

.promo-slide-dark {
    background: linear-gradient(135deg, #10254a 0%, #173761 100%);
    color: #fff
}

.promo-slide-dark .lead-copy {
    color: #dce6f5
}

.promo-copy {
    position: relative;
    z-index: 2
}

.promo-copy .display-title {
    max-width: 620px
}

.promo-coupon-row,
.promo-tile-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0
}

.promo-coupon {
    min-width: 136px;
    display: grid;
    gap: 2px;
    border: 1px solid var(--rc-border);
    border-radius: 16px;
    background: #fff;
    padding: 12px 14px;
    box-shadow: 0 12px 28px rgba(16,37,74,.08)
}

.promo-slide-dark .promo-coupon {
    border-color: rgba(255,255,255,.18);
    background: rgba(255,255,255,.12);
    box-shadow: none
}

.promo-coupon small {
    color: var(--rc-muted);
    font-weight: 900;
    text-transform: uppercase;
    font-size: .68rem
}

.promo-slide-dark .promo-coupon small {
    color: #cbd7eb
}

.promo-coupon strong {
    color: var(--rc-navy);
    font-size: 1.05rem
}

.promo-slide-dark .promo-coupon strong {
    color: #fff
}

.promo-tile-grid span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--rc-navy);
    background: #fff;
    border: 1px solid var(--rc-border);
    border-radius: 999px;
    padding: 9px 12px;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(16,37,74,.06)
}

.promo-tile-grid i {
    color: var(--rc-green)
}

.promo-cta {
    margin-top: 2px
}

.promo-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0
}

.promo-media img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: 0 22px 42px rgba(16,37,74,.16);
    max-height: 310px
}

.hero-slide .promo-media img {
    filter: none
}

.promo-banner-media img {
    aspect-ratio: 16/9;
    border-radius: 22px;
    max-height: 230px;
    object-fit: cover
}

.promo-floating-card {
    position: absolute;
    left: -20px;
    bottom: 24px;
    display: grid;
    gap: 2px;
    background: #fff;
    color: var(--rc-navy);
    border-radius: 18px;
    padding: 14px 16px;
    box-shadow: 0 16px 36px rgba(16,37,74,.18)
}

.promo-floating-card i {
    color: var(--rc-red);
    font-size: 1.2rem
}

.promo-floating-card span {
    color: var(--rc-red);
    font-weight: 900;
    font-size: .75rem;
    text-transform: uppercase
}

.promo-floating-card strong {
    font-size: 1.05rem
}

.offer-code-line {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, .11);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    padding: 15px 17px;
    max-width: 520px
}

.offer-code-line span {
    font-weight: 900;
    color: #f8c84e
}

.offer-code-line strong {
    font-size: 1.55rem;
    color: #fff
}

.offer-code-line small {
    color: #dce6f5
}

.app-offer-stack {
    display: grid;
    gap: 10px;
    align-content: center
}

.mini-offer-card {
    background: rgba(255,255,255,.96);
    color: var(--rc-navy);
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 16px 34px rgba(0,0,0,.14);
    transform: none;
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 12px;
    align-items: center
}

.mini-offer-card:nth-child(2) {
    transform: none;
    margin-left: 0
}

.mini-offer-card:nth-child(3) {
    transform: none;
    margin-left: 0
}

.mini-offer-card i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: #fff0f0;
    color: var(--rc-red);
    font-size: 1.25rem;
    grid-row: span 2
}

.mini-offer-card span {
    display: block;
    color: var(--rc-red);
    font-weight: 900;
    font-size: .78rem;
    text-transform: uppercase
}

.mini-offer-card strong {
    font-size: 1.2rem;
    line-height: 1.2
}

.app-phone-shell {
    position: relative;
    z-index: 2;
    background: #10254a;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 34px;
    padding: 16px;
    box-shadow: 0 30px 60px rgba(16, 37, 74, .22);
    max-width: 500px;
    margin-left: auto
}

.app-phone-top {
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-weight: 900;
    padding: 0 8px
}

.app-phone-top-simple {
    justify-content: center
}

.app-status-dot {
    width: 10px;
    height: 10px;
    background: var(--rc-green);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(76, 174, 99, .15)
}

.app-order-card {
    box-shadow: none;
    border: 0;
    border-radius: 24px
}

.app-field-label {
    display: block;
    font-size: .82rem;
    font-weight: 900;
    color: var(--rc-navy);
    margin-bottom: 7px
}

.app-train-journey-fields {
    border-top: 1px solid #eef2f7;
    padding-top: 8px
}

.app-train-journey-fields .form-control {
    min-height: 50px;
    border-radius: 12px;
    border-color: var(--rc-border);
    font-weight: 800
}

.app-train-journey-fields select.form-control {
    appearance: auto
}

.app-quick-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 12px
}

.app-quick-actions a {
    min-height: 54px;
    border-radius: 16px;
    background: #0b8b29;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-align: center;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(239, 28, 35, .25)
}

.app-quick-actions i {
    font-size: 1.15rem;
    color: #fff
}

.app-quick-actions span {
    display: block;
    font-size: .92rem
}

.app-quick-actions a:hover {
    color: #fff;
    background: #c90f16;
    transform: translateY(-1px)
}

@media(min-width:1200px) {
    .app-hero {
        padding: 26px 0 54px
    }

    .app-hero .row.g-4 {
        --bs-gutter-x: 1.25rem
    }

    .hero-image-slide {
        border-radius: 24px
    }

    .hero-image-slide img {
        aspect-ratio: 16/6.4;
        max-height: 320px
    }

    .hero-content-strip {
        padding: 20px 22px
    }

    .hero-content-strip h1 {
        font-size: 2.1rem
    }

    .hero-slide {
        min-height: 430px;
        grid-template-columns: minmax(0, 1.12fr) 250px;
        gap: 20px;
        border-radius: 24px;
        padding: 30px 32px
    }

    .promo-slide {
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 28px
    }

    .hero-slide .eyebrow {
        font-size: .74rem;
        padding: 7px 10px
    }

    .hero-slide .display-title {
        font-size: 2.55rem;
        line-height: 1.08;
        margin-top: 12px !important;
        margin-bottom: 14px !important
    }

    .hero-slide .lead-copy {
        font-size: .98rem;
        line-height: 1.58;
        margin-bottom: 18px !important;
        max-width: 560px
    }

    .hero-slide-art {
        display: flex;
        align-items: center;
        justify-content: center
    }

    .hero-slide-art img {
        width: 100%;
        max-width: 250px;
        max-height: 245px
    }

    .promo-media img {
        max-width: 320px;
        max-height: 310px
    }

    .promo-banner-media img {
        max-width: 320px;
        max-height: 220px
    }

    .app-offer-stack {
        max-width: 300px;
        width: 100%;
        justify-self: end;
        gap: 10px;
        padding-right: 4px
    }

    .mini-offer-card {
        border-radius: 16px;
        padding: 14px;
        width: 100%;
        max-width: 100%
    }

    .mini-offer-card:nth-child(2) {
        margin-left: 0
    }

    .mini-offer-card:nth-child(3) {
        margin-left: 0
    }

    .hero-slide-offer {
        grid-template-columns: minmax(0, 1fr) 300px
    }

    .mini-offer-card strong {
        font-size: 1.05rem
    }

    .offer-code-line {
        padding: 12px 14px;
        border-radius: 14px
    }

    .offer-code-line strong {
        font-size: 1.22rem
    }

    .trust-row {
        gap: 8px
    }

    .trust-item {
        padding: 8px 10px;
        font-size: .84rem
    }

    .app-phone-shell {
        max-width: 440px;
        border-radius: 28px;
        padding: 14px
    }

    .app-phone-top {
        height: 40px;
        font-size: .96rem
    }

    .app-order-card {
        border-radius: 20px;
        padding: 22px
    }

    .order-tabs {
        padding: 5px;
        border-radius: 16px;
        margin-bottom: 18px
    }

    .order-tab {
        min-height: 48px;
        border-radius: 13px;
        font-size: .9rem
    }

    .input-wrap .form-control {
        min-height: 54px;
        font-size: 1rem
    }

    .app-order-card .btn-rc {
        min-height: 52px;
        border-radius: 14px
    }

    .app-quick-actions {
        gap: 9px;
        margin-top: 12px
    }

    .app-quick-actions a {
        min-height: 52px;
        border-radius: 16px;
        margin-bottom: 0
    }
}

.app-stat-bar {
    margin-top: -34px
}

.offer-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-radius: 28px;
    padding: 34px;
    background: linear-gradient(120deg, #ef1c23, #ff5c3d 58%, #f8c84e);
    color: #fff;
    box-shadow: 0 22px 48px rgba(239, 28, 35, .2)
}

.offer-banner h3 {
    margin: 12px 0 6px;
    font-weight: 900;
    font-size: 2rem
}

.offer-banner p {
    margin: 0;
    max-width: 680px
}

.app-coupon h4 {
    font-size: 1.15rem;
    font-weight: 900;
    margin-top: 14px
}

.app-process-svg {
    width: 100%;
    filter: drop-shadow(0 24px 32px rgba(16, 37, 74, .12))
}

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

.app-step-item {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    background: #fff;
    border: 1px solid var(--rc-border);
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 12px 34px rgba(16, 37, 74, .06)
}

.app-step-item span {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: var(--rc-red);
    color: #fff;
    font-weight: 900
}

.app-step-item h5 {
    margin: 0 0 3px;
    font-weight: 900
}

.app-step-item p {
    margin: 0;
    color: var(--rc-muted)
}

.app-station-card {
    background: linear-gradient(135deg, #fff, #f8fbff)
}

.app-station-showcase {
    border: 1px solid var(--rc-border);
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 16px 40px rgba(16, 37, 74, .07)
}

.app-station-showcase .section-title {
    font-size: clamp(1.55rem, 3vw, 2.25rem)
}

.app-station-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px
}

.app-station-grid span {
    display: flex;
    align-items: center;
    gap: 7px;
    min-height: 44px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
    color: var(--rc-navy);
    padding: 10px 11px;
    font-size: .84rem;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(16, 37, 74, .05)
}

.app-station-grid i {
    color: var(--rc-red);
    font-size: .9rem
}

.app-station-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px
}

.app-station-info-grid div {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    column-gap: 10px;
    align-items: center;
    background: #fff7f7;
    border: 1px solid #ffd5d7;
    border-radius: 16px;
    padding: 12px
}

.app-station-info-grid i {
    grid-row: span 2;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #fff;
    color: var(--rc-red)
}

.app-station-info-grid strong {
    color: #111827;
    font-size: .9rem
}

.app-station-info-grid span {
    color: #667085;
    font-size: .78rem;
    line-height: 1.35;
    font-weight: 700
}

.app-download-band {
    height: 100%;
    min-height: 310px;
    display: flex;
    align-items: center
}

.app-food-card {
    display: grid;
    gap: 8px;
    text-align: left
}

.app-food-card i {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: #fff0f0;
    color: var(--rc-red);
    font-size: 1.55rem
}

.testimonials-section {
    background: #fff
}

.testimonial-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--rc-border);
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 14px 36px rgba(16, 37, 74, .07)
}

.testimonial-stars {
    color: #f8c84e;
    margin-bottom: 14px
}

.testimonial-card p {
    color: #465368;
    margin-bottom: 18px
}

.testimonial-card strong {
    display: block;
    font-weight: 900;
    color: var(--rc-navy)
}

.testimonial-card span {
    color: var(--rc-muted);
    font-size: .9rem
}

.fw-black {
    font-weight: 900
}

@media(max-width:1199.98px) {
    .hero-slide {
        grid-template-columns: 1fr;
        min-height: auto
    }

    .promo-slide {
        grid-template-columns: 1fr;
        gap: 22px
    }

    .hero-slide-art img {
        max-height: 310px
    }

    .promo-media img {
        max-width: 100%;
        max-height: 280px
    }

    .hero-image-slide img {
        aspect-ratio: 16/7.2;
        max-height: 240px
    }

    .app-phone-shell {
        margin: 0 auto
    }

    .display-title {
        font-size: 3.35rem
    }

    .section-title {
        font-size: 2.35rem
    }
}

@media(max-width:991.98px) {
    .app-hero {
        padding-top: 26px
    }

    .app-hero .col-xl-5 {
        order: -1
    }

    .hero-slide {
        padding: 30px;
        border-radius: 24px
    }

    .app-stat-bar {
        margin-top: 0
    }

    .offer-banner {
        align-items: flex-start;
        flex-direction: column
    }

    .mini-offer-card:nth-child(2),
    .mini-offer-card:nth-child(3) {
        margin-left: 0
    }

    .app-offer-stack {
        grid-template-columns: 1fr
    }

    .display-title {
        font-size: 2.85rem
    }

    .section-title {
        font-size: 2.1rem
    }
}

@media(max-width:575.98px) {
    .app-hero {
        padding: 18px 0 48px
    }

    .hero-slide {
        padding: 20px;
        gap: 18px;
        border-radius: 20px
    }

    .hero-slide-art img {
        max-height: 220px
    }

    .hero-image-slide {
        border-radius: 18px
    }

    .hero-image-slide img {
        aspect-ratio: 16/7.6;
        max-height: 190px
    }

    .hero-content-strip {
        margin-top: 12px;
        border-radius: 18px;
        padding: 16px
    }

    .hero-content-strip h1 {
        font-size: 1.55rem
    }

    .hero-content-strip p {
        font-size: .94rem;
        line-height: 1.55
    }

    .hero-content-actions .btn {
        width: 100%
    }

    .promo-slide {
        padding: 18px;
        gap: 16px
    }

    .promo-slide:before {
        inset: 10px;
        border-radius: 18px
    }

    .promo-copy .display-title {
        font-size: 2rem
    }

    .promo-copy .lead-copy {
        font-size: .95rem;
        line-height: 1.55
    }

    .promo-coupon-row,
    .promo-tile-grid {
        gap: 8px;
        margin: 14px 0
    }

    .promo-coupon {
        min-width: 0;
        flex: 1 1 130px;
        border-radius: 14px;
        padding: 10px 12px
    }

    .promo-media img {
        max-height: 210px;
        border-radius: 18px
    }

    .promo-banner-media img {
        max-height: 160px
    }

    .promo-floating-card {
        left: 10px;
        bottom: 10px;
        border-radius: 14px;
        padding: 10px 12px
    }

    .hero-slider .carousel-indicators {
        position: static;
        margin-top: 16px
    }

    .app-phone-shell {
        border-radius: 26px;
        padding: 10px
    }

    .app-phone-top {
        height: 40px
    }

    .app-quick-actions {
        gap: 8px
    }

    .app-quick-actions a {
        min-height: 50px;
        border-radius: 15px
    }

    .offer-banner {
        padding: 24px;
        border-radius: 22px
    }

    .offer-banner h3 {
        font-size: 1.45rem
    }

    .app-step-item {
        grid-template-columns: 46px minmax(0, 1fr);
        padding: 15px
    }

    .app-step-item span {
        width: 38px;
        height: 38px;
        border-radius: 13px
    }

    .display-title {
        font-size: 2.28rem
    }

    .section-title {
        font-size: 1.85rem
    }

    .app-food-card {
        text-align: center
    }

    .app-food-card i {
        margin: 0 auto
    }
}

body.rc-app {
    background: #f3f6fb;
    padding-bottom: 104px
}

.app-mobile-top-actions {
    display: none
}

.app-nav-actions {
    display: none
}

.rc-app .top-strip {
    background: #0b1d3a
}

.rc-app .navbar {
    top: 10px;
    margin: 0 auto 10px;
    width: min(1180px, calc(100% - 24px));
    border: 1px solid rgba(16, 37, 74, .08);
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(16, 37, 74, .12)
}

.rc-app .navbar .container {
    max-width: 1120px
}

.rc-app main {
    position: relative
}

.rc-app .page-hero {
    margin: 18px auto 0;
    width: min(1180px, calc(100% - 24px));
    border: 1px solid var(--rc-border);
    border-radius: 28px;
    background: linear-gradient(135deg, #fff, #fff6f6 55%, #eef8f2);
    box-shadow: 0 18px 44px rgba(16, 37, 74, .08)
}

.rc-app .section-pad>.container {
    background: transparent
}

.rc-app .content-card,
.rc-app .contact-card,
.rc-app .policy-nav,
.rc-app .feature-card,
.rc-app .benefit-card,
.rc-app .food-card,
.rc-app .coupon-card,
.rc-app .testimonial-card {
    border-radius: 24px;
    box-shadow: 0 14px 34px rgba(16, 37, 74, .07)
}

.app-tabbar {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 1200;
    width: min(720px, calc(100% - 24px));
    height: 76px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    gap: 6px;
    padding: 8px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(16, 37, 74, .12);
    border-radius: 26px;
    box-shadow: 0 20px 52px rgba(16, 37, 74, .2);
    backdrop-filter: blur(18px)
}

.app-tabbar a {
    height: 60px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: #617087;
    font-weight: 900;
    font-size: .76rem;
    line-height: 1.05
}

.app-tabbar i {
    font-size: 1.25rem
}

.app-tabbar span {
    display: block
}

.app-tabbar a:hover,
.app-tabbar a.active {
    background: #fff1f1;
    color: var(--rc-red)
}

.app-tabbar .app-tab-primary {
    margin-top: 0;
    height: 60px;
    background: transparent;
    color: #617087;
    box-shadow: none
}

.app-tabbar .app-tab-primary:hover,
.app-tabbar .app-tab-primary.active {
    background: #fff1f1;
    color: var(--rc-red)
}

.app-tabbar .app-tab-primary i {
    font-size: 1.25rem
}

.app-floating-actions {
    position: fixed;
    right: 18px;
    bottom: 110px;
    z-index: 1190;
    display: grid;
    gap: 10px
}

.app-floating-actions a {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--rc-red);
    border: 1px solid var(--rc-border);
    box-shadow: 0 14px 32px rgba(16, 37, 74, .15)
}

.app-floating-actions a:first-child {
    background: var(--rc-green);
    color: #fff;
    border-color: var(--rc-green)
}

.app-floating-actions a:hover {
    transform: translateY(-2px)
}

.rc-app .back-to-top {
    bottom: 184px
}

.rc-app .toast-note {
    bottom: 188px
}

.rc-app .footer {
    padding-bottom: 118px
}

.rc-app .breadcrumb {
    background: #fff;
    border: 1px solid var(--rc-border);
    border-radius: 999px;
    display: inline-flex;
    padding: 8px 14px
}

.rc-app .accordion-item {
    box-shadow: 0 10px 28px rgba(16, 37, 74, .05)
}

.rc-app .form-control,
.rc-app .form-select {
    min-height: 50px;
    background: #fbfcff
}

.rc-app .btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

@media(min-width:1200px) {
    .rc-app .app-floating-actions {
        right: calc((100vw - 1180px)/2 - 68px)
    }
}

@media(max-width:991.98px) {
    .rc-app .navbar {
        top: 0;
        width: 100%;
        border-radius: 0;
        margin: 0;
        border-left: 0;
        border-right: 0
    }

    .rc-app .top-strip {
        display: none
    }

    .app-nav-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-left: auto
    }

    .app-nav-actions a {
        width: 42px;
        height: 42px;
        border-radius: 15px;
        display: grid;
        place-items: center;
        color: #fff;
        box-shadow: 0 10px 22px rgba(16, 37, 74, .14)
    }

    .app-nav-actions i {
        font-size: 1.12rem
    }

    .app-nav-call {
        background: #0d169e;
    }

    .app-nav-whatsapp {
        background: linear-gradient(135deg, #26a85f, #128c4a)
    }

    .rc-app .navbar-toggler {
        margin-left: 8px
    }

    .rc-app .page-hero {
        width: calc(100% - 20px);
        margin-top: 10px;
        border-radius: 24px
    }

    .app-floating-actions {
        display: none
    }

    .rc-app .back-to-top {
        bottom: 104px
    }

    .rc-app .toast-note {
        right: 12px;
        bottom: 104px;
        left: 12px
    }

    .rc-app .footer {
        padding-bottom: 108px
    }
}

@media(max-width:575.98px) {
    body.rc-app {
        padding-bottom: 92px
    }

    .app-tabbar {
        bottom: 10px;
        height: 70px;
        border-radius: 22px;
        width: calc(100% - 16px);
        padding: 7px;
        gap: 3px
    }

    .app-tabbar a {
        height: 54px;
        border-radius: 17px;
        font-size: .68rem
    }

    .app-tabbar i {
        font-size: 1.12rem
    }

    .app-tabbar .app-tab-primary {
        height: 54px;
        margin-top: 0
    }

    .app-tabbar .app-tab-primary i {
        font-size: 1.12rem
    }

    .rc-app .page-hero {
        width: calc(100% - 16px);
        border-radius: 20px
    }

    .rc-app .footer {
        padding-bottom: 96px
    }

    .rc-app .breadcrumb {
        border-radius: 16px
    }

    .rc-app .navbar-brand img {
        width: 146px
    }

    .app-nav-actions {
        gap: 6px
    }

    .app-nav-actions a {
        width: 39px;
        height: 39px;
        border-radius: 14px
    }

    .rc-app .navbar-toggler {
        margin-left: 6px;
        padding: 6px
    }
}

.app-flash-wrap {
    margin-top: 18px
}

.app-order-main {
    background: #f6f7fb;
    min-height: 70vh
}

.app-order-hero {
    padding: 34px 0 22px;
    background: linear-gradient(180deg, #fff, #f6f7fb)
}

.app-menu-hero {
    padding-bottom: 16px
}

.app-stepper {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px
}

.app-stepper span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #e5e7eb;
    color: #667085;
    background: #fff;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: .82rem;
    font-weight: 800
}

.app-stepper span.active {
    color: #fff;
    border-color: #ef1c23;
    background: #ef1c23
}

.app-page-title {
    margin: 10px 0;
    color: #111827;
    font-size: clamp(1.8rem, 4vw, 3.1rem);
    font-weight: 900;
    line-height: 1.04
}

.app-mini-offer {
    margin-left: auto;
    max-width: 360px
}

.app-order-section {
    padding: 20px 0 96px
}

.app-station-strip,
.app-category-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 0 16px;
    scrollbar-width: thin
}

.app-station-chip,
.app-category-strip a {
    text-decoration: none;
    flex: 0 0 auto;
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #344054;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(16,24,40,.06)
}

.app-station-chip {
    width: 230px;
    padding: 14px
}

.app-station-chip strong,
.app-station-chip span,
.app-station-chip small {
    display: block
}

.app-station-chip strong {
    color: #ef1c23;
    font-size: 1.05rem
}

.app-station-chip span {
    color: #111827;
    font-weight: 900;
    margin-top: 2px
}

.app-station-chip small {
    color: #667085;
    margin-top: 6px;
    font-weight: 700
}

.app-station-chip.active {
    border-color: #ef1c23;
    box-shadow: 0 14px 32px rgba(239,28,35,.16)
}

.app-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin: 22px 0 16px
}

.app-section-heading h2 {
    margin: 4px 0 0;
    color: #111827;
    font-size: 1.45rem;
    font-weight: 900
}

.app-soft-pill {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: #344054;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 9px 12px;
    font-weight: 800
}

.app-restaurant-card,
.app-food-card,
.app-form-panel,
.app-order-summary,
.app-success-card,
.app-empty-state {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(16,24,40,.08)
}

.app-station-anchor-strip {
    margin-bottom: 8px
}

.app-station-list {
    display: grid;
    gap: 18px
}

.app-station-list-block {
    scroll-margin-top: 104px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(16,24,40,.07);
    overflow: hidden
}

.app-station-list-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb
}

.app-station-list-head h2 {
    margin: 4px 0 0;
    color: #111827;
    font-size: 1.18rem;
    font-weight: 900
}

.app-station-list-head h2 small {
    color: #667085;
    font-size: .9rem;
    font-weight: 800
}

.app-station-time {
    min-width: 128px;
    text-align: right
}

.app-station-time strong,
.app-station-time span {
    display: block
}

.app-station-time strong {
    color: #ef1c23;
    font-size: 1.25rem;
    font-weight: 900
}

.app-station-time span {
    color: #667085;
    font-weight: 800
}

.app-restaurant-list {
    display: grid
}

.app-restaurant-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 178px;
    gap: 16px;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #edf0f5
}

.app-restaurant-row:last-child {
    border-bottom: 0
}

.app-restaurant-row.is-closed {
    background: #fffafa
}

.app-row-title {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap
}

.app-row-title h3 {
    margin: 0;
    color: #111827;
    font-size: 1.12rem;
    font-weight: 900
}

.app-rest-main p {
    margin: 7px 0 0;
    color: #667085
}

.app-status-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 5px 9px;
    font-size: .76rem;
    font-weight: 900
}

.app-status-badge.open {
    color: #047857;
    background: #d1fae5
}

.app-status-badge.warning {
    color: #92400e;
    background: #fef3c7
}

.app-status-badge.closed {
    color: #b91c1c;
    background: #fee2e2
}

.app-rest-list-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px
}

.app-rest-list-meta > span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #344054;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 7px 10px;
    font-size: .82rem;
    font-weight: 800
}

.app-rest-list-meta .bi-star-fill {
    color: #f59e0b
}

.app-rest-list-meta .app-diet-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: auto;
    flex: 0 0 auto;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    font-size: 0
}

.app-diet-symbol {
    position: relative;
    width: 22px;
    height: 22px;
    min-width: 22px;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid currentColor;
    border-radius: 0;
    background: #fff
}

.app-diet-symbol::after {
    content: "";
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: currentColor
}

.app-diet-symbol.veg {
    color: #16a34a
}

.app-diet-symbol.nonveg {
    color: #dc2626
}

.app-diet-symbol + .app-diet-symbol {
    margin-left: 5px
}

.app-rest-menu-action {
    display: grid;
    gap: 10px;
    justify-items: stretch;
    text-align: center
}

.app-rest-menu-action span {
    color: #667085;
    font-size: .85rem;
    font-weight: 900
}

.app-menu-disabled,
.app-menu-disabled:disabled {
    opacity: .55;
    cursor: not-allowed;
    background: #cbd5e1;
    border-color: #cbd5e1;
    color: #475569
}

.app-restaurant-card {
    height: 100%;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.app-card-topline,
.app-food-action-row,
.app-total-box div,
.app-summary-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

.app-food-type,
.app-rating {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 999px;
    padding: 6px 9px;
    font-size: .78rem;
    font-weight: 900
}

.app-food-type {
    color: #0f766e;
    background: #e6fffb
}

.app-rating {
    color: #92400e;
    background: #fffbeb
}

.app-restaurant-card h3,
.app-food-card h3 {
    color: #111827;
    font-weight: 900;
    font-size: 1.2rem;
    margin: 0
}

.app-restaurant-card p,
.app-food-card p {
    color: #667085;
    margin: 0
}

.app-rest-meta {
    display: grid;
    gap: 8px;
    margin-top: auto
}

.app-rest-meta span {
    color: #344054;
    font-weight: 800;
    font-size: .9rem
}

.app-back-link {
    color: #ef1c23;
    text-decoration: none;
    font-weight: 900
}

.app-menu-summary {
    display: grid;
    gap: 8px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 14px
}

.app-menu-summary span {
    color: #344054;
    font-weight: 800
}

.app-category-strip {
    position: sticky;
    top: 82px;
    z-index: 5;
    background: #f6f7fb
}

.app-category-strip a {
    padding: 10px 14px;
    color: #344054;
    font-weight: 900
}

.app-menu-accordion {
    display: grid;
    gap: 12px
}

.app-menu-accordion-item {
    border: 1px solid #e5e7eb !important;
    border-radius: 18px !important;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 30px rgba(16,24,40,.06)
}

.app-menu-accordion-button {
    min-height: 58px;
    padding: 14px 18px;
    background: #fff;
    color: #111827;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

.app-menu-accordion-button:not(.collapsed) {
    background: #fff7f7;
    color: #111827
}

.app-menu-accordion-button span {
    font-weight: 900;
    font-size: 1.1rem
}

.app-menu-accordion-button small {
    margin-left: auto;
    margin-right: 10px;
    color: #667085;
    font-weight: 900
}

.app-menu-list {
    padding: 0;
    display: grid
}

.app-menu-item {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) 118px;
    gap: 14px;
    align-items: center;
    padding: 12px 14px;
    border-top: 1px solid #edf0f5;
    background: #fff
}

.app-menu-item-img {
    position: relative;
    width: 96px;
    aspect-ratio: 1/1;
    border-radius: 16px;
    overflow: hidden;
    background: #f2f4f7;
    border: 1px solid #e5e7eb
}

.app-menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.app-menu-item-img .app-food-badge {
    left: 8px;
    top: 8px;
    width: 15px;
    height: 15px
}

.app-menu-item-img .app-food-badge::after {
    inset: 3px
}

.app-menu-item-info {
    min-width: 0
}

.app-menu-item-info h3 {
    margin: 0;
    color: #111827;
    font-size: 1.02rem;
    line-height: 1.2;
    font-weight: 900
}

.app-menu-item-info p {
    margin: 5px 0 0;
    color: #667085;
    font-size: .88rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.app-menu-item-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px
}

.app-menu-item-meta span {
    display: inline-flex;
    align-items: center;
    color: #047857;
    background: #ecfdf3;
    border: 1px solid #bbf7d0;
    border-radius: 999px;
    padding: 4px 8px;
    font-size: .72rem;
    font-weight: 900
}

.app-menu-item-meta span.nonveg {
    color: #b91c1c;
    background: #fff1f2;
    border-color: #fecdd3
}

.app-menu-item-meta strong {
    color: #111827;
    font-size: 1.02rem
}

.app-menu-item-action {
    display: flex;
    justify-content: center;
    align-items: center
}

.app-menu-item-action .app-add-food {
    min-width: 86px;
    min-height: 40px;
    border-radius: 13px;
    padding: 8px 14px;
    font-size: .9rem
}

.app-qty-stepper {
    width: 106px;
    height: 40px;
    display: grid;
    grid-template-columns: 34px 1fr 34px;
    align-items: center;
    border: 1px solid #ef1c23;
    border-radius: 13px;
    overflow: hidden;
    background: #fff
}

.app-qty-stepper[hidden] {
    display: none
}

.app-qty-stepper button {
    height: 100%;
    border: 0;
    background: #fff5f5;
    color: #ef1c23;
    font-size: 1.15rem;
    font-weight: 900
}

.app-qty-stepper button:disabled {
    opacity: .65
}

.app-item-qty {
    text-align: center;
    color: #111827;
    font-weight: 900
}

.app-food-card {
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column
}

.app-food-image {
    position: relative;
    aspect-ratio: 16/10;
    background: #f2f4f7
}

.app-food-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.app-food-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    width: 18px;
    height: 18px;
    border: 2px solid #16a34a;
    background: #fff
}

.app-food-badge::after {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: #16a34a
}

.app-food-badge.nonveg {
    border-color: #dc2626
}

.app-food-badge.nonveg::after {
    background: #dc2626
}

.app-food-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1
}

.app-food-body p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 66px
}

.app-cart-bar {
    position: fixed;
    left: 50%;
    bottom: 104px;
    transform: translateX(-50%);
    width: min(680px, calc(100% - 28px));
    z-index: 1300;
    background: #071a3d;
    color: #fff;
    border-radius: 22px;
    box-shadow: 0 18px 44px rgba(7,26,61,.26);
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

.app-cart-bar strong,
.app-cart-bar span,
.app-cart-bar small {
    display: block
}

.app-cart-bar small {
    color: rgba(255,255,255,.72)
}

.app-form-panel {
    padding: 20px;
    margin-bottom: 18px
}

.app-checkout-form .form-control,
.app-coupon-form .form-control {
    border-radius: 14px;
    border-color: #d0d5dd;
    min-height: 48px
}

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

.app-prepaid-offer {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #bbf7d0;
    background: linear-gradient(135deg, #ecfdf3, #fff);
    color: #065f46;
    border-radius: 16px;
    padding: 12px
}

.app-prepaid-offer i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background: #16a34a;
    flex: 0 0 auto
}

.app-prepaid-offer strong,
.app-prepaid-offer span {
    display: block
}

.app-prepaid-offer strong {
    color: #064e3b;
    font-size: .95rem;
    font-weight: 900;
    line-height: 1.2
}

.app-prepaid-offer span {
    color: #047857;
    font-size: .8rem;
    font-weight: 800;
    margin-top: 2px
}

.app-pay-card {
    cursor: pointer;
    border: 1px solid #d0d5dd;
    border-radius: 16px;
    padding: 14px;
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 900
}

.app-pay-card small {
    display: inline-flex;
    align-items: center;
    margin-left: 6px;
    color: #047857;
    background: #d1fae5;
    border-radius: 999px;
    padding: 3px 7px;
    font-size: .68rem;
    font-weight: 900;
    white-space: nowrap
}

.app-pay-card.disabled {
    opacity: .55;
    cursor: not-allowed
}

.app-check-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800
}

.app-gst-fields[hidden] {
    display: none !important
}

.app-order-summary {
    padding: 20px;
    position: sticky;
    top: 100px
}

.app-order-summary h2 {
    font-size: 1.35rem;
    font-weight: 900;
    margin-bottom: 16px
}

.app-summary-list {
    display: grid;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb
}

.app-coupon-form {
    display: flex;
    gap: 10px;
    margin: 16px 0
}

.app-total-box {
    display: grid;
    gap: 10px
}

.app-total-box .grand {
    border-top: 1px solid #e5e7eb;
    padding-top: 12px;
    font-size: 1.1rem
}

.app-success-hero {
    padding: 38px 0
}

.app-success-card,
.app-empty-state {
    padding: 28px;
    text-align: center
}

.app-success-icon,
.app-empty-state i {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #dcfce7;
    color: #16a34a;
    font-size: 2rem;
    margin-bottom: 14px
}

.app-success-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap
}

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

.app-detail-grid div {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 12px
}

.app-detail-grid span {
    display: block;
    color: #667085;
    font-size: .82rem;
    font-weight: 800
}

.app-detail-grid strong {
    display: block;
    color: #111827;
    margin-top: 4px
}

.train-suggest-box {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    z-index: 20;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 18px 38px rgba(16,24,40,.14);
    overflow: hidden
}

.train-suggest-item {
    width: 100%;
    border: 0;
    background: #fff;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    text-align: left
}

.train-suggest-item:hover,
.train-suggest-item:focus {
    background: #f8fafc
}

.train-suggest-item strong {
    color: #ef1c23;
    min-width: 56px
}

.train-suggest-item span {
    font-weight: 800
}

.app-journey-form {
    padding: 24px
}

.app-journey-form select.form-control {
    appearance: auto
}

.app-route-preview {
    margin-top: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 14px;
    background: #f8fafc
}

.app-route-preview span,
.app-route-preview small {
    display: block
}

.app-route-preview span {
    color: #111827;
    font-weight: 900
}

.app-route-preview small {
    color: #667085;
    margin-top: 4px
}

.app-account-hero {
    padding: 26px 0 16px
}

.app-account-hero .app-page-title {
    font-size: clamp(1.45rem, 3vw, 2.1rem);
    margin: 8px 0 4px
}

.app-account-hero .lead-copy {
    font-size: .92rem
}

.app-account-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 12px 28px rgba(16,24,40,.06)
}

.app-track-search {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto
}

.app-track-search > span {
    color: #667085;
    font-size: .82rem;
    font-weight: 900
}

.app-order-history,
.app-wallet-list {
    display: grid;
    gap: 10px;
    margin-top: 14px
}

.app-history-card,
.app-wallet-card,
.app-refer-card,
.app-wallet-apply {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(16,24,40,.07)
}

.app-history-card {
    padding: 14px
}

.app-history-top,
.app-history-actions,
.app-wallet-card,
.app-wallet-row,
.app-wallet-apply {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

.app-history-top strong,
.app-current-status h2 {
    display: block;
    color: #111827;
    font-size: 1.05rem;
    font-weight: 900
}

.app-history-top span,
.app-history-meta span,
.app-wallet-row span,
.app-wallet-card span,
.app-refer-card span {
    color: #667085;
    font-size: .82rem;
    font-weight: 800
}

.app-history-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0
}

.app-history-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    border-radius: 999px;
    padding: 6px 9px
}

.app-history-actions {
    justify-content: flex-end
}

.app-current-status p {
    color: #667085;
    font-size: .92rem;
    font-weight: 700
}

.app-status-timeline {
    position: relative;
    display: grid;
    gap: 12px
}

.app-status-step {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    align-items: start
}

.app-status-step i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #667085;
    background: #f2f4f7;
    border: 1px solid #e5e7eb
}

.app-status-step.done i {
    color: #047857;
    background: #d1fae5;
    border-color: #bbf7d0
}

.app-status-step strong,
.app-wallet-row strong {
    display: block;
    color: #111827;
    font-size: .94rem;
    line-height: 1.25
}

.app-status-step span,
.app-wallet-row small {
    display: block;
    color: #667085;
    font-size: .78rem;
    font-weight: 800;
    margin-top: 3px
}

.app-wallet-card {
    padding: 16px
}

.app-wallet-card strong {
    display: block;
    color: #111827;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.1;
    margin-top: 3px
}

.app-wallet-row {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 11px 12px;
    background: #f8fafc
}

.app-wallet-row > div:last-child {
    text-align: right;
    font-weight: 900
}

.app-empty-inline {
    color: #667085;
    border: 1px dashed #d0d5dd;
    border-radius: 14px;
    padding: 14px;
    text-align: center;
    font-weight: 800
}

.app-refer-card {
    padding: 18px;
    text-align: center
}

.app-refer-card strong {
    display: inline-flex;
    color: #ef1c23;
    background: #fff1f1;
    border: 1px dashed #ef1c23;
    border-radius: 16px;
    padding: 12px 22px;
    margin: 8px 0 10px;
    font-size: 1.55rem;
    letter-spacing: .08em
}

.app-refer-card p {
    color: #667085;
    max-width: 560px;
    margin: 0 auto 14px;
    font-size: .92rem
}

.app-wallet-apply {
    padding: 12px;
    background: #f8fafc
}

.app-wallet-apply strong {
    display: block;
    color: #111827;
    font-size: 1.05rem;
    font-weight: 900;
    margin-top: 5px
}

.app-wallet-apply small {
    display: block;
    color: #667085;
    font-size: .76rem;
    font-weight: 800
}

.app-profile-card,
.app-profile-grid a {
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 32px rgba(16,24,40,.07)
}

.app-profile-card {
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 18px;
    padding: 14px
}

.app-profile-avatar {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: #fff1f1;
    color: #ef1c23;
    font-size: 1.5rem
}

.app-profile-card span,
.app-profile-card small,
.app-profile-grid span {
    display: block;
    color: #667085;
    font-size: .8rem;
    font-weight: 800
}

.app-profile-card strong {
    display: block;
    color: #111827;
    font-size: 1.12rem;
    font-weight: 900
}

.app-profile-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px
}

.app-profile-grid a {
    min-height: 112px;
    border-radius: 18px;
    padding: 14px;
    color: #111827;
    display: grid;
    align-content: center;
    gap: 4px
}

.app-profile-grid i {
    color: #ef1c23;
    font-size: 1.35rem
}

.app-profile-grid strong {
    font-size: .95rem;
    font-weight: 900
}

@media(max-width:991.98px) {
    .app-order-hero {
        padding-top: 22px
    }

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

    .app-order-summary {
        position: static
    }

    .app-restaurant-row {
        grid-template-columns: 1fr
    }

    .app-rest-menu-action {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        text-align: left
    }
}

@media(max-width:575.98px) {
    .app-order-section {
        padding-bottom: 118px
    }

    .app-stepper {
        gap: 6px
    }

    .app-stepper span {
        padding: 7px 9px;
        font-size: .72rem
    }

    .app-pay-grid,
    .app-detail-grid {
        grid-template-columns: 1fr
    }

    .app-cart-bar {
        bottom: 88px;
        border-radius: 18px
    }

    .app-cart-bar .btn {
        padding-left: 12px;
        padding-right: 12px
    }

    .app-station-list-head {
        align-items: center;
        flex-direction: row;
        padding: 13px 14px
    }

    .app-station-list-head .eyebrow {
        font-size: .72rem;
        padding: 6px 9px
    }

    .app-station-list-head h2 {
        font-size: 1rem;
        line-height: 1.15
    }

    .app-station-list-head h2 small {
        font-size: .72rem
    }

    .app-station-time {
        min-width: 86px;
        text-align: right
    }

    .app-station-time strong {
        font-size: 1rem;
        line-height: 1.1
    }

    .app-station-time span {
        font-size: .78rem;
        line-height: 1.2
    }

    .app-restaurant-row {
        gap: 10px;
        padding: 13px 14px
    }

    .app-row-title {
        align-items: flex-start;
        gap: 7px
    }

    .app-row-title h3 {
        font-size: 1.02rem;
        line-height: 1.15;
        flex: 1 1 140px
    }

    .app-status-badge {
        padding: 5px 8px;
        font-size: .72rem;
        line-height: 1.05
    }

    .app-rest-main p {
        margin-top: 5px;
        font-size: .88rem;
        line-height: 1.25
    }

    .app-rest-list-meta {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
        margin-top: 9px
    }

    .app-rest-list-meta > span {
        border-radius: 12px;
        width: auto;
        min-width: 0;
        justify-content: flex-start;
        padding: 7px 8px;
        font-size: .78rem;
        line-height: 1.15
    }

    .app-rest-list-meta > span:nth-child(3) {
        grid-column: span 1
    }

    .app-rest-list-meta > span:nth-child(4) {
        grid-column: span 1
    }

    .app-rest-list-meta > span:nth-child(n+5) {
        display: none
    }

    .app-rest-list-meta .app-diet-chip {
        grid-column: span 1;
        width: auto;
        min-height: 34px;
        align-items: center;
        background: transparent;
        border: 0;
        padding: 0
    }

    .app-diet-symbol {
        width: 20px;
        height: 20px;
        min-width: 20px
    }

    .app-diet-symbol::after {
        width: 10px;
        height: 10px
    }

    .app-rest-menu-action {
        grid-template-columns: auto minmax(132px, 1fr);
        gap: 8px;
        align-items: center
    }

    .app-rest-menu-action span {
        font-size: .82rem;
        text-align: left
    }

    .app-rest-menu-action .btn {
        min-height: 42px;
        padding: 9px 12px;
        border-radius: 13px;
        font-size: .92rem
    }

    .app-menu-accordion {
        gap: 10px
    }

    .app-menu-accordion-button {
        min-height: 50px;
        padding: 12px 14px
    }

    .app-menu-accordion-button span {
        font-size: 1rem
    }

    .app-menu-accordion-button small {
        font-size: .76rem
    }

    .app-menu-item {
        grid-template-columns: 72px minmax(0, 1fr) 82px;
        gap: 10px;
        padding: 10px
    }

    .app-menu-item-img {
        width: 72px;
        border-radius: 13px
    }

    .app-menu-item-info h3 {
        font-size: .92rem
    }

    .app-menu-item-info p {
        font-size: .78rem;
        line-height: 1.25;
        -webkit-line-clamp: 2
    }

    .app-menu-item-meta {
        gap: 6px;
        margin-top: 6px
    }

    .app-menu-item-meta span {
        display: none
    }

    .app-menu-item-meta strong {
        font-size: .94rem
    }

    .app-menu-item-action .app-add-food {
        min-width: 72px;
        min-height: 36px;
        border-radius: 12px;
        padding: 7px 10px;
        font-size: .84rem
    }

    .app-qty-stepper {
        width: 78px;
        height: 36px;
        grid-template-columns: 25px 1fr 25px;
        border-radius: 12px
    }

    .app-qty-stepper button {
        font-size: 1rem
    }

    .app-account-hero {
        padding: 18px 0 12px
    }

    .app-account-search,
    .app-track-search {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 9px
    }

    .app-track-search > span {
        display: none
    }

    .app-history-card,
    .app-wallet-card,
    .app-refer-card {
        border-radius: 16px;
        padding: 12px
    }

    .app-history-top {
        align-items: flex-start
    }

    .app-history-actions {
        display: grid;
        grid-template-columns: 1fr 1fr
    }

    .app-wallet-card,
    .app-wallet-apply {
        align-items: stretch;
        flex-direction: column
    }

    .app-wallet-card .btn {
        width: 100%
    }

    .app-wallet-row {
        align-items: flex-start
    }

    .app-refer-card strong {
        font-size: 1.25rem;
        width: 100%;
        justify-content: center
    }

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

    .app-profile-grid a {
        min-height: 96px;
        border-radius: 16px
    }

    .app-station-showcase {
        padding: 16px;
        border-radius: 18px
    }

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

    .app-station-grid span {
        min-height: 40px;
        border-radius: 12px;
        padding: 8px 9px;
        font-size: .78rem
    }

    .app-station-info-grid {
        grid-template-columns: 1fr
    }

.app-download-band {
        min-height: 270px;
        border-radius: 22px
    }
}

.app-global-loader {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(11, 24, 48, .42);
    opacity: 0;
    pointer-events: none;
    transition: opacity .16s ease;
    backdrop-filter: blur(3px)
}

.app-global-loader.show {
    opacity: 1;
    pointer-events: auto
}

.app-loader-panel {
    width: min(260px, 100%);
    min-height: 158px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 22px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 24px 70px rgba(16, 37, 74, .28);
    display: grid;
    place-items: center;
    align-content: center;
    gap: 9px;
    color: var(--rc-navy);
    text-align: center;
    padding: 22px
}

.app-loader-panel strong {
    font-size: 1rem;
    font-weight: 900
}

.app-loader-panel small {
    color: var(--rc-muted);
    font-weight: 800
}

.app-loader-spinner {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 4px solid #ffe2e3;
    border-top-color: var(--rc-red);
    animation: app-loader-spin .78s linear infinite
}

@keyframes app-loader-spin {
    to {
        transform: rotate(360deg)
    }
}
