/* ============================================================
   GRECO GYROS — Shared stylesheet
   ============================================================ */

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Design tokens */
:root {
    --bg: #0e0a08;
    --bg-soft: #1d1712;
    --bg-card: #1a1410;
    --bg-card-hover: #251d17;
    --text: #f4f0e6;
    --text-muted: #b8b3a6;
    --text-dim: #8a8578;
    --red: #d32027;
    --red-hover: #ef2a32;
    --red-glow: rgba(211, 32, 39, 0.45);
    --gold: #c9a96a;
    --gold-soft: rgba(201, 169, 106, 0.25);
    --border: rgba(245, 230, 200, 0.08);
    --border-strong: rgba(201, 169, 106, 0.3);

    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;

    --container: 1400px;
    --container-narrow: 880px;

    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-strong: 0 10px 40px rgba(0, 0, 0, 0.6);

    --header-h: 72px;
}

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    overflow-x: clip;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    position: relative;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--red);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4 {
    line-height: 1.15;
    color: var(--text);
}

/* ============================================================
   Layout helpers
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: var(--container-narrow);
}

.container--rel {
    position: relative;
}

.text-red {
    color: var(--red);
}

.section--with-olives {
    position: relative;
    overflow: hidden;
}

.section-action {
    text-align: center;
    margin-top: 44px;
    position: relative;
    z-index: 2;
}

.menu-loading {
    text-align: center;
    color: var(--text-muted);
    padding: 24px 0;
}

.section {
    padding: clamp(36px, 6vw, 70px) 0;
    position: relative;
}

/* Soft section fades in from var(--bg) at top and out to var(--bg) at bottom,
   so the boundary with adjacent plain sections is invisible */
.section--soft {
    background: linear-gradient(to bottom,
        var(--bg) 0%,
        var(--bg-soft) 8%,
        var(--bg-soft) 92%,
        var(--bg) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: clamp(24px, 3vw, 40px);
}

.section-header .eyebrow {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
    font-weight: 600;
}

.section-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.section-header h2 .accent {
    color: var(--red);
}

.section-header .lead {
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
}

/* Olive divider */
.divider-olive {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 26px auto;
    width: 100%;
    max-width: 420px;
}

.divider-olive .line {
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.6;
}

.divider-olive .olive {
    width: 88px;
    opacity: 0.85;
}

.divider-olive .olive--flip {
    transform: scaleX(-1);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 100px;
    transition: all 0.25s ease;
    cursor: pointer;
    white-space: nowrap;
    border: 1px solid transparent;
}

.btn--primary {
    background: var(--red);
    color: #fff;
    box-shadow: 0 4px 20px var(--red-glow);
}

.btn--primary:hover {
    background: var(--red-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--red-glow);
}

.btn--ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border-strong);
}

.btn--ghost:hover {
    background: rgba(201, 169, 106, 0.08);
    color: var(--text);
    border-color: var(--gold);
}

.btn--glovo {
    background: #FFC244;
    color: #00103A;
    box-shadow: 0 4px 20px rgba(255, 194, 68, 0.35);
}

.btn--glovo:hover {
    background: #FFD46B;
    color: #00103A;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 194, 68, 0.5);
}

.btn--wolt {
    background: #00C2E8;
    color: #00103A;
    box-shadow: 0 4px 20px rgba(0, 194, 232, 0.35);
}

.btn--wolt:hover {
    background: #3DD4F0;
    color: #00103A;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 194, 232, 0.5);
}

/* ============================================================
   Header / Navigation
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    height: var(--header-h);
    transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header--scrolled {
    background: rgba(14, 10, 8, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: var(--border);
}

/* When the mobile nav is open, drop the header's backdrop-filter. Otherwise
   it creates a containing block that traps the fixed-positioned .nav (a header
   descendant) inside the 72px-tall header bounds instead of the viewport. */
body.nav-open .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.site-header__inner {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
}

