/* ============================================================
   FOOD DELIVERY APP — standalone solution page  (v2 LIGHT)
   Namespace: .fda-*
   Design language: premium minimalist (Apple/Stripe-inspired)
   — clean white canvas, soft pastel glows, vibrant coral→violet
     accents, glassmorphism, soft shadows, large Inter type.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ---------- page tokens ---------- */
.food-delivery-page {
    --fda-ink: #0F172A;
    /* headings */
    --fda-body: #475569;
    /* body text */
    --fda-muted: #94A3B8;
    --fda-bg: #FAFBFF;
    --fda-accent: #FF6B35;
    /* vibrant coral */
    --fda-accent-2: #7C3AED;
    /* violet */
    --fda-mint: #34D399;
    --fda-sky: #38BDF8;
    --fda-grad: linear-gradient(120deg, #FF6B35 0%, #FF3D77 55%, #7C3AED 120%);
    --fda-card-shadow: 0 20px 60px -20px rgba(15, 23, 42, .10), 0 4px 16px -6px rgba(15, 23, 42, .05);
    --fda-card-shadow-hover: 0 34px 80px -24px rgba(15, 23, 42, .18), 0 8px 24px -8px rgba(255, 107, 53, .12);
    --fda-line: rgba(15, 23, 42, .08);
    --fda-radius: 24px;
    --fda-glass: rgba(255, 255, 255, .62);
    --fda-glass-border: rgba(255, 255, 255, .85);
}

/* smooth scrolling while this page is loaded */
html:has(.food-delivery-page) {
    scroll-behavior: smooth;
}

.fda-main {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background:
        radial-gradient(1000px 560px at 12% -6%, rgba(255, 107, 53, .10), transparent 60%),
        radial-gradient(900px 520px at 95% 4%, rgba(124, 58, 237, .09), transparent 60%),
        radial-gradient(800px 500px at 50% 40%, rgba(56, 189, 248, .05), transparent 60%),
        var(--fda-bg);
    color: var(--fda-body);
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

.fda-main h1,
.fda-main h2,
.fda-main h3,
.fda-main h4 {
    color: var(--fda-ink);
    font-family: inherit;
}

.fda-wrap {
    width: min(1200px, 92%);
    margin-inline: auto;
}

/* ---------- shared bits ---------- */
.fda-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .76rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--fda-accent);
    padding: .48rem 1rem;
    border: 1px solid rgba(255, 107, 53, .22);
    border-radius: 100px;
    background: rgba(255, 107, 53, .07);
}

.fda-btn {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-weight: 700;
    font-size: .98rem;
    padding: 1rem 1.8rem;
    border-radius: 100px;
    text-decoration: none;
    transition: transform .3s cubic-bezier(.2, .8, .3, 1), box-shadow .3s, background .3s, color .3s;
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.fda-btn--primary {
    background: var(--fda-grad);
    color: #fff;
    box-shadow: 0 14px 34px -12px rgba(255, 61, 119, .5);
}

/* shine sweep on hover */
.fda-btn--primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, .35) 50%, transparent 70%);
    transform: translateX(-110%);
    transition: transform .6s;
}

.fda-btn--primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 22px 48px -14px rgba(255, 61, 119, .6);
    color: #fff;
}

.fda-btn--primary:hover::after {
    transform: translateX(110%);
}