/* Mobile — switch to flex so hamburger sits firmly on the right edge */
@media (max-width: 880px) {
    .site-header__inner {
        display: flex;
        justify-content: space-between;
        gap: 12px;
    }
}

.site-header__brand {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 100;
}

.site-header__right {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 100;
}

.site-header__cta {
    padding: 11px 22px;
    font-size: 0.85rem;
    letter-spacing: 1.8px;
}

.site-header__cta svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}


.site-header__brand img {
    height: calc(var(--header-h) - 8px);
    width: auto;
}

.nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    position: relative;
}

.nav__link:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}

.nav__link--active {
    color: var(--text);
}

.nav__link--active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
}

/* Nav-internal CTA — only visible inside mobile slide-in panel */
.nav__cta {
    display: none;
}

/* Hamburger button */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.05);
}

.nav-toggle__bars {
    width: 22px;
    height: 16px;
    position: relative;
}

.nav-toggle__bars span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 7px; }
.nav-toggle__bars span:nth-child(3) { top: 14px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) {
    top: 7px;
    transform: rotate(-45deg);
}

/* ============================================================
   Hero (homepage)
   ============================================================ */
.hero {
    position: relative;
    z-index: 2;
    min-height: clamp(580px, calc(100vh - 320px), 720px);
    display: flex;
    align-items: center;
    text-align: left;
    padding: calc(var(--header-h) + 8px) 24px 0;
    background: var(--bg);
    isolation: isolate;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 65% at 78% 45%, rgba(211, 32, 39, 0.12), transparent 60%),
        radial-gradient(ellipse 50% 60% at 100% 100%, rgba(150, 25, 30, 0.08), transparent 55%),
        radial-gradient(ellipse 60% 50% at 0% 0%, rgba(40, 20, 14, 0.5), transparent 60%),
        linear-gradient(135deg, transparent 0%, rgba(35, 12, 10, 0.35) 50%, transparent 100%);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(to bottom, transparent 55%, var(--bg) 100%),
        radial-gradient(ellipse 90% 55% at 50% 25%, transparent 50%, rgba(0, 0, 0, 0.22) 100%);
}

/* Tighter top padding for first content section so its header peeks above the fold */
.hero + .section {
    padding-top: 0;
}

/* Background landmark images (kamara, tesaloniki) */
.hero__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--container);
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero__bg img {
    position: absolute;
    opacity: 0.5;
    mix-blend-mode: screen;
    filter: grayscale(1) contrast(1.25) brightness(1.1);
    -webkit-mask-image: radial-gradient(ellipse closest-side at center, #000 60%, transparent 100%);
            mask-image: radial-gradient(ellipse closest-side at center, #000 60%, transparent 100%);
}

.hero__bg .bg-left {
    left: 0;
    bottom: 0;
    width: 46%;
    max-width: 580px;
}

.hero__bg .bg-right {
    right: 0;
    top: 0;
    width: 40%;
    max-width: 500px;
}

@media (max-width: 880px) {
    .hero__bg .bg-left {
        bottom: auto;
        top: 40%;
        width: 70%;
        opacity: 0.3;
    }
    .hero__bg .bg-right {
        right: -10%;
        top: 0;
        width: 60%;
        opacity: 0.3;
    }

    /* Soften the red glow on mobile — desktop layout has the button on the left,
       but on mobile the centered CTAs sit right under the bright spot */
    .hero::before {
        background:
            radial-gradient(ellipse 90% 55% at 50% 38%, rgba(211, 32, 39, 0.15), transparent 65%),
            radial-gradient(ellipse 60% 50% at 0% 0%, rgba(40, 20, 14, 0.5), transparent 60%),
            linear-gradient(135deg, transparent 0%, rgba(35, 12, 10, 0.35) 50%, transparent 100%);
    }
}

.hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(28px, 5vw, 70px);
}

@media (max-width: 880px) {
    .hero {
        text-align: center;
    }
    .hero__inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 30px;
    }
}

.hero__content {
    position: relative;
    z-index: 2;
}


.hero__tagline {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(1.4rem, 3.5vw, 1.9rem);
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--gold);
}

.hero__headline {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 6px 0 18px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.hero__headline .accent {
    color: var(--red);
    text-shadow: 0 0 30px var(--red-glow);
}

.hero__description {
    color: var(--text-muted);
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    line-height: 1.65;
    max-width: 520px;
    margin-bottom: 28px;
}

@media (max-width: 880px) {
    .hero__description {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero__cta {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

@media (max-width: 880px) {
    .hero__cta {
        justify-content: center;
    }
}

.hero__features-viewport {
    width: 100%;
}

.hero__features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    padding: 0;
    margin: 0;
}

.hero__features li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* Hide HTML-duplicated marquee items by default (desktop). They're only
   visible on mobile where the marquee layout is active. */
.hero__features li[aria-hidden="true"] {
    display: none;
}

/* Mobile — marquee layout applied from initial render to avoid CLS when
   JS adds .is-marquee. Items are duplicated in HTML for seamless looping. */
@media (max-width: 880px) {
    .hero__features-viewport {
        overflow: hidden;
        margin: 0 -24px;
        width: calc(100% + 48px);
        -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
                mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
    }

    .hero__features {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 32px;
        padding-right: 32px;
        width: max-content;
    }

    .hero__features li {
        flex-shrink: 0;
    }

    .hero__features li[aria-hidden="true"] {
        display: inline-flex;
    }

    /* Animation only enabled when JS adds .is-marquee
       (respects reduced-motion preference) */
    .hero__features.is-marquee {
        animation: hero-features-marquee 18s linear infinite;
    }

    @keyframes hero-features-marquee {
        from { transform: translateX(0); }
        to   { transform: translateX(-50%); }
    }
}

/* Pause on hover only on real mouse-pointer devices. Both (hover: hover) and
   (pointer: fine) are required because some mobile browsers incorrectly report
   hover: hover, which would freeze the marquee on tap. */
@media (max-width: 880px) and (hover: hover) and (pointer: fine) {
    .hero__features.is-marquee:hover {
        animation-play-state: paused;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__features.is-marquee {
        animation: none;
    }
}

.hero__features svg {
    width: 16px;
    height: 16px;
    color: var(--red);
    flex-shrink: 0;
}

/* Hero media — wrapper (no clipping, so stamp can extend outside frame) */
.hero__media {
    position: relative;
    width: 100%;
    max-width: 620px;
    justify-self: end;
}

@media (max-width: 880px) {
    .hero__media {
        display: none;
    }
}

/* The actual framed cinematic photo (clipped to rounded corners) */
.hero__media-frame {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #0a0604;
    border: 1px solid var(--border-strong);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(211, 32, 39, 0.15);
}

.hero__media-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Logo stamp — anchored to left edge, lower portion of the media frame */
.hero__media-stamp {
    position: absolute;
    left: 0;
    top: 90%;
    transform: translate(-50%, -50%);
    width: clamp(95px, 11vw, 130px);
    height: auto;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.7));
    z-index: 10;
    pointer-events: none;
}

@media (max-width: 880px) {
    .hero__media-stamp {
        width: clamp(80px, 14vw, 110px);
    }
}

/* Decorative olive corners (for section accents) */
.olive-corner {
    position: absolute;
    width: clamp(120px, 14vw, 200px);
    pointer-events: none;
    opacity: 0.5;
    z-index: 0;
}

.olive-corner--tl { top: 10px;    left: -30px;  transform: rotate(-15deg); }
.olive-corner--tr { top: 10px;    right: -30px; transform: scaleX(-1) rotate(-15deg); }
.olive-corner--bl { bottom: 10px; left: -30px;  transform: rotate(165deg); }
.olive-corner--br { bottom: 10px; right: -30px; transform: scaleX(-1) rotate(-15deg); }

/* ============================================================
   Page header (sub-pages)
   ============================================================ */
.page-header {
    position: relative;
    padding: calc(var(--header-h) + clamp(20px, 3vw, 40px)) 24px clamp(30px, 4vw, 50px);
    min-height: clamp(280px, 38vh, 400px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    isolation: isolate;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 50% 30%, rgba(211, 32, 39, 0.08), transparent 70%),
        linear-gradient(180deg, var(--bg-soft), var(--bg));
    z-index: 0;
}

/* Decorative Greek landmarks (kamara, tesaloniki) — identical treatment to hero */
.page-header__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
    max-width: var(--container);
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.page-header__bg img {
    position: absolute;
    opacity: 0.45;
    mix-blend-mode: screen;
    filter: grayscale(1) contrast(1.25) brightness(1.1);
    -webkit-mask-image: radial-gradient(ellipse closest-side at center, #000 60%, transparent 100%);
            mask-image: radial-gradient(ellipse closest-side at center, #000 60%, transparent 100%);
}

.page-header__bg .bg-left {
    left: 0;
    bottom: 0;
    width: 42%;
    max-width: 520px;
}

.page-header__bg .bg-right {
    right: 0;
    top: 0;
    width: 38%;
    max-width: 460px;
}

@media (max-width: 880px) {
    .page-header {
        padding-top: calc(var(--header-h) + 24px);
        padding-bottom: 32px;
        min-height: 0;
        align-items: flex-start;
    }
    .page-header__bg .bg-left {
        bottom: auto;
        top: 45%;
        width: 70%;
        opacity: 0.28;
    }
    .page-header__bg .bg-right {
        right: -10%;
        top: 0;
        width: 60%;
        opacity: 0.28;
    }
}

.page-header__inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}

.page-header .eyebrow {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(1.4rem, 3.5vw, 1.9rem);
    color: var(--gold);
    margin-bottom: 6px;
    font-weight: 600;
}

.page-header h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.4rem, 7vw, 4rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.page-header h1 .accent {
    color: var(--red);
}

.page-header p {
    color: var(--text-muted);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    max-width: 620px;
    margin: 0 auto;
}

/* ============================================================
   Roadmap — "Kako pravimo gyros" (4-step horizontal timeline)
   ============================================================ */
.roadmap {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

/* Connecting line — desktop: horizontal across markers */
.roadmap::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right,
        rgba(211, 32, 39, 0) 0%,
        rgba(211, 32, 39, 0.35) 18%,
        rgba(211, 32, 39, 0.5) 50%,
        rgba(211, 32, 39, 0.35) 82%,
        rgba(211, 32, 39, 0) 100%);
    z-index: 0;
}

.roadmap__step {
    position: relative;
    z-index: 1;
    text-align: center;
    transition: transform 0.3s ease;
}

.roadmap__step:hover {
    transform: translateY(-4px);
}

.roadmap__marker {
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--red);
    box-shadow:
        0 0 24px rgba(211, 32, 39, 0.3),
        inset 0 0 14px rgba(211, 32, 39, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.roadmap__step:hover .roadmap__marker {
    background: var(--red);
    color: #fff;
    box-shadow:
        0 0 32px rgba(211, 32, 39, 0.5),
        inset 0 0 14px rgba(0, 0, 0, 0.2);
}

.roadmap__body h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    color: var(--text);
}

.roadmap__body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
    max-width: 260px;
    margin: 0 auto;
}

/* Tablet — 2x2 grid */
@media (max-width: 880px) {
    .roadmap {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }
    .roadmap::before {
        display: none;
    }
}

/* Mobile — single column with vertical line */
@media (max-width: 540px) {
    .roadmap {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .roadmap::before {
        display: block;
        top: 32px;
        bottom: 32px;
        left: 32px;
        right: auto;
        width: 2px;
        height: auto;
        background: linear-gradient(to bottom,
            rgba(211, 32, 39, 0) 0%,
            rgba(211, 32, 39, 0.4) 15%,
            rgba(211, 32, 39, 0.5) 50%,
            rgba(211, 32, 39, 0.4) 85%,
            rgba(211, 32, 39, 0) 100%);
    }

    .roadmap__step {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 20px;
        text-align: left;
        align-items: start;
    }

    .roadmap__marker {
        margin: 0;
    }

    .roadmap__body p {
        max-width: none;
    }
}

/* ============================================================
   Specialties — 3 large fixed cards (Omiljena jela)
   ============================================================ */
.specialties {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
}

/* Mobile — convert to horizontal swipe with snap */
@media (max-width: 720px) {
    .specialties {
        display: flex;
        grid-template-columns: none;
        gap: 16px;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin: 0 -24px;
        padding: 6px 24px 14px;
        -webkit-overflow-scrolling: touch;
    }

    .specialties::-webkit-scrollbar {
        display: none;
    }

    .specialties .specialty-card {
        flex: 0 0 82%;
        scroll-snap-align: start;
        min-width: 0;
    }
}

@media (max-width: 400px) {
    .specialties .specialty-card {
        flex-basis: 86%;
    }
}

.specialty-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.35s ease;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.specialty-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(211, 32, 39, 0.15);
    color: inherit;
}

.specialty-card__image {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #0a0604;
    overflow: hidden;
}

.specialty-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(10, 6, 4, 0.5) 100%);
    z-index: 1;
    pointer-events: none;
}