.fda-btn--ghost {
    background: rgba(255, 255, 255, .7);
    color: var(--fda-ink);
    border-color: var(--fda-line);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.fda-btn--ghost:hover {
    border-color: var(--fda-accent);
    color: var(--fda-accent);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px -14px rgba(15, 23, 42, .15);
}

/* ---------- section shell ---------- */
.fda-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.fda-head {
    max-width: 760px;
    margin: 0 auto 3.4rem;
    text-align: center;
}

.fda-head h2 {
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    font-weight: 800;
    letter-spacing: -.03em;
    margin: 1.1rem 0 1rem;
    line-height: 1.12;
}

.fda-head h2 span {
    background: var(--fda-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fda-head p {
    color: var(--fda-body);
    font-size: 1.06rem;
    line-height: 1.75;
}

/* ============================================================
   HERO
   ============================================================ */
.fda-hero {
    padding: clamp(2rem, 5vw, 4rem) 0 clamp(3.5rem, 7vw, 6rem);
}

.fda-breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    color: var(--fda-muted);
    margin-bottom: 2.4rem;
    flex-wrap: wrap;
}

.fda-breadcrumb a {
    color: var(--fda-body);
    text-decoration: none;
    transition: color .2s;
}

.fda-breadcrumb a:hover {
    color: var(--fda-accent);
}

.fda-breadcrumb .current {
    color: var(--fda-accent);
    font-weight: 600;
}

.fda-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
}

.fda-hero h1 {
    font-size: clamp(2.4rem, 5.2vw, 4rem);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -.035em;
    margin: 1.3rem 0 1.4rem;
}

.fda-hero h1 span {
    background: var(--fda-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fda-hero-lead {
    font-size: 1.12rem;
    line-height: 1.75;
    color: var(--fda-body);
    max-width: 48ch;
}

.fda-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0 2rem;
}

.fda-hero-mini {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* glass stat pills */
.fda-hero-mini div {
    background: var(--fda-glass);
    border: 1px solid var(--fda-glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 18px;
    padding: .8rem 1.3rem;
    box-shadow: 0 10px 30px -16px rgba(15, 23, 42, .14);
}

.fda-hero-mini div strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -.02em;
    background: var(--fda-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fda-hero-mini div span {
    font-size: .78rem;
    color: var(--fda-muted);
    font-weight: 500;
}

/* ---------- phone mockup (light) ---------- */
.fda-phone-wrap {
    display: grid;
    place-items: center;
    position: relative;
}

/* soft glow behind phone */
.fda-phone-wrap::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, .16), rgba(124, 58, 237, .10) 55%, transparent 70%);
    filter: blur(10px);
    z-index: 0;
}

.fda-phone {
    width: 264px;
    height: 540px;
    border-radius: 44px;
    background: linear-gradient(160deg, #fff, #F1F5F9);
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 50px 100px -34px rgba(15, 23, 42, .28), inset 0 0 0 8px #fff;
    padding: 18px 14px;
    position: relative;
    z-index: 1;
    transition: transform .5s cubic-bezier(.2, .8, .3, 1);
}

.fda-phone:hover {
    transform: translateY(-8px) rotate(-1deg);
}

.fda-phone::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 88px;
    height: 20px;
    background: #EDF1F7;
    border-radius: 0 0 14px 14px;
}

.fda-screen {
    height: 100%;
    border-radius: 32px;
    background:
        radial-gradient(220px 130px at 80% 0%, rgba(255, 107, 53, .12), transparent 70%),
        linear-gradient(180deg, #FFFFFF, #F8FAFF);
    border: 1px solid rgba(15, 23, 42, .05);
    padding: 36px 14px 16px;
    overflow: hidden;
}

.fda-screen-bar {
    height: 38px;
    border-radius: 100px;
    background: #F1F5F9;
    display: flex;
    align-items: center;
    padding: 0 .9rem;
    gap: .5rem;
    color: var(--fda-muted);
    font-size: .72rem;
    font-weight: 500;
}

.fda-screen-bar i {
    color: var(--fda-accent);
}

.fda-screen-card {
    margin-top: .8rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .06);
    box-shadow: 0 8px 22px -12px rgba(15, 23, 42, .10);
    padding: .75rem;
    display: flex;
    gap: .6rem;
    align-items: center;
    transition: transform .3s;
}

.fda-screen-card:hover {
    transform: scale(1.03);
}

.fda-screen-thumb {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 107, 53, .14), rgba(255, 61, 119, .10));
    display: grid;
    place-items: center;
    color: var(--fda-accent);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.fda-screen-line {
    height: 8px;
    border-radius: 6px;
    background: #E2E8F0;
    margin-bottom: .4rem;
}

.fda-screen-line.sm {
    width: 60%;
    background: #EDF2F7;
}

/* glass floating chips */
.fda-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: .55rem;
    background: var(--fda-glass);
    border: 1px solid var(--fda-glass-border);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 16px;
    padding: .7rem .95rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--fda-ink);
    box-shadow: 0 20px 44px -18px rgba(15, 23, 42, .22);
    z-index: 2;
    animation: fdaFloat 5s ease-in-out infinite;
}

.fda-float i {
    color: var(--fda-accent);
    font-size: 1.15rem;
}

.fda-float--tl {
    top: 8%;
    left: -4%;
}

.fda-float--br {
    bottom: 10%;
    right: -6%;
    animation-delay: 2.5s;
}

.fda-float--br i {
    color: var(--fda-mint);
}

@keyframes fdaFloat {

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

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

/* ============================================================
   APPS INCLUDED — 4 white cards
   ============================================================ */
.fda-apps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
}

.fda-app-card {
    border: 1px solid var(--fda-line);
    border-radius: var(--fda-radius);
    padding: 1.9rem 1.7rem;
    background: #fff;
    box-shadow: var(--fda-card-shadow);
    transition: transform .35s cubic-bezier(.2, .8, .3, 1), box-shadow .35s, border-color .35s;
}

.fda-app-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--fda-card-shadow-hover);
    border-color: rgba(255, 107, 53, .3);
}

.fda-app-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    margin-bottom: 1.1rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, .13), rgba(124, 58, 237, .09));
    color: var(--fda-accent);
    transition: transform .35s, background .35s, color .35s;
}

.fda-app-card:hover .fda-app-icon {
    transform: scale(1.08) rotate(-4deg);
    background: var(--fda-grad);
    color: #fff;
}

.fda-app-card h3 {
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: -.01em;
    margin-bottom: .5rem;
}

.fda-app-card p {
    color: var(--fda-body);
    font-size: .92rem;
    line-height: 1.65;
}

/* ============================================================
   ZIG-ZAG FEATURE ROWS  — soft pastel band
   ============================================================ */
.fda-zig {
    background: linear-gradient(180deg, rgba(255, 255, 255, .7), rgba(248, 250, 255, .4));
    border-block: 1px solid var(--fda-line);
}

.fda-zig-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
    padding: clamp(2rem, 4vw, 3.5rem) 0;
}

.fda-zig-row+.fda-zig-row {
    border-top: 1px solid var(--fda-line);
}

.fda-zig-row:nth-child(even) .fda-zig-visual {
    order: -1;
}

.fda-zig-copy .fda-zig-kicker {
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--fda-accent-2);
    font-weight: 700;
}

.fda-zig-copy h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -.025em;
    margin: .7rem 0 .9rem;
    line-height: 1.15;
}

.fda-zig-copy p {
    color: var(--fda-body);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.fda-zig-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .65rem;
}

.fda-zig-list li {
    display: flex;
    gap: .6rem;
    align-items: flex-start;
    color: var(--fda-ink);
    font-size: .95rem;
    font-weight: 500;
}

.fda-zig-list i {
    color: var(--fda-mint);
    margin-top: .12rem;
}

/* visual panel — glass on pastel */
.fda-zig-visual {
    border: 1px solid var(--fda-glass-border);
    border-radius: 28px;
    min-height: 280px;
    background:
        radial-gradient(320px 200px at 70% 20%, rgba(255, 107, 53, .14), transparent 70%),
        radial-gradient(280px 180px at 20% 80%, rgba(124, 58, 237, .10), transparent 70%),
        rgba(255, 255, 255, .6);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--fda-card-shadow);
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    transition: transform .4s, box-shadow .4s;
}

.fda-zig-visual:hover {
    transform: translateY(-6px);
    box-shadow: var(--fda-card-shadow-hover);
}

.fda-zig-visual>i {
    font-size: 4.6rem;
    background: var(--fda-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 14px 30px rgba(255, 107, 53, .25));
}

.fda-zig-visual .fda-pin {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .8);
    border: 1px solid var(--fda-glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 12px 26px -12px rgba(15, 23, 42, .18);
    display: grid;
    place-items: center;
    color: var(--fda-accent);
    font-size: 1.3rem;
    animation: fdaFloat 6s ease-in-out infinite;
}

.fda-pin.p1 {
    top: 14%;
    left: 12%;
}

.fda-pin.p2 {
    bottom: 16%;
    left: 18%;
    color: var(--fda-mint);
    animation-delay: 1.6s;
}

.fda-pin.p3 {
    top: 20%;
    right: 14%;
    color: var(--fda-sky);
    animation-delay: 3.2s;
}

/* ============================================================
   BUSINESS MODELS
   ============================================================ */
.fda-models-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.3rem;
}

.fda-model {
    border: 1px solid var(--fda-line);
    border-radius: 20px;
    padding: 1.7rem 1.4rem;
    background: #fff;
    box-shadow: var(--fda-card-shadow);
    text-align: center;
    transition: transform .35s cubic-bezier(.2, .8, .3, 1), box-shadow .35s;
}

.fda-model:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--fda-card-shadow-hover);
}

.fda-model i {
    font-size: 1.8rem;
    background: var(--fda-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fda-model h4 {
    font-size: 1.02rem;
    font-weight: 700;
    margin: .8rem 0 .45rem;
    letter-spacing: -.01em;
}

.fda-model p {
    color: var(--fda-body);
    font-size: .86rem;
    line-height: 1.6;
}

/* ============================================================
   INTEGRATIONS — glass chips
   ============================================================ */
.fda-int-row {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    justify-content: center;
}

.fda-int-chip {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: .92rem;
    font-weight: 600;
    color: var(--fda-ink);
    padding: .8rem 1.35rem;
    border: 1px solid var(--fda-glass-border);
    border-radius: 100px;
    background: var(--fda-glass);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 10px 26px -16px rgba(15, 23, 42, .16);
    transition: transform .3s, box-shadow .3s, border-color .3s;
}

.fda-int-chip:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 53, .35);
    box-shadow: 0 18px 36px -16px rgba(255, 107, 53, .25);
}

.fda-int-chip i {
    color: var(--fda-accent);
}

/* ============================================================
   VERTICAL TIMELINE
   ============================================================ */
.fda-timeline {
    max-width: 780px;
    margin-inline: auto;
    position: relative;
    padding-left: 2.6rem;
}