.specialty-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.specialty-card:hover .specialty-card__image img {
    transform: scale(1.06);
}

.specialty-card__body {
    padding: 24px 26px 26px;
}

.specialty-card__body h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text);
    margin-bottom: 8px;
}

.specialty-card__body p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 14px;
}

.specialty-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--red);
    transition: gap 0.2s ease;
}

.specialty-card__cta svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.specialty-card:hover .specialty-card__cta {
    gap: 12px;
    color: var(--red);
}

.specialty-card:hover .specialty-card__cta svg {
    transform: translateX(4px);
}

/* ============================================================
   Visit us — info cards + map (2-column)
   ============================================================ */
.visit-us {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
    gap: clamp(20px, 3vw, 36px);
    align-items: stretch;
}

@media (max-width: 900px) {
    .visit-us {
        grid-template-columns: 1fr;
    }
}

.visit-us__info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.visit-us__cta {
    align-self: center;
    margin-top: 6px;
}

@media (max-width: 900px) {
    .visit-us__cta {
        align-self: stretch;
        justify-content: center;
    }
}

.visit-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 22px;
    overflow: hidden;
    transition: all 0.25s ease;
}

.visit-card:hover {
    border-color: var(--border-strong);
    background: var(--bg-card-hover);
}

.visit-card__icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(211, 32, 39, 0.12);
    border: 1px solid rgba(211, 32, 39, 0.3);
    border-radius: 50%;
    color: var(--red);
}

.visit-card__icon svg {
    width: 18px;
    height: 18px;
}

.visit-card__body {
    flex: 1;
    min-width: 0;
}

.visit-card__body h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.visit-card__body p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
}

/* Hours list */
.hours-list {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    position: relative;
}

.hours-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    margin: 0 -10px;
    font-size: 0.92rem;
    border-bottom: 1px dashed var(--border);
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list__day {
    color: var(--text-muted);
    font-weight: 500;
}

.hours-list__time {
    margin-left: auto;
    font-family: 'Oswald', sans-serif;
    color: var(--text);
    font-weight: 600;
    letter-spacing: 0.8px;
}

/* Highlighted current day — subtle emphasis, contained within the card */
.hours-list__current {
    background: rgba(211, 32, 39, 0.14);
    border-left: 3px solid var(--red);
    padding-left: 12px;
    border-bottom-color: transparent !important;
    position: relative;
    z-index: 1;
}

.hours-list__current .hours-list__day {
    color: var(--text);
    font-weight: 700;
}

.hours-list__current .hours-list__time {
    color: var(--red);
}

/* Open / Closed status badge — appears inline within today's row */
.hours-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px 3px 8px;
    border-radius: 100px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.hours-status::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.hours-status--open {
    background: rgba(74, 222, 128, 0.16);
    color: #4ade80;
}