.fda-timeline::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 6px;
    bottom: 6px;
    width: 3px;
    border-radius: 3px;
    background: linear-gradient(180deg, #FF6B35, #FF3D77 50%, #7C3AED);
    opacity: .35;
}

.fda-tl-item {
    position: relative;
    padding: 0 0 2.3rem;
}

.fda-tl-item:last-child {
    padding-bottom: 0;
}

.fda-tl-item::before {
    content: "";
    position: absolute;
    left: -2.6rem;
    top: 2px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--fda-accent);
    box-shadow: 0 0 0 5px rgba(255, 107, 53, .12);
    transition: transform .3s, box-shadow .3s;
}

.fda-tl-item:hover::before {
    transform: scale(1.15);
    box-shadow: 0 0 0 8px rgba(255, 107, 53, .14);
}

.fda-tl-step {
    font-size: .74rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--fda-accent);
    font-weight: 700;
}

.fda-tl-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -.015em;
    margin: .35rem 0 .4rem;
}

.fda-tl-item p {
    color: var(--fda-body);
    font-size: .95rem;
    line-height: 1.7;
}

/* ============================================================
   FAQ — white cards
   ============================================================ */
.fda-faq-list {
    max-width: 850px;
    margin-inline: auto;
    display: grid;
    gap: 1rem;
}

.fda-faq {
    border: 1px solid var(--fda-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--fda-card-shadow);
    overflow: hidden;
    transition: box-shadow .3s, border-color .3s;
}

.fda-faq:hover {
    border-color: rgba(255, 107, 53, .25);
}

.fda-faq[open] {
    box-shadow: var(--fda-card-shadow-hover);
    border-color: rgba(255, 107, 53, .3);
}

.fda-faq summary {
    list-style: none;
    cursor: pointer;
    padding: 1.25rem 1.6rem;
    font-weight: 600;
    font-size: 1.03rem;
    color: var(--fda-ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.fda-faq summary::-webkit-details-marker {
    display: none;
}

.fda-faq summary i {
    color: var(--fda-accent);
    transition: transform .3s;
    flex-shrink: 0;
}

.fda-faq[open] summary i {
    transform: rotate(45deg);
}

.fda-faq p {
    padding: 0 1.6rem 1.4rem;
    color: var(--fda-body);
    line-height: 1.75;
    font-size: .95rem;
    margin: 0;
}

/* ============================================================
   CTA — vibrant gradient card
   ============================================================ */
.fda-cta {
    padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.fda-cta-inner {
    background: var(--fda-grad);
    border-radius: 32px;
    padding: clamp(2.8rem, 5.5vw, 4.5rem);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 90px -30px rgba(255, 61, 119, .45);
}

/* decorative glass circles */
.fda-cta-inner::before,
.fda-cta-inner::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(6px);
}

.fda-cta-inner::before {
    width: 220px;
    height: 220px;
    top: -80px;
    left: -60px;
}

.fda-cta-inner::after {
    width: 300px;
    height: 300px;
    bottom: -140px;
    right: -80px;
}

.fda-cta-inner h2 {
    font-size: clamp(1.8rem, 3.6vw, 2.7rem);
    font-weight: 800;
    letter-spacing: -.025em;
    color: #fff;
    margin-bottom: .8rem;
    position: relative;
    z-index: 1;
}

.fda-cta-inner p {
    color: rgba(255, 255, 255, .88);
    max-width: 52ch;
    margin: 0 auto 1.9rem;
    position: relative;
    z-index: 1;
}

.fda-cta .fda-btn--primary {
    background: #fff;
    color: #FF3D77;
    box-shadow: 0 16px 38px -14px rgba(0, 0, 0, .3);
    position: relative;
    z-index: 1;
}

.fda-cta .fda-btn--primary:hover {
    background: var(--fda-ink);
    color: #fff;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .fda-hero-grid {
        grid-template-columns: 1fr;
    }

    .fda-phone-wrap {
        margin-top: 1.5rem;
    }

    .fda-apps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fda-models-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fda-zig-row {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .fda-zig-row:nth-child(even) .fda-zig-visual {
        order: 0;
    }
}

@media (max-width: 560px) {

    .fda-apps-grid,
    .fda-models-grid {
        grid-template-columns: 1fr;
    }

    .fda-float--tl {
        left: 0;
    }

    .fda-float--br {
        right: 0;
    }

    .fda-hero-mini {
        gap: .7rem;
    }

    .fda-hero-mini div {
        flex: 1 1 40%;
    }
}

/* respect reduced-motion users */
@media (prefers-reduced-motion: reduce) {

    .fda-float,
    .fda-pin {
        animation: none;
    }

    html:has(.food-delivery-page) {
        scroll-behavior: auto;
    }
}