.hours-status--open::before {
    background: #4ade80;
    box-shadow: 0 0 8px #4ade80;
    animation: hours-pulse 2s ease-in-out infinite;
}

.hours-status--closed {
    background: rgba(211, 32, 39, 0.18);
    color: var(--red);
}

.hours-status--closed::before {
    background: var(--red);
    box-shadow: 0 0 6px rgba(211, 32, 39, 0.6);
}

@keyframes hours-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.55; transform: scale(1.3); }
}

/* Mobile — badge inline next to day name, all on one line */
@media (max-width: 720px) {
    /* Hide the clock icon on the Radno vreme card to free up width */
    .visit-card:has(.hours-list) .visit-card__icon {
        display: none;
    }

    .hours-list li {
        gap: 8px;
    }

    .hours-list__time {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .hours-list__current {
        flex-wrap: nowrap;
        transform: none;
    }

    /* Compact badge so it fits inline next to day name */
    .hours-list__current .hours-status {
        font-size: 0.6rem;
        padding: 2px 7px 2px 6px;
        letter-spacing: 1px;
        gap: 4px;
    }

    .hours-list__current .hours-status::before {
        width: 5px;
        height: 5px;
    }
}

/* Very narrow viewports — slightly compress time text to keep one line */
@media (max-width: 380px) {
    .hours-list__time {
        font-size: 0.88rem;
        letter-spacing: 0.3px;
    }
}

/* Map column */
.visit-us__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-strong);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background: var(--bg-card);
    min-height: 420px;
}

@media (max-width: 900px) {
    .visit-us__map {
        min-height: 320px;
    }
}

.visit-us__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    border: 0;
    filter: grayscale(0.12) contrast(0.95) brightness(0.95);
    transition: filter 0.3s ease;
}

.visit-us__map:hover iframe {
    filter: grayscale(0) contrast(1) brightness(1);
}

/* ============================================================
   CTA banner
   ============================================================ */
.cta-banner {
    text-align: center;
    background: linear-gradient(135deg, rgba(211, 32, 39, 0.12), rgba(201, 169, 106, 0.05));
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    padding: clamp(40px, 6vw, 60px) clamp(24px, 5vw, 50px);
    position: relative;
    overflow: hidden;
}

.cta-banner h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 4.5vw, 2.6rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.cta-banner p {
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 28px;
    font-size: 1rem;
}

.cta-banner .btn-row {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

/* ============================================================
   Menu page
   ============================================================ */
.menu-note {
    background: var(--bg-card);
    border-left: 3px solid var(--gold);
    padding: 16px 22px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 50px;
}

/* ============================================================
   Menu page — clean category cards with pill prices
   ============================================================ */
.menu-cards {
    /* Mobile: single column stack */
    columns: 1;
    column-gap: clamp(20px, 2.5vw, 28px);
}

.menu-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(22px, 2.8vw, 34px);
    scroll-margin-top: calc(var(--header-h) + 90px);
    transition: border-color 0.25s ease, background 0.25s ease;
    /* Multi-column packing */
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    display: block;
    width: 100%;
    margin-bottom: clamp(20px, 2.5vw, 28px);
}

.menu-card:last-child {
    margin-bottom: 0;
}

/* Tablet — 2 columns, masonry-like balance */
@media (min-width: 720px) {
    .menu-cards {
        columns: 2;
    }
}

.menu-card:hover {
    border-color: var(--border-strong);
}

.menu-card__head {
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--red);
}

.menu-card__title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    margin: 0;
}

.menu-card__subtitle {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin: 6px 0 0;
}

.menu-card__group {
    margin-bottom: 18px;
}

.menu-card__group:last-child {
    margin-bottom: 0;
}

.menu-card__group-title {
    font-family: 'Oswald', sans-serif;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 10px;
}

.menu-card__items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.menu-card__item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-card__item-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.menu-card__item-name {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text);
}

.menu-card__item-price {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: #fff;
    background: var(--red);
    padding: 4px 11px;
    border-radius: 100px;
    flex-shrink: 0;
    margin-left: auto;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(211, 32, 39, 0.25);
}

@media (max-width: 720px) {
    .menu-card__title {
        font-size: 1.2rem;
    }
}

/* ============================================================
   About page
   ============================================================ */
.about-story {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
}

@media (max-width: 820px) {
    .about-story {
        grid-template-columns: 1fr;
    }
}

.about-story__text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.about-story__text h2 .accent {
    color: var(--red);
    display: block;
}

.about-story__text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-story__text p:last-child {
    margin-bottom: 0;
}

.about-story__visual {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(211, 32, 39, 0.08), rgba(201, 169, 106, 0.05));
    border: 1px solid var(--border-strong);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-story__visual img {
    width: 70%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.value-card {
    text-align: center;
    padding: 28px 24px;
}

.value-card__number {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    opacity: 0.6;
    line-height: 1;
    margin-bottom: 12px;
}

.value-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.65;
}

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

.tesalija__quote {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: var(--text);
    line-height: 1.4;
    margin-bottom: 16px;
}

.tesalija__attribution {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
    margin-top: auto;
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    padding: 60px 0 24px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 48px;
    margin-bottom: 40px;
}

@media (max-width: 980px) {
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 520px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.site-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.site-footer__logo {
    display: block;
    width: 110px;
    height: auto;
    margin-bottom: 0;
}

.site-footer__tagline {
    font-family: 'Dancing Script', cursive;
    font-size: 1.25rem;
    color: var(--gold);
    margin: 0;
    line-height: 1.3;
}

@media (max-width: 520px) {
    .site-footer__brand {
        align-items: center;
        text-align: center;
    }

    .site-footer__brand .site-footer__logo {
        display: none;
    }
}

.site-footer__hours {
    list-style: none;
}

.site-footer__hours li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.site-footer__hours li span:first-child {
    color: var(--text);
    font-weight: 500;
}

.site-footer h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
    margin-bottom: 18px;
}

.site-footer ul {
    list-style: none;
}

.site-footer li {
    margin-bottom: 10px;
}

.site-footer a,
.site-footer__text {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.site-footer a:hover {
    color: var(--text);
}

.site-footer__bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-dim);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ============================================================
   Mobile nav (slide-in panel)
   ============================================================ */
@media (max-width: 880px) {
    .nav-toggle {
        display: inline-flex;
    }

    /* Mobile nav = full-screen modern popup with blur backdrop */
    .nav {
        position: fixed;
        inset: 0;
        width: 100%;
        max-width: none;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 4px;
        background: rgba(14, 10, 8, 0.88);
        backdrop-filter: blur(28px) saturate(140%);
        -webkit-backdrop-filter: blur(28px) saturate(140%);
        border: none;
        box-shadow: none;
        padding: var(--header-h) 32px 24px;
        opacity: 0;
        pointer-events: none;
        transform: scale(1.02);
        transition: opacity 0.35s ease, transform 0.35s ease;
        z-index: 99;
        overflow: hidden;
        overscroll-behavior: contain;
    }

    .nav--open {
        opacity: 1;
        pointer-events: auto;
        transform: scale(1);
    }

    /* Centered, large nav items with staggered fade-in */
    .nav__link {
        text-align: center;
        font-family: 'Oswald', sans-serif;
        font-size: clamp(1.6rem, 6vw, 2rem);
        font-weight: 700;
        letter-spacing: 3px;
        padding: 14px 28px;
        border-radius: var(--radius-sm);
        border-bottom: none;
        color: var(--text);
        position: relative;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s ease;
    }

    .nav__link:hover {
        background: transparent;
        color: var(--red);
    }

    .nav__link--active {
        color: var(--red);
        background: transparent;
    }

    .nav__link--active::after {
        content: '';
        position: absolute;
        bottom: 6px;
        left: 50%;
        transform: translateX(-50%);
        top: auto;
        right: auto;
        width: 36px;
        height: 3px;
        background: var(--red);
        border-radius: 2px;
        box-shadow: 0 0 12px rgba(211, 32, 39, 0.5);
    }

    /* Staggered fade-in animation on open */
    .nav--open .nav__link {
        opacity: 1;
        transform: translateY(0);
    }

    .nav--open .nav__link:nth-of-type(1) { transition-delay: 80ms; }
    .nav--open .nav__link:nth-of-type(2) { transition-delay: 140ms; }
    .nav--open .nav__link:nth-of-type(3) { transition-delay: 200ms; }

    .site-header__cta {
        display: none;
    }

    .nav__cta {
        display: inline-flex;
        align-self: center;
        padding: 13px 32px;
        font-size: 0.9rem;
        letter-spacing: 2px;
        margin-top: 28px;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .nav__cta + .nav__cta {
        margin-top: 8px;
    }

    .nav__cta svg {
        width: 16px;
        height: 16px;
    }

    .nav--open .nav__cta {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 280ms;
    }

    .nav--open .nav__cta + .nav__cta {
        transition-delay: 340ms;
    }

    body.nav-open {
        overflow: hidden;
    }
}

/* ============================================================
   Delivery options (Glovo + Wolt) on meni page
   ============================================================ */
#dostava {
    scroll-margin-top: calc(var(--header-h) + 20px);
}

.delivery-options {
    margin-bottom: 36px;
}

.delivery-options__title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    margin: 0 0 8px;
    color: var(--text);
}

.delivery-options__lead {
    text-align: center;
    color: var(--text-muted);
    margin: 0 0 24px;
    font-size: 0.95rem;
}

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

@media (max-width: 600px) {
    .delivery-options__grid {
        grid-template-columns: 1fr;
    }
}

.delivery-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    color: inherit;
    text-decoration: none;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.delivery-card--glovo {
    background: linear-gradient(135deg, rgba(255, 194, 68, 0.10), rgba(255, 194, 68, 0.03));
    border-color: rgba(255, 194, 68, 0.35);
}

.delivery-card--glovo:hover {
    border-color: rgba(255, 194, 68, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 194, 68, 0.18);
}

.delivery-card--wolt {
    background: linear-gradient(135deg, rgba(0, 194, 232, 0.10), rgba(0, 194, 232, 0.03));
    border-color: rgba(0, 194, 232, 0.35);
}

.delivery-card--wolt:hover {
    border-color: rgba(0, 194, 232, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 194, 232, 0.18);
}

.delivery-card__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
}

.delivery-card--glovo .delivery-card__icon {
    color: #FFC244;
}

.delivery-card--wolt .delivery-card__icon {
    color: #00C2E8;
}

.delivery-card__icon svg {
    width: 22px;
    height: 22px;
}

.delivery-card__body {
    flex: 1;
    min-width: 0;
}

.delivery-card__body h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 4px;
    color: var(--text);
}

.delivery-card__body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
}

.delivery-card .btn {
    flex-shrink: 0;
    padding: 10px 18px;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    gap: 6px;
}

@media (max-width: 480px) {
    .delivery-card {
        padding: 16px 18px;
        gap: 12px;
    }

    .delivery-card__icon {
        width: 38px;
        height: 38px;
    }

    .delivery-card__icon svg {
        width: 18px;
        height: 18px;
    }

    .delivery-card .btn {
        padding: 8px 14px;
        font-size: 0.72rem;
    }
}

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