@charset "UTF-8";

/**
 * Flamers Pizza ? Dark theme
 */

:root {
    --fl-bg: #050505;
    --fl-bg-alt: #0e0e10;
    --fl-card: #141418;
    --fl-card-hover: #1c1c22;
    --fl-fire: #ff5500;
    --fl-fire-light: #ff7722;
    --fl-amber: #ffcc00;
    --fl-red-deep: #8b1a1a;
    --fl-text: #fafafa;
    --fl-muted: #a8a8b0;
    --fl-border: rgba(255, 85, 0, 0.12);
    --fl-glow: rgba(255, 85, 0, 0.4);
    --fl-font-display: 'Bebas Neue', Impact, sans-serif;
    --fl-font-body: 'DM Sans', sans-serif;
    --fl-header-h: 72px;
    --fl-radius: 16px;
    --fl-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --fl-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    --fl-section-pad: 56px;
    --fl-section-pad-mob: 44px;
}

[data-theme="light"] {
    --fl-bg: #faf8f5;
    --fl-bg-alt: #f3efe8;
    --fl-card: #ffffff;
    --fl-card-hover: #f8f4ee;
    --fl-text: #1a1410;
    --fl-muted: #6b5f56;
    --fl-border: rgba(255, 85, 0, 0.14);
    --fl-glow: rgba(255, 85, 0, 0.22);
    --fl-shadow: 0 8px 32px rgba(44, 24, 16, 0.08);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

.flamers-body {
    font-family: var(--fl-font-body);
    background: var(--fl-bg);
    color: var(--fl-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.center { text-align: center; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; height: auto; }

/* Background */
.flamers-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.flamers-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    animation: flGlowPulse 8s ease-in-out infinite;
}

.flamers-glow-1 {
    width: 420px; height: 420px;
    top: -120px; right: -80px;
    background: radial-gradient(circle, var(--fl-fire) 0%, transparent 70%);
}

.flamers-glow-2 {
    width: 360px; height: 360px;
    bottom: 10%; left: -100px;
    background: radial-gradient(circle, var(--fl-amber) 0%, transparent 70%);
    animation-delay: -4s;
}

.flamers-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent);
}

@keyframes flGlowPulse {
    0%, 100% { opacity: 0.25; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(1.08); }
}

.flamers-main,
.flamers-loader { position: relative; z-index: 1; }

/* Loader */
.flamers-loader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--fl-bg);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.flamers-loader.hidden { opacity: 0; visibility: hidden; }

.flamers-loader-inner {
    display: flex; flex-direction: column; align-items: center; gap: 20px;
}

.flamers-loader-logo {
    animation: flLoaderPulse 1.2s ease-in-out infinite;
    width: 100px;
    height: auto;
    border-radius: 50%;
}

.flamers-loader-bar {
    width: 120px; height: 3px; border-radius: 99px;
    background: var(--fl-border);
    overflow: hidden; position: relative;
}

.flamers-loader-bar::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, var(--fl-fire), var(--fl-amber));
    animation: flLoaderBar 1.2s ease-in-out infinite;
}

@keyframes flLoaderPulse {
    0%, 100% { opacity: 0.7; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1); }
}

@keyframes flLoaderBar {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Header */
.flamers-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: var(--fl-header-h);
    background: rgba(12, 12, 14, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--fl-border);
    transition: background 0.3s, box-shadow 0.3s;
}

.flamers-header.scrolled {
    background: rgba(12, 12, 14, 0.95);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.flamers-header-inner {
    height: 100%;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
}

.flamers-logo img { height: 44px; width: auto; }

.flamers-nav-list { display: flex; gap: 8px; }

.flamers-nav-link {
    padding: 10px 16px;
    font-size: 0.88rem; font-weight: 600;
    color: var(--fl-muted);
    border-radius: 10px;
    transition: color 0.2s, background 0.2s;
}

.flamers-nav-link:hover,
.flamers-nav-link.active {
    color: var(--fl-text);
    background: rgba(255, 77, 0, 0.12);
}

.flamers-header-actions { display: flex; align-items: center; gap: 12px; }

.flamers-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    min-width: 44px;
    min-height: 44px;
}

.flamers-menu-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--fl-text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.flamers-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.flamers-menu-toggle.active span:nth-child(2) { opacity: 0; }
.flamers-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn-flamers {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 28px;
    background: linear-gradient(135deg, var(--fl-fire) 0%, #e03e00 100%);
    color: #fff; font-weight: 700; font-size: 0.9rem;
    border-radius: 12px; border: 1px solid rgba(255, 107, 43, 0.4);
    box-shadow: 0 4px 20px var(--fl-glow);
    cursor: pointer;
    transition: transform 0.25s var(--fl-ease), box-shadow 0.25s;
}

.btn-flamers:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--fl-glow);
}

.btn-flamers-sm { padding: 9px 18px; font-size: 0.82rem; }

.btn-flamers-lg { padding: 14px 28px; font-size: 0.95rem; }

.flamers-lang-pill {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 3px;
    border-radius: 999px;
    border: 1px solid var(--fl-border);
    background: rgba(255, 255, 255, 0.04);
}

.flamers-lang-btn {
    padding: 6px 10px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: var(--fl-muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.flamers-lang-btn.active,
.flamers-lang-btn:hover {
    background: rgba(255, 85, 0, 0.18);
    color: var(--fl-text);
}

.flamers-header-tools {
    display: flex;
    align-items: center;
    gap: 8px;
}

.flamers-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--fl-border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--fl-muted);
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.flamers-icon-btn:hover {
    color: var(--fl-fire);
    border-color: rgba(255, 85, 0, 0.35);
    background: rgba(255, 85, 0, 0.08);
}

.flamers-theme-icon { display: block; }

[data-theme="light"] .flamers-theme-icon-light,
[data-theme="dark"] .flamers-theme-icon-dark { display: none; }

[data-theme="light"] .flamers-header {
    background: rgba(255, 255, 255, 0.88);
}

[data-theme="light"] .flamers-header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 24px rgba(44, 24, 16, 0.08);
}

[data-theme="light"] .flamers-glow { opacity: 0.18; }

[data-theme="light"] .flamers-grid {
    background-image:
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
}

[data-theme="light"] .fl-hero-fade::after {
    background: linear-gradient(
        to top,
        var(--fl-bg) 0%,
        rgba(250, 248, 245, 0.92) 24%,
        rgba(250, 248, 245, 0.45) 58%,
        transparent 100%
    );
}

.flamers-nav-mobile-actions { display: none; }

.btn-flamers-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
    color: var(--fl-text);
}

.btn-flamers-outline:hover {
    border-color: var(--fl-fire);
    background: rgba(255, 77, 0, 0.1);
    box-shadow: 0 4px 20px rgba(255, 77, 0, 0.15);
}

/* Main */
.flamers-main { padding-top: 0; }

/* Hero ? full-width header banner */
.fl-hero {
    position: relative;
    background: var(--fl-bg);
    overflow: hidden;
}

.fl-hero-banner {
    position: relative;
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.fl-hero-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.fl-hero-fade {
    position: absolute;
    inset: auto 0 0;
    height: 38%;
    pointer-events: none;
    z-index: 2;
}

.fl-hero-fade::before {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    mask-image: linear-gradient(to top, #000 0%, #000 16%, rgba(0, 0, 0, 0.5) 52%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, #000 0%, #000 16%, rgba(0, 0, 0, 0.5) 52%, transparent 100%);
}

.fl-hero-fade::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        var(--fl-bg) 0%,
        rgba(5, 5, 5, 0.92) 24%,
        rgba(5, 5, 5, 0.45) 58%,
        transparent 100%
    );
}

.fl-hero-minimal {
    padding: calc(var(--fl-header-h) + 48px) 0 56px;
    text-align: center;
}

.fl-hero-minimal-title {
    font-family: var(--fl-font-display);
    font-size: clamp(2.2rem, 6vw, 3.4rem);
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.fl-hero-minimal-tagline {
    color: var(--fl-muted);
    font-size: 1rem;
}

.fl-about-scroll-block--copy-only {
    grid-template-columns: 1fr;
}

.fl-franchise-home-top--copy-only {
    grid-template-columns: 1fr;
}

/* Brand strip */
.fl-strip {
    overflow: hidden;
    border-block: 1px solid var(--fl-border);
    background: var(--fl-bg-alt);
    padding: 14px 0;
}

.fl-strip-track {
    display: flex; gap: 48px;
    width: max-content;
    animation: flMarquee 35s linear infinite;
    font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--fl-muted);
}

.fl-strip-track span { white-space: nowrap; }

@keyframes flMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Sections */
.fl-section {
    padding: var(--fl-section-pad) 0;
    scroll-margin-top: var(--fl-header-h);
}

.fl-section-alt { background: rgba(255, 255, 255, 0.02); }

.fl-label {
    display: inline-block;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--fl-fire);
    margin-bottom: 12px;
}

.fl-label-light { color: var(--fl-amber); }

.fl-title {
    font-family: var(--fl-font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.05;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}

.fl-title em { font-style: normal; color: var(--fl-fire); }

.fl-title-light { color: #fff; }
.fl-title-light em { color: var(--fl-amber); }

.fl-subtitle, .fl-text { color: var(--fl-muted); line-height: 1.75; }
.fl-subtitle { font-size: 0.95rem; margin-top: 8px; }
.fl-text { margin-bottom: 16px; max-width: 540px; }

.fl-section-head { margin-bottom: 32px; }
.fl-block-title {
    font-family: var(--fl-font-display);
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
}

/* About ? sticky image, scroll content (Gulab-style) */
.fl-about {
    overflow: visible;
}

.fl-about-scroll-block {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
    gap: 48px 56px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.fl-about-visual-sticky {
    position: sticky;
    top: calc(var(--fl-header-h) + 28px);
    align-self: start;
}

.fl-about-visual {
    margin: 0;
}

.fl-about-scroll-content {
    padding: 8px 0 12px;
}

.fl-about-title {
    font-size: clamp(1.8rem, 3.2vw, 2.45rem);
    line-height: 1.15;
    margin-bottom: 18px;
}

.fl-about-lead {
    color: var(--fl-text);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: none;
}

.fl-about-lead strong {
    color: var(--fl-fire-light);
}

.fl-about-copy {
    font-size: 0.94rem;
    line-height: 1.72;
    margin-bottom: 20px;
    max-width: none;
}

.fl-about-img-wrap {
    position: relative;
    border-radius: var(--fl-radius);
    overflow: hidden;
    border: 1px solid var(--fl-border);
    box-shadow: var(--fl-shadow);
}

.fl-about-img-wrap img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: contain;
    background: #000;
    transition: transform 0.6s var(--fl-ease);
}

.fl-about-img-wrap:hover img { transform: scale(1.04); }

.fl-about-badge {
    position: absolute; bottom: 16px; left: 16px;
    padding: 8px 14px;
    background: rgba(12, 12, 14, 0.85);
    border: 1px solid var(--fl-border);
    border-radius: 999px;
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--fl-amber);
}

.fl-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.fl-pillar {
    padding: 20px;
    background: var(--fl-card);
    border: 1px solid var(--fl-border);
    border-radius: 14px;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.fl-pillar:hover {
    border-color: rgba(255, 77, 0, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.fl-icon {
    width: 1.35rem;
    height: 1.35rem;
    flex-shrink: 0;
    color: var(--fl-fire);
}

.fl-strip-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.fl-pillar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 8px;
    border-radius: 12px;
    background: rgba(255, 85, 0, 0.1);
    border: 1px solid rgba(255, 85, 0, 0.2);
}

.fl-pillar-icon .fl-icon { width: 1.5rem; height: 1.5rem; }

.fl-stars {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: var(--fl-amber);
    margin-bottom: 12px;
}

.fl-star { width: 16px; height: 16px; display: block; }

.fl-pillar strong {
    display: block;
    font-size: 0.92rem;
    margin-bottom: 4px;
}

.fl-pillar span { font-size: 0.82rem; color: var(--fl-muted); line-height: 1.5; }

/* About ? Why Join Us */
.fl-why-join {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--fl-border);
}

.fl-why-join-head {
    margin-bottom: 28px;
}

.fl-why-join-intro {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.fl-why-join-panel {
    position: relative;
    overflow: hidden;
    padding: 28px 28px 24px;
    border-radius: 22px;
    background: linear-gradient(155deg, rgba(255, 85, 0, 0.07) 0%, rgba(255, 204, 0, 0.04) 40%, var(--fl-card) 100%);
    border: 1px solid rgba(255, 85, 0, 0.18);
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.28);
}

.fl-why-join-panel-glow {
    position: absolute;
    top: -70px;
    right: -50px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 85, 0, 0.14) 0%, transparent 70%);
    pointer-events: none;
}

.fl-why-join-panel-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--fl-red-deep), var(--fl-fire), var(--fl-amber));
}

.fl-why-join-bento {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 16px;
    margin-bottom: 22px;
}

.fl-why-join-featured {
    position: relative;
    padding: 28px 26px 24px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255, 85, 0, 0.12) 0%, rgba(255, 85, 0, 0.04) 100%);
    border: 1px solid rgba(255, 85, 0, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.fl-why-join-featured-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    border-radius: 14px;
    color: var(--fl-amber);
    background: rgba(255, 85, 0, 0.14);
    border: 1px solid rgba(255, 204, 0, 0.22);
}

.fl-why-join-featured-icon .fl-icon {
    width: 1.55rem;
    height: 1.55rem;
}

.fl-why-join-featured-tag {
    display: inline-block;
    padding: 5px 12px;
    margin-bottom: 12px;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fl-amber);
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 204, 0, 0.2);
}

.fl-why-join-featured h4 {
    font-family: var(--fl-font-display);
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    letter-spacing: 0.04em;
    margin: 0 0 10px;
    color: var(--fl-text);
}

.fl-why-join-featured p {
    margin: 0 0 22px;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--fl-muted);
}

.fl-why-join-featured-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.fl-why-join-mini-stat {
    text-align: center;
    padding: 12px 8px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 85, 0, 0.14);
}

.fl-why-join-mini-stat strong {
    display: block;
    font-family: var(--fl-font-display);
    font-size: 1.35rem;
    line-height: 1;
    letter-spacing: 0.04em;
    color: var(--fl-fire);
    margin-bottom: 4px;
}

.fl-why-join-mini-stat span {
    display: block;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--fl-muted);
}

.fl-why-join-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.fl-why-join-card {
    padding: 20px 18px 18px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.14);
    border: 1px solid var(--fl-border);
    transition: border-color 0.25s var(--fl-ease), transform 0.25s var(--fl-ease), box-shadow 0.25s var(--fl-ease);
}

.fl-why-join-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 85, 0, 0.28);
    box-shadow: 0 12px 28px rgba(255, 85, 0, 0.1);
}

.fl-why-join-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    border-radius: 11px;
    color: var(--fl-fire);
    background: rgba(255, 85, 0, 0.1);
    border: 1px solid rgba(255, 85, 0, 0.18);
}

.fl-why-join-card-icon .fl-icon {
    width: 1.2rem;
    height: 1.2rem;
}

.fl-why-join-card h4 {
    font-family: var(--fl-font-display);
    font-size: 0.98rem;
    letter-spacing: 0.04em;
    margin: 0 0 6px;
    color: var(--fl-text);
}

.fl-why-join-card p {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.55;
    color: var(--fl-muted);
}

.fl-why-join-foot {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px 22px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.16);
    border: 1px solid var(--fl-border);
}

.fl-why-join-foot-text {
    flex: 1;
    min-width: 0;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--fl-muted);
}

.fl-why-join-foot-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

[data-theme="light"] .fl-why-join-panel {
    box-shadow: 0 18px 48px rgba(44, 24, 16, 0.1);
}

[data-theme="light"] .fl-why-join-featured {
    background: linear-gradient(145deg, rgba(255, 248, 240, 0.95) 0%, #fff 100%);
}

[data-theme="light"] .fl-why-join-card,
[data-theme="light"] .fl-why-join-foot {
    background: rgba(255, 255, 255, 0.75);
}

[data-theme="light"] .fl-why-join-mini-stat {
    background: rgba(255, 255, 255, 0.85);
}

/* Menu ? tabbed (Gulab-style) */
.fl-section-menu .fl-section-head { margin-bottom: 22px; }

.fl-menu-tabs-wrap {
    margin-bottom: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.fl-menu-tabs-wrap::-webkit-scrollbar { display: none; }

.fl-menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    min-width: min(100%, 720px);
    margin: 0 auto;
    padding: 4px 2px;
}

.fl-menu-tab {
    appearance: none;
    border: 1px solid var(--fl-border);
    background: var(--fl-card);
    color: var(--fl-muted);
    font-family: var(--fl-font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 10px 16px;
    border-radius: 999px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s var(--fl-ease);
}

.fl-menu-tab:hover {
    color: var(--fl-fire-light);
    border-color: rgba(255, 85, 0, 0.35);
    background: rgba(255, 85, 0, 0.08);
}

.fl-menu-tab.active {
    background: linear-gradient(135deg, var(--fl-fire) 0%, #e03e00 100%);
    border-color: var(--fl-fire);
    color: #fff;
    box-shadow: 0 4px 20px var(--fl-glow);
}

.fl-menu-panels { position: relative; }
.fl-menu-panel { display: none; animation: flMenuPanelIn 0.35s var(--fl-ease); }
.fl-menu-panel.active { display: block; }
.fl-menu-panel[hidden] { display: none !important; }

@keyframes flMenuPanelIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: none; }
}

.fl-menu-panel-sub {
    text-align: center;
    color: var(--fl-muted);
    font-size: 0.88rem;
    margin: -8px 0 20px;
}

.fl-menu-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.fl-menu-card {
    display: flex;
    flex-direction: column;
    background: var(--fl-card);
    border: 1px solid var(--fl-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--fl-shadow);
    transition: transform 0.3s var(--fl-ease), box-shadow 0.3s var(--fl-ease), border-color 0.3s;
}

.fl-menu-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 85, 0, 0.28);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
}

.fl-menu-card-img {
    position: relative;
    margin: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--fl-bg-alt);
}

.fl-menu-card-img .fl-food-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s var(--fl-ease);
}

.fl-menu-card:hover .fl-food-img { transform: scale(1.05); }

.fl-menu-card-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 6px;
    background: rgba(255, 85, 0, 0.92);
    color: #fff;
}

.fl-menu-card-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 14px 16px;
    flex: 1;
}

.fl-menu-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

.fl-menu-card-top h4 {
    font-family: var(--fl-font-display);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.03em;
}

.fl-menu-card-price {
    flex-shrink: 0;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--fl-amber);
}

.fl-menu-card-body p {
    font-size: 0.76rem;
    color: var(--fl-muted);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fl-menu-card-veg {
    align-self: flex-start;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 8px;
    border-radius: 100px;
    background: rgba(255, 85, 0, 0.1);
    color: var(--fl-fire-light);
    border: 1px solid rgba(255, 85, 0, 0.2);
}

.fl-menu-intro { max-width: 640px; margin-left: auto; margin-right: auto; }

/* Cards grid */
.fl-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.fl-card {
    background: var(--fl-card);
    border: 1px solid var(--fl-border);
    border-radius: var(--fl-radius);
    overflow: hidden;
    transition: transform 0.3s var(--fl-ease), border-color 0.3s, box-shadow 0.3s;
}

.fl-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 77, 0, 0.25);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 77, 0, 0.1);
}

.fl-card-img { position: relative; overflow: hidden; }

.fl-card-img img {
    width: 100%; aspect-ratio: 4/3; object-fit: cover;
    transition: transform 0.5s var(--fl-ease);
}

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

.fl-card-tag {
    position: absolute; top: 12px; left: 12px;
    padding: 5px 10px;
    background: var(--fl-fire);
    color: #fff;
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    border-radius: 6px;
}

.fl-card-body { padding: 18px; }

.fl-card-body h4 { font-size: 1rem; margin-bottom: 6px; }
.fl-card-body p { font-size: 0.82rem; color: var(--fl-muted); margin-bottom: 10px; line-height: 1.5; }

.fl-price {
    font-weight: 700;
    color: var(--fl-amber);
    font-size: 1rem;
}

/* Menu categories */
.fl-menu-cat { margin-bottom: 32px; }

.fl-menu-cat-sub { color: var(--fl-muted); font-size: 0.88rem; margin-top: -16px; margin-bottom: 20px; }

.fl-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.menu-group:not(.is-expanded) .menu-item-extra { display: none; }

.menu-view-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.menu-view-more-btn,
.fl-menu-view-more-btn {
    appearance: none;
    border: 1px solid rgba(255, 85, 0, 0.35);
    background: rgba(255, 85, 0, 0.08);
    color: var(--fl-fire-light);
    font-family: var(--fl-font-body);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 12px 24px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.25s var(--fl-ease), color 0.25s var(--fl-ease), transform 0.25s var(--fl-ease);
}

.menu-view-more-btn:hover,
.fl-menu-view-more-btn:hover {
    background: var(--fl-fire);
    color: #fff;
    transform: translateY(-2px);
}

.menu-group.is-expanded .menu-view-more-btn,
.menu-group.is-expanded .fl-menu-view-more-btn {
    background: transparent;
}

.fl-menu-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 16px;
    padding: 16px;
    background: var(--fl-card);
    border: 1px solid var(--fl-border);
    border-radius: 14px;
    transition: border-color 0.25s, background 0.25s;
}

.fl-menu-item:hover {
    border-color: rgba(255, 77, 0, 0.2);
    background: var(--fl-card-hover);
}

.fl-menu-item-img {
    border-radius: 10px;
    overflow: hidden;
}

.fl-menu-item-img img {
    width: 100%; height: 100%; min-height: 90px; object-fit: cover;
}

.fl-menu-item-top {
    display: flex; justify-content: space-between; align-items: flex-start; gap: 8px;
    margin-bottom: 4px;
}

.fl-menu-item-top h4 { font-size: 0.95rem; }

.fl-price-sm { font-weight: 700; color: var(--fl-amber); font-size: 0.88rem; white-space: nowrap; }

.fl-menu-item-body p { font-size: 0.8rem; color: var(--fl-muted); line-height: 1.45; }

.fl-veg {
    display: inline-block; margin-top: 8px;
    font-size: 0.68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: #4ade80;
}

.fl-menu-note { font-size: 0.82rem; color: var(--fl-muted); margin-top: 16px; }

.fl-menu-pdf-wrap {
    max-width: 720px;
    margin: 48px auto 28px;
}

.fl-menu-pdf-cta {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    border-radius: 18px;
    text-decoration: none;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0a00 0%, var(--fl-fire) 45%, var(--fl-amber) 100%);
    border: 1px solid rgba(255, 120, 40, 0.45);
    box-shadow: 0 14px 40px rgba(255, 80, 0, 0.18);
    transition: transform 0.35s var(--fl-ease), box-shadow 0.35s var(--fl-ease);
}

.fl-menu-pdf-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(255, 80, 0, 0.28);
    color: #fff;
}

.fl-menu-pdf-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.12) 50%, transparent 60%);
    pointer-events: none;
}

.fl-menu-pdf-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--fl-amber);
}

.fl-menu-pdf-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.fl-menu-pdf-content strong {
    font-family: var(--fl-font-display);
    font-size: clamp(1.05rem, 2.5vw, 1.25rem);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.fl-menu-pdf-content span {
    font-size: 0.82rem;
    opacity: 0.88;
    line-height: 1.4;
}

.fl-menu-pdf-action {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--fl-fire);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.25s, color 0.25s;
}

.fl-menu-pdf-cta:hover .fl-menu-pdf-action {
    background: #fff;
    color: #c03900;
}

/* Gallery */
.fl-gallery-showcase {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: minmax(190px, auto);
    gap: 16px;
}

.fl-gallery-showcase-item {
    margin: 0;
    min-height: 0;
}

.fl-gallery-showcase-item--feature {
    grid-column: span 2;
    grid-row: span 2;
}

.fl-gallery-showcase-frame {
    position: relative;
    height: 100%;
    min-height: 190px;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 85, 0, 0.18);
    background:
        radial-gradient(circle at 50% 38%, rgba(255, 85, 0, 0.1) 0%, transparent 58%),
        linear-gradient(165deg, #1c1109 0%, #0e0e10 50%, #15151a 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 8px 24px rgba(0, 0, 0, 0.22);
    transition: transform 0.35s var(--fl-ease), border-color 0.35s, box-shadow 0.35s;
}

.fl-gallery-showcase-item--feature .fl-gallery-showcase-frame {
    min-height: 100%;
}

.fl-gallery-showcase-item:hover .fl-gallery-showcase-frame {
    transform: translateY(-5px);
    border-color: rgba(255, 204, 0, 0.35);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 18px 40px rgba(255, 85, 0, 0.16);
}

.fl-gallery-showcase-tag {
    position: absolute;
    z-index: 2;
    top: 12px;
    left: 12px;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fl-amber);
    background: rgba(5, 5, 5, 0.72);
    border: 1px solid rgba(255, 204, 0, 0.28);
    backdrop-filter: blur(8px);
}

.fl-gallery-showcase-frame .fl-food-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    padding: 20px;
    transition: transform 0.55s var(--fl-ease);
    display: block;
}

.fl-gallery-showcase-item--feature .fl-gallery-showcase-frame .fl-food-img {
    padding: 28px 32px;
}

.fl-gallery-showcase-item:hover .fl-food-img {
    transform: scale(1.06);
}

.fl-gallery-showcase-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    padding: 18px 20px 16px;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.4) 42%, transparent 70%);
    opacity: 0;
    transition: opacity 0.35s var(--fl-ease);
    pointer-events: none;
}

.fl-gallery-showcase-item:hover .fl-gallery-showcase-overlay,
.fl-gallery-showcase-item:focus-within .fl-gallery-showcase-overlay {
    opacity: 1;
}

.fl-gallery-showcase-line {
    display: block;
    width: 40px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--fl-fire), var(--fl-amber));
}

.fl-gallery-showcase-name {
    margin: 0;
    font-family: var(--fl-font-display);
    font-size: 1.02rem;
    letter-spacing: 0.04em;
    color: #fff;
    line-height: 1.2;
}

.fl-gallery-showcase-item--feature .fl-gallery-showcase-name {
    font-size: 1.35rem;
}

/* Legacy gallery grid (unused) */
.fl-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
}

.fl-gallery-item {
    position: relative;
    border-radius: var(--fl-radius);
    overflow: hidden;
    border: 1px solid var(--fl-border);
}

.fl-gallery-1 { grid-row: span 2; }

.fl-gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s var(--fl-ease);
}

.fl-gallery-item:hover img { transform: scale(1.08); }

.fl-gallery-item figcaption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 20px 16px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    font-size: 0.88rem; font-weight: 600;
}

.fl-gallery-line {
    display: block; width: 32px; height: 2px;
    background: var(--fl-fire);
    margin-bottom: 8px;
}

.fl-section.fl-gallery-page-hero {
    padding: calc(var(--fl-header-h) + 40px) 0 28px;
}

.fl-gallery-page-hero-inner {
    max-width: 640px;
    margin-inline: auto;
    margin-bottom: 0;
}

.fl-gallery-page-hero .fl-title {
    line-height: 1.15;
    overflow: visible;
}

.fl-gallery-page-lead {
    max-width: 520px;
    margin-inline: auto;
    font-size: 1rem;
    line-height: 1.65;
    margin-top: 14px;
    margin-bottom: 0;
}

.fl-gallery-page-count {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid var(--fl-border);
    background: var(--fl-card);
    font-size: 0.82rem;
    color: var(--fl-muted);
    max-width: 100%;
}

.fl-gallery-page-count span:first-child {
    font-family: var(--fl-font-display);
    font-size: 1.1rem;
    color: var(--fl-fire);
    letter-spacing: 0.04em;
}

.fl-gallery-page-section { padding-top: 0; padding-bottom: var(--fl-section-pad); }

[data-theme="light"] .fl-gallery-showcase-frame {
    background:
        radial-gradient(circle at 50% 35%, rgba(255, 85, 0, 0.06) 0%, transparent 55%),
        linear-gradient(165deg, #fff8f0 0%, #fff 52%, #f8f4ee 100%);
    border-color: rgba(255, 85, 0, 0.14);
}

[data-theme="light"] .fl-gallery-showcase-overlay {
    background: linear-gradient(to top, rgba(26, 18, 12, 0.82) 0%, rgba(26, 18, 12, 0.28) 45%, transparent 72%);
}

[data-theme="light"] .fl-gallery-showcase-tag {
    background: rgba(255, 255, 255, 0.92);
    color: var(--fl-fire);
}

/* Reviews */
.fl-section-reviews { position: relative; }

.fl-reviews-panel {
    position: relative;
    overflow: hidden;
    padding: 32px 30px 28px;
    border-radius: 24px;
    background: linear-gradient(165deg, rgba(255, 85, 0, 0.06) 0%, rgba(255, 204, 0, 0.04) 42%, var(--fl-card) 100%);
    border: 1px solid rgba(255, 85, 0, 0.18);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.28);
}

.fl-reviews-panel-glow {
    position: absolute;
    top: -80px;
    right: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 85, 0, 0.14) 0%, transparent 70%);
    pointer-events: none;
}

.fl-reviews-panel-header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 22px;
}

.fl-reviews-panel-title {
    font-family: var(--fl-font-display);
    font-size: clamp(1.7rem, 3.2vw, 2.35rem);
    line-height: 1.1;
    margin: 8px 0 10px;
    letter-spacing: 0.03em;
}

.fl-reviews-panel-title em {
    font-style: normal;
    color: var(--fl-fire);
}

.fl-reviews-intro {
    max-width: 520px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--fl-muted);
}

.fl-reviews-trust {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-bottom: 26px;
    padding: 18px 22px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--fl-fire) 0%, #c43d00 100%);
    border: 1px solid rgba(255, 204, 0, 0.28);
    box-shadow: 0 10px 28px rgba(255, 85, 0, 0.22);
}

.fl-reviews-trust-score {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 14px;
}

.fl-reviews-score-num {
    font-family: var(--fl-font-display);
    font-size: 2.4rem;
    line-height: 1;
    color: var(--fl-amber);
    letter-spacing: 0.04em;
}

.fl-review-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    color: var(--fl-amber);
    margin-bottom: 14px;
}

.fl-review-stars-lg {
    margin-bottom: 0;
    color: var(--fl-amber);
}

.fl-review-star { display: block; }

.fl-reviews-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fl-amber);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 204, 0, 0.35);
}

.fl-reviews-trust-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--fl-amber);
    box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.25);
}

.fl-reviews-trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.fl-reviews-trust-pills span {
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.fl-reviews-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.fl-review-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    margin: 0;
    padding: 24px 22px 20px;
    border-radius: 18px;
    background: var(--fl-bg-alt);
    border: 1px solid var(--fl-border);
    box-shadow: var(--fl-shadow);
    overflow: hidden;
    transition: transform 0.3s var(--fl-ease), box-shadow 0.3s var(--fl-ease), border-color 0.3s;
}

.fl-review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--fl-fire), var(--fl-amber));
    opacity: 0;
    transition: opacity 0.3s var(--fl-ease);
}

.fl-review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 85, 0, 0.32);
    box-shadow: 0 14px 36px rgba(255, 85, 0, 0.14);
}

.fl-review-card:hover::before { opacity: 1; }

.fl-review-quote-icon {
    color: var(--fl-fire);
    opacity: 0.18;
    margin-bottom: 8px;
}

.fl-review-text {
    flex: 1;
    margin: 0 0 20px;
    font-family: var(--fl-font-display);
    font-size: clamp(0.95rem, 1.4vw, 1.05rem);
    line-height: 1.72;
    color: var(--fl-text);
    font-style: italic;
    letter-spacing: 0.02em;
}

.fl-review-text::before {
    content: '?';
    color: var(--fl-fire);
    font-style: normal;
    font-weight: 700;
    margin-right: 2px;
}

.fl-review-text::after {
    content: '"';
    color: var(--fl-fire);
    font-style: normal;
    font-weight: 700;
    margin-left: 1px;
}

.fl-review-card-foot {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--fl-border);
}

.fl-review-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-family: var(--fl-font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
    background: linear-gradient(145deg, var(--fl-fire) 0%, #c43d00 100%);
    border: 2px solid rgba(255, 204, 0, 0.35);
    flex-shrink: 0;
}

.fl-review-card-meta { min-width: 0; text-align: left; }

.fl-review-author-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    font-style: normal;
    color: var(--fl-text);
    line-height: 1.25;
}

.fl-review-author-city {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--fl-muted);
    margin-top: 2px;
}

.fl-reviews-footnote {
    position: relative;
    z-index: 1;
    margin: 22px 0 0;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--fl-muted);
}

[data-theme="light"] .fl-reviews-panel {
    background: linear-gradient(165deg, rgba(255, 85, 0, 0.05) 0%, rgba(255, 248, 240, 0.9) 55%, var(--fl-card) 100%);
    border-color: rgba(255, 85, 0, 0.14);
    box-shadow: 0 20px 56px rgba(44, 24, 16, 0.08);
}

[data-theme="light"] .fl-review-card {
    background: var(--fl-card);
    box-shadow: 0 8px 28px rgba(44, 24, 16, 0.06);
}

[data-theme="light"] .fl-review-card:hover {
    box-shadow: 0 14px 36px rgba(255, 85, 0, 0.12);
}

/* Franchise */
.fl-franchise {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    min-height: 380px;
    display: flex; align-items: center;
    border: 1px solid var(--fl-border);
}

.fl-franchise-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
}

.fl-franchise-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(12, 12, 14, 0.95) 0%, rgba(12, 12, 14, 0.7) 55%, rgba(255, 77, 0, 0.15) 100%);
}

.fl-franchise-content {
    position: relative; z-index: 1;
    padding: 48px;
    max-width: 520px;
}

.fl-franchise-content p { color: rgba(244, 244, 245, 0.8); margin-bottom: 20px; }

.fl-franchise-list {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-bottom: 28px;
}

.fl-franchise-list li {
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--fl-border);
    border-radius: 999px;
    font-size: 0.82rem; font-weight: 600;
}

/* Footer (legacy simple ? kept for reference) */
.flamers-footer {
    padding: 48px 0 32px;
    border-top: 1px solid var(--fl-border);
    background: var(--fl-bg-alt);
}

.flamers-footer-inner { text-align: center; }

.flamers-footer-logo img { height: 40px; margin: 0 auto 12px; }

.flamers-footer-tagline { font-size: 0.85rem; color: var(--fl-muted); margin-bottom: 20px; }

.flamers-footer-nav {
    display: flex; flex-wrap: wrap; gap: 8px 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.flamers-footer-nav a {
    font-size: 0.85rem; color: var(--fl-muted);
    transition: color 0.2s;
}

.flamers-footer-nav a:hover { color: var(--fl-fire); }

.flamers-footer-copy { font-size: 0.78rem; color: var(--fl-muted); opacity: 0.7; }

/* Franchise ? editorial spotlight (no Gulab-style panel) */
.fl-franchise-spot {
    position: relative;
    overflow: hidden;
}

.fl-franchise-spot-watermark {
    position: absolute;
    top: 48px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--fl-font-display);
    font-size: clamp(4.5rem, 16vw, 11rem);
    line-height: 1;
    letter-spacing: 0.08em;
    color: var(--fl-fire);
    opacity: 0.045;
    pointer-events: none;
    white-space: nowrap;
    user-select: none;
}

.fl-franchise-spot.is-inview .fl-franchise-spot-watermark {
    animation: flFranchiseWatermarkDrift 14s ease-in-out infinite alternate;
}

.fl-franchise-spot-glow {
    position: absolute;
    top: 20%;
    right: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 85, 0, 0.12) 0%, transparent 68%);
    pointer-events: none;
}

.fl-franchise-spot.is-inview .fl-franchise-spot-glow {
    animation: flGlowPulse 7s ease-in-out infinite;
}

.fl-franchise-spot-head {
    position: relative;
    z-index: 1;
    margin-bottom: 36px;
}

.fl-franchise-spot-title {
    font-family: var(--fl-font-display);
    font-size: clamp(2.4rem, 5.5vw, 3.75rem);
    line-height: 0.98;
    letter-spacing: 0.03em;
    margin: 0 0 12px;
}

.fl-franchise-spot-title em {
    font-style: normal;
    color: var(--fl-fire);
}

.fl-franchise-spot-head.visible .fl-franchise-spot-title em {
    animation: flFranchiseEmGlow 3.5s ease-in-out 0.4s infinite;
}

.fl-franchise-spot-tagline {
    max-width: 520px;
    margin: 0 auto;
    font-size: 0.95rem;
    font-style: italic;
    letter-spacing: 0.03em;
    color: var(--fl-muted);
}

.fl-franchise-spot-editorial {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.88fr);
    gap: 0;
    align-items: center;
    min-height: 400px;
    margin-bottom: 32px;
}

.fl-franchise-spot-editorial--solo {
    grid-template-columns: 1fr;
    min-height: 0;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.fl-franchise-spot-card {
    position: relative;
    z-index: 3;
    max-width: 540px;
    margin-right: -72px;
    padding: 32px 32px 28px;
    border-radius: 20px;
    background: var(--fl-card);
    border: 1px solid rgba(255, 85, 0, 0.2);
    box-shadow:
        0 28px 64px rgba(0, 0, 0, 0.38),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.fl-franchise-spot-editorial--solo .fl-franchise-spot-card {
    margin-right: 0;
    max-width: none;
}

.fl-franchise-spot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 28px;
    width: 48px;
    height: 4px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, var(--fl-fire), var(--fl-amber));
}

.fl-franchise-spot-card.visible::before {
    animation: flFranchiseAccentGrow 0.8s var(--fl-ease) 0.15s both;
}

.fl-franchise-spot-lead {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.55;
    margin: 8px 0 14px;
    color: var(--fl-text);
}

.fl-franchise-spot-text {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--fl-muted);
    margin: 0 0 22px;
}

.fl-franchise-spot-brands {
    margin-bottom: 24px;
}

.fl-franchise-spot-brands-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fl-fire);
    margin-bottom: 10px;
}

.fl-franchise-spot-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fl-franchise-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--fl-text);
    background: rgba(255, 85, 0, 0.08);
    border: 1px solid rgba(255, 85, 0, 0.2);
    transition: transform 0.25s var(--fl-ease), border-color 0.25s, background 0.25s;
}

.fl-franchise-chip:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 85, 0, 0.35);
    background: rgba(255, 85, 0, 0.12);
}

.fl-franchise-spot-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.fl-franchise-spot-visual {
    position: relative;
    justify-self: end;
    width: 100%;
    max-width: 520px;
}

.fl-franchise-spot-photo {
    margin: 0;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 4.6;
    transform: rotate(2deg);
    border: 1px solid rgba(255, 204, 0, 0.2);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s var(--fl-ease);
}

.fl-franchise-spot-visual.visible .fl-franchise-spot-photo {
    animation: flFranchisePhotoEnter 0.95s var(--fl-ease) forwards, flFranchisePhotoFloat 6s ease-in-out 1.1s infinite;
}

.fl-franchise-spot-visual:hover .fl-franchise-spot-photo {
    animation-play-state: paused, paused;
    transform: rotate(0deg) translateY(0) !important;
}

.fl-franchise-spot-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fl-franchise-spot-locations {
    position: absolute;
    left: -20px;
    bottom: 36px;
    padding: 16px 20px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--fl-fire) 0%, #c43d00 100%);
    color: #fff;
    box-shadow: 0 14px 36px rgba(255, 85, 0, 0.35);
    border: 1px solid rgba(255, 204, 0, 0.28);
    transform: rotate(-2deg);
    opacity: 0;
}

.fl-franchise-spot-visual.visible .fl-franchise-spot-locations {
    animation: flFranchiseStatPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.45s both;
}

.fl-franchise-spot-locations strong {
    display: block;
    font-family: var(--fl-font-display);
    font-size: 1.85rem;
    line-height: 1;
    letter-spacing: 0.04em;
    color: var(--fl-amber);
}

.fl-franchise-spot-locations span {
    display: block;
    margin-top: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fl-franchise-spot-stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 40px;
}

.fl-franchise-spot-stat {
    text-align: center;
    padding: 24px 18px 22px;
    border-radius: 16px;
    background: var(--fl-bg-alt);
    border: 1px solid var(--fl-border);
    transition: transform 0.3s var(--fl-ease), border-color 0.3s, box-shadow 0.3s;
}

.fl-franchise-spot-stat[data-animate].visible {
    transition: opacity 0.75s var(--fl-ease), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.fl-franchise-spot-stat:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 85, 0, 0.28);
    box-shadow: 0 16px 36px rgba(255, 85, 0, 0.1);
}

.fl-franchise-spot-stat .fl-franchise-metric-value {
    display: block;
    font-family: var(--fl-font-display);
    font-size: 1.75rem;
    line-height: 1;
    letter-spacing: 0.04em;
    color: var(--fl-fire);
    margin-bottom: 6px;
}

.fl-franchise-metric-value--text {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.5s var(--fl-ease), transform 0.5s var(--fl-ease);
}

.fl-franchise-metric-value--text.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fl-franchise-spot-stat span {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--fl-muted);
}

.fl-franchise-spot-timeline {
    position: relative;
    z-index: 1;
}

.fl-franchise-spot-timeline-head {
    margin-bottom: 28px;
}

.fl-franchise-spot-timeline-head .fl-block-title {
    margin-bottom: 0;
}

.fl-franchise-spot-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.fl-franchise-spot-step {
    position: relative;
    display: grid;
    grid-template-columns: 56px 44px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 24px 0 24px 8px;
}

.fl-franchise-spot-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 27px;
    top: 68px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(255, 85, 0, 0.45), rgba(255, 85, 0, 0.08));
    transform: scaleY(0);
    transform-origin: top center;
    transition: transform 0.65s var(--fl-ease);
}

.fl-franchise-spot-step.is-drawn:not(:last-child)::after {
    transform: scaleY(1);
}

.fl-franchise-spot-step.visible .fl-franchise-spot-step-icon {
    animation: flFranchiseIconPop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
}

.fl-franchise-spot-step.visible .fl-franchise-spot-step-num {
    animation: flFranchiseNumIn 0.5s var(--fl-ease) both;
}

.fl-franchise-spot-step-num {
    font-family: var(--fl-font-display);
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: 0.06em;
    color: var(--fl-fire);
    opacity: 0.55;
    padding-top: 8px;
}

.fl-franchise-spot-step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    color: var(--fl-amber);
    background: rgba(255, 85, 0, 0.1);
    border: 1px solid rgba(255, 85, 0, 0.2);
}

.fl-franchise-spot-step-icon .fl-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.fl-franchise-spot-step-body h4 {
    font-family: var(--fl-font-display);
    font-size: 1.08rem;
    letter-spacing: 0.04em;
    margin: 0 0 6px;
    color: var(--fl-text);
}

.fl-franchise-spot-step-body p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.6;
    color: var(--fl-muted);
}

[data-theme="light"] .fl-franchise-spot-card {
    background: #fff;
    box-shadow: 0 24px 56px rgba(44, 24, 16, 0.12);
}

[data-theme="light"] .fl-franchise-spot-stat {
    background: #fff;
}

[data-theme="light"] .fl-franchise-chip {
    background: rgba(255, 248, 240, 0.95);
}

@keyframes flFranchiseWatermarkDrift {
    0% { opacity: 0.035; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0.06; transform: translateX(calc(-50% + 12px)) translateY(-8px); }
}

@keyframes flFranchiseEmGlow {
    0%, 100% { color: var(--fl-fire); text-shadow: none; }
    50% { color: var(--fl-fire-light); text-shadow: 0 0 20px rgba(255, 85, 0, 0.35); }
}

@keyframes flFranchiseAccentGrow {
    from { width: 0; opacity: 0; }
    to { width: 48px; opacity: 1; }
}

@keyframes flFranchisePhotoEnter {
    from {
        opacity: 0;
        transform: rotate(10deg) scale(0.9) translateY(28px);
    }
    to {
        opacity: 1;
        transform: rotate(2deg) scale(1) translateY(0);
    }
}

@keyframes flFranchisePhotoFloat {
    0%, 100% { transform: rotate(2deg) translateY(0); }
    50% { transform: rotate(1deg) translateY(-8px); }
}

@keyframes flFranchiseStatPop {
    from {
        opacity: 0;
        transform: rotate(-2deg) scale(0.75) translateY(16px);
    }
    to {
        opacity: 1;
        transform: rotate(-2deg) scale(1) translateY(0);
    }
}

@keyframes flFranchiseIconPop {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(-12deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes flFranchiseNumIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 0.55;
        transform: translateX(0);
    }
}

/* Map section */
.fl-section-map { padding-top: 0; }
.fl-map-panel {
    position: relative;
    border-radius: var(--fl-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 85, 0, 0.28);
    background: linear-gradient(160deg, #1a0e08 0%, #0e0e10 55%, #050505 100%);
    box-shadow: var(--fl-shadow), 0 0 0 1px rgba(255, 85, 0, 0.08);
}
.fl-map-panel-accent {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b1a1a, var(--fl-fire), var(--fl-amber));
    z-index: 5;
}
.fl-map-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 18px;
    background: linear-gradient(90deg, rgba(20, 10, 6, 0.95) 0%, rgba(139, 26, 26, 0.85) 50%, rgba(20, 10, 6, 0.95) 100%);
    border-bottom: 1px solid rgba(255, 85, 0, 0.22);
    color: #fafafa;
    font-size: 0.86rem;
    position: relative;
    z-index: 4;
}
.fl-map-toolbar-search { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.fl-map-toolbar-icon {
    display: flex; align-items: center; justify-content: center;
    width: 30px; height: 30px;
    border-radius: 8px;
    background: rgba(255, 85, 0, 0.14);
    color: var(--fl-amber);
    border: 1px solid rgba(255, 85, 0, 0.28);
}
.fl-map-toolbar-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.fl-map-toolbar-pill {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 85, 0, 0.14);
    color: var(--fl-amber);
    border: 1px solid rgba(255, 85, 0, 0.3);
}
.fl-map-toolbar-count { font-size: 0.8rem; color: rgba(250, 250, 250, 0.75); white-space: nowrap; }
.fl-map-toolbar-count strong { color: var(--fl-amber); font-family: var(--fl-font-display); font-size: 1.05rem; margin-right: 2px; }
.fl-map-canvas-wrap { position: relative; background: #0e0e10; overflow: hidden; }
.flamers-map {
    width: 100%;
    height: min(62vh, 560px);
    min-height: 400px;
    background: #0e0e10;
    z-index: 1;
    position: relative;
}
.flamers-map .leaflet-container {
    width: 100% !important;
    height: 100% !important;
    font-family: var(--fl-font-body);
    background: #0e0e10;
}
.flamers-map .leaflet-tile-pane {
    filter: sepia(0.12) hue-rotate(-8deg) saturate(1.05) brightness(0.85);
}
.fl-map-vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    background:
        linear-gradient(180deg, rgba(20, 10, 6, 0.18) 0%, transparent 14%, transparent 86%, rgba(20, 10, 6, 0.22) 100%),
        radial-gradient(ellipse at center, transparent 62%, rgba(5, 5, 5, 0.35) 100%);
}
.fl-map-marker-wrap { background: transparent; border: none; }
.fl-map-marker {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 3px 7px 3px 5px;
    background: linear-gradient(135deg, #ff7722 0%, var(--fl-fire) 55%, #c43d00 100%);
    color: #fff;
    border: 1.5px solid rgba(255, 204, 0, 0.65);
    border-radius: 6px;
    font-size: 0.58rem;
    font-weight: 700;
    font-family: var(--fl-font-display);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(255, 85, 0, 0.45);
    line-height: 1;
    transition: transform 0.2s var(--fl-ease), box-shadow 0.2s;
}
.fl-map-marker-pin { flex-shrink: 0; color: var(--fl-amber); }
.fl-map-marker-wrap:hover .fl-map-marker {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 20px rgba(255, 85, 0, 0.55);
}
.flamers-map .leaflet-control-zoom {
    border: 1px solid rgba(255, 85, 0, 0.35) !important;
    border-radius: 10px !important;
    overflow: hidden;
}
.flamers-map .leaflet-control-zoom a {
    background: rgba(20, 10, 6, 0.94) !important;
    color: var(--fl-amber) !important;
    border-color: rgba(255, 85, 0, 0.2) !important;
}
.flamers-map .leaflet-control-zoom a:hover {
    background: var(--fl-fire) !important;
    color: #fff !important;
}
.fl-map-popup .leaflet-popup-content-wrapper {
    background: linear-gradient(145deg, #ff5500, #c43d00);
    color: #fff;
    border-radius: 10px;
    border: 1px solid rgba(255, 204, 0, 0.45);
}
.fl-map-popup-inner { display: flex; flex-direction: column; gap: 2px; }
.fl-map-popup-inner strong { font-family: var(--fl-font-display); font-size: 0.88rem; color: var(--fl-amber); }
.fl-map-popup-inner span { font-size: 0.78rem; color: rgba(255, 255, 255, 0.9); }
.fl-map-note {
    margin: 0;
    padding: 12px 18px;
    font-size: 0.78rem;
    color: rgba(250, 250, 250, 0.55);
    background: linear-gradient(90deg, rgba(20, 10, 6, 0.55), rgba(139, 26, 26, 0.35));
    border-top: 1px solid rgba(255, 85, 0, 0.18);
    position: relative;
    z-index: 4;
}

/* Contact section */
.fl-section-contact {
    position: relative;
}

.fl-section-contact .fl-section-head {
    margin-bottom: 28px;
}

.fl-contact-intro {
    max-width: 520px;
    margin: 10px auto 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--fl-muted);
}

.fl-contact-panel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255, 85, 0, 0.18);
    background: linear-gradient(165deg, rgba(255, 85, 0, 0.05) 0%, var(--fl-card) 100%);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
    padding: 0;
}

.fl-contact-panel-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--fl-red-deep), var(--fl-fire), var(--fl-amber));
    z-index: 2;
}

.fl-contact-panel-top {
    position: relative;
    z-index: 1;
    padding: 24px 28px 0;
}

.fl-contact-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.fl-contact-chips span {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 999px;
    color: var(--fl-fire-light);
    background: rgba(255, 85, 0, 0.08);
    border: 1px solid rgba(255, 85, 0, 0.2);
}

.fl-contact-panel-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
    gap: 18px;
    position: relative;
    z-index: 1;
    padding: 20px 28px 28px;
}

.fl-contact-info-side {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 26px 24px;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(160deg, #1c1008 0%, #2a1608 100%);
    border: 1px solid rgba(255, 85, 0, 0.24);
}

.fl-contact-info-badge {
    display: inline-block;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fl-amber);
    margin-bottom: 10px;
}

.fl-contact-info-title {
    font-family: var(--fl-font-display);
    font-size: clamp(1.3rem, 2.2vw, 1.6rem);
    margin: 0 0 8px;
    line-height: 1.15;
    letter-spacing: 0.04em;
}

.fl-contact-info-lead {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
}

.fl-contact-detail-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fl-contact-detail-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: background 0.25s, border-color 0.25s;
}

.fl-contact-detail-card:hover {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 204, 0, 0.28);
}

.fl-contact-detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    color: var(--fl-amber);
    background: rgba(255, 85, 0, 0.14);
    border: 1px solid rgba(255, 85, 0, 0.24);
    flex-shrink: 0;
}

.fl-contact-detail-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.fl-contact-detail-copy small {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.fl-contact-detail-copy strong {
    font-family: var(--fl-font-display);
    font-size: 0.98rem;
    font-weight: 500;
    word-break: break-word;
    letter-spacing: 0.03em;
}

.fl-contact-locations-label {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.fl-contact-city-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fl-contact-city-pill {
    font-size: 0.76rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.88);
}

.fl-contact-trust-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.76rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
}

.fl-contact-trust-note svg {
    flex-shrink: 0;
    opacity: 0.75;
}

.fl-contact-map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--fl-amber);
    transition: color 0.2s;
}

.fl-contact-map-link:hover {
    color: #fff;
}

.fl-contact-form-side {
    display: flex;
    flex-direction: column;
    padding: 26px 24px;
    border-radius: 16px;
    background: var(--fl-bg-alt);
    border: 1px solid var(--fl-border);
}

.fl-contact-form-eyebrow {
    display: block;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fl-fire);
    margin-bottom: 8px;
}

.fl-contact-form-title {
    font-family: var(--fl-font-display);
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    margin: 0 0 8px;
    letter-spacing: 0.04em;
    line-height: 1.15;
}

.fl-contact-form-text {
    font-size: 0.88rem;
    color: var(--fl-muted);
    margin: 0 0 20px;
    line-height: 1.6;
}

.fl-contact-quick-form {
    display: grid;
    gap: 14px;
}

.fl-contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.fl-contact-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--fl-text);
}

.fl-contact-field input,
.fl-contact-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--fl-border);
    border-radius: 10px;
    background: var(--fl-card);
    color: var(--fl-text);
    font-family: var(--fl-font-body);
    font-size: 0.92rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.fl-contact-field input::placeholder,
.fl-contact-field textarea::placeholder {
    color: var(--fl-muted);
    opacity: 0.75;
}

.fl-contact-field input:focus,
.fl-contact-field textarea:focus {
    outline: none;
    border-color: rgba(255, 85, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(255, 85, 0, 0.1);
}

.fl-contact-field textarea {
    resize: vertical;
    min-height: 120px;
}

.fl-contact-form-submit {
    width: 100%;
    margin-top: 2px;
}

.fl-contact-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--fl-border);
}

.fl-contact-quick-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid var(--fl-border);
    background: var(--fl-card);
    color: var(--fl-muted);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.fl-contact-quick-link--primary {
    color: var(--fl-fire-light);
    border-color: rgba(255, 85, 0, 0.28);
    background: rgba(255, 85, 0, 0.08);
}

.fl-contact-quick-link:hover {
    color: var(--fl-text);
    border-color: rgba(255, 85, 0, 0.35);
    background: rgba(255, 85, 0, 0.1);
}

[data-theme="light"] .fl-contact-panel {
    box-shadow: 0 14px 36px rgba(44, 24, 16, 0.08);
}

[data-theme="light"] .fl-contact-form-side {
    background: #fff;
}

[data-theme="light"] .fl-contact-field input,
[data-theme="light"] .fl-contact-field textarea {
    background: #faf8f5;
}

/* Apply modal */
body.fl-apply-modal-open { overflow: hidden; }
.fl-apply-modal[hidden] { display: none !important; }
.fl-apply-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.fl-apply-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.82);
    backdrop-filter: blur(6px);
}
.fl-apply-modal-dialog {
    position: relative;
    width: min(100%, 480px);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    background: var(--fl-card);
    border: 1px solid var(--fl-border);
    border-radius: var(--fl-radius);
    padding: 32px 28px 28px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
    animation: flApplyModalIn 0.35s var(--fl-ease);
}
@keyframes flApplyModalIn {
    from { opacity: 0; transform: translateY(16px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.fl-apply-modal-close {
    position: absolute;
    top: 14px; right: 14px;
    width: 36px; height: 36px;
    border: 1px solid var(--fl-border);
    border-radius: 50%;
    background: var(--fl-bg-alt);
    color: var(--fl-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.fl-apply-modal-close:hover { color: var(--fl-fire); border-color: var(--fl-fire); }
.fl-apply-modal-title {
    font-family: var(--fl-font-display);
    font-size: 1.65rem;
    margin: 8px 0 10px;
    letter-spacing: 0.03em;
}
.fl-apply-modal-text { font-size: 0.9rem; color: var(--fl-muted); margin: 0; line-height: 1.6; }
.fl-apply-form { display: grid; gap: 16px; }
.fl-apply-field label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 6px; }
.fl-apply-field input,
.fl-apply-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--fl-border);
    border-radius: 10px;
    background: var(--fl-bg-alt);
    color: var(--fl-text);
    font-family: var(--fl-font-body);
    font-size: 0.92rem;
}
.fl-apply-field input:focus,
.fl-apply-field textarea:focus {
    outline: none;
    border-color: var(--fl-fire);
    box-shadow: 0 0 0 3px rgba(255, 85, 0, 0.12);
}
.fl-apply-field textarea { resize: vertical; min-height: 100px; }
.fl-apply-form-submit { width: 100%; margin-top: 4px; }
.fl-apply-modal-success {
    font-size: 0.92rem;
    color: var(--fl-fire-light);
    background: rgba(255, 85, 0, 0.1);
    border: 1px solid rgba(255, 85, 0, 0.25);
    border-radius: 10px;
    padding: 14px 16px;
    margin: 0;
    line-height: 1.55;
}

/* Premium footer */
.flamers-footer-premium {
    margin-top: 0;
    border-top: 1px solid var(--fl-border);
    background: linear-gradient(180deg, var(--fl-bg-alt) 0%, rgba(255, 85, 0, 0.04) 100%);
}

.flamers-footer-premium .container {
    width: 100%;
    max-width: 1100px;
    padding-left: 20px;
    padding-right: 20px;
}

.fl-footer-top {
    padding: 48px 0 36px;
}

.fl-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px 28px;
    align-items: start;
    width: 100%;
}

.fl-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

.fl-footer-logo img {
    display: block;
    height: auto;
    max-width: 80px;
    border-radius: 50%;
}

.fl-footer-brand-name {
    margin: 0;
    font-family: var(--fl-font-display);
    font-size: 1.15rem;
    letter-spacing: 0.05em;
    line-height: 1.1;
    color: var(--fl-text);
}

.fl-footer-tagline {
    font-size: 0.94rem;
    color: var(--fl-muted);
    line-height: 1.55;
    margin: 0;
}

.fl-footer-col {
    min-width: 0;
}

.fl-footer-col-title {
    font-family: var(--fl-font-display);
    font-size: 1.05rem;
    margin: 0 0 14px;
    letter-spacing: 0.05em;
}

.fl-footer-links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.fl-footer-links a {
    font-size: 0.92rem;
    color: var(--fl-muted);
    transition: color 0.2s, transform 0.2s;
}

.fl-footer-links a:hover { color: var(--fl-fire); transform: translateX(3px); }

.fl-footer-contact-list {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fl-footer-contact-list a {
    font-size: 0.92rem;
    color: var(--fl-muted);
    transition: color 0.2s;
    word-break: break-word;
}

.fl-footer-contact-list a:hover { color: var(--fl-fire); }

.fl-footer-cities {
    font-size: 0.88rem;
    color: var(--fl-muted);
    margin: 0;
    line-height: 1.5;
}

.fl-footer-map-text {
    font-size: 0.9rem;
    color: var(--fl-muted);
    line-height: 1.55;
    margin: 0 0 10px;
}

.fl-footer-map-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--fl-fire);
    transition: color 0.2s;
}

.fl-footer-map-link:hover { color: var(--fl-amber); }

.fl-footer-bottom {
    border-top: 1px solid var(--fl-border);
    padding: 20px 0 28px;
    background: rgba(0, 0, 0, 0.15);
}

.fl-footer-bottom-inner { text-align: center; }

.fl-footer-copy {
    font-size: 0.84rem;
    color: var(--fl-muted);
    margin: 0;
    line-height: 1.5;
}

/* Scroll animations */
[data-animate] {
    opacity: 0;
    transition: opacity 0.65s var(--fl-ease), transform 0.65s var(--fl-ease);
}

.fl-franchise-spot [data-animate] {
    transition-duration: 0.8s;
}

[data-animate="fade-up"] { transform: translateY(28px); }
[data-animate="fade-right"] { transform: translateX(-32px); }
[data-animate="fade-left"] { transform: translateX(32px); }
[data-animate="scale-in"] { transform: scale(0.88); opacity: 0; }
[data-animate].visible { opacity: 1; transform: none; }

.fl-franchise-spot-stat[data-animate="fade-up"] {
    transform: translateY(32px) scale(0.94);
}

.fl-franchise-spot-stat[data-animate].visible {
    transform: translateY(0) scale(1);
}

/* Responsive */
@media (max-width: 1024px) {
    .container { padding-left: 18px; padding-right: 18px; }
    .fl-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .fl-menu-cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .fl-menu-tabs { justify-content: flex-start; flex-wrap: nowrap; }
    .fl-gallery-showcase {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: minmax(180px, auto);
    }
    .fl-gallery-showcase-item--feature {
        grid-column: span 2;
        grid-row: span 1;
    }
    .fl-franchise-spot-card { margin-right: 0; max-width: none; }
    .fl-franchise-spot-locations { left: 16px; bottom: 16px; transform: none; }
    .fl-franchise-spot-editorial { gap: 24px; }
}

@media (max-width: 900px) {
    .fl-about-scroll-block { grid-template-columns: 1fr; gap: 28px; }
    .fl-about-visual-sticky { position: static; top: auto; }
    .fl-about-img-wrap { max-width: 560px; margin-inline: auto; width: 100%; }
    .fl-about-scroll-content { padding-bottom: 0; }
    .fl-pillars { grid-template-columns: 1fr; }
    .fl-why-join-bento { grid-template-columns: 1fr; }
    .fl-why-join-foot { flex-direction: column; align-items: stretch; text-align: center; }
    .fl-why-join-foot-actions { justify-content: center; flex-wrap: wrap; }
    .fl-why-join-featured-stats { grid-template-columns: 1fr; }
    .fl-menu-grid { grid-template-columns: 1fr; }
    .fl-menu-pdf-cta {
        flex-direction: column;
        text-align: center;
        padding: 20px 18px;
        gap: 14px;
    }
    .fl-menu-pdf-content { align-items: center; text-align: center; }
    .fl-menu-pdf-action { width: 100%; justify-content: center; }
    .fl-gallery-showcase {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: minmax(170px, auto);
    }
    .fl-gallery-showcase-item--feature {
        grid-column: span 2;
        grid-row: span 1;
    }
    .fl-gallery-showcase-overlay { opacity: 1; }
    .fl-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .fl-franchise-spot-editorial {
        grid-template-columns: 1fr;
        min-height: 0;
        gap: 24px;
    }
    .fl-franchise-spot-card {
        margin-right: 0;
        max-width: none;
        order: 2;
    }
    .fl-franchise-spot-visual {
        order: 1;
        max-width: none;
        justify-self: stretch;
    }
    .fl-franchise-spot-photo {
        transform: none;
        aspect-ratio: 16 / 10;
    }
    .fl-franchise-spot-locations {
        left: 12px;
        bottom: 12px;
        transform: none;
        max-width: calc(100% - 24px);
    }
    .fl-franchise-spot-stats { grid-template-columns: 1fr; gap: 12px; }
    .fl-map-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px 14px;
    }
    .fl-map-toolbar-meta {
        width: 100%;
        justify-content: space-between;
    }
    .fl-map-toolbar-count { white-space: normal; }
    .flamers-map { min-height: 360px; height: 52vh; }
    .fl-reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .fl-reviews-trust {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .fl-reviews-trust-score { justify-content: center; }
    .fl-reviews-trust-pills { justify-content: center; }
    .fl-reviews-panel { padding: 28px 22px 24px; }
    .fl-contact-panel-grid { grid-template-columns: 1fr; }
    .fl-contact-panel-top { padding: 20px 18px 0; }
    .fl-contact-panel-grid { padding: 16px 18px 22px; }
    .fl-contact-info-side,
    .fl-contact-form-side { padding: 22px 18px; }
    .fl-contact-form-row { grid-template-columns: 1fr; }
    .fl-contact-quick-links { flex-direction: column; }
    .fl-contact-quick-link { width: 100%; }
    .fl-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 20px;
    }
    .fl-menu-cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .flamers-nav-mobile-actions { display: flex; justify-content: center; margin-top: 20px; gap: 12px; flex-wrap: wrap; }
    .flamers-menu-toggle { display: flex; }
    .flamers-header-actions .flamers-header-apply { display: none; }
    .flamers-header-tools { gap: 6px; }
    .flamers-nav {
        position: fixed;
        inset: 0;
        top: var(--fl-header-h);
        padding: max(24px, env(safe-area-inset-top)) 20px max(24px, env(safe-area-inset-bottom));
        background: rgba(12, 12, 14, 0.98);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        z-index: 999;
    }
    .flamers-nav.open { opacity: 1; visibility: visible; }
    .flamers-nav-list { flex-direction: column; align-items: center; gap: 8px; }
    .flamers-nav-link { font-size: 1.15rem; padding: 14px 28px; }
    .fl-apply-modal { padding: max(16px, env(safe-area-inset-top)) 16px max(16px, env(safe-area-inset-bottom)); }
}

@media (max-width: 640px) {
    .container { padding-left: 14px; padding-right: 14px; }
    .fl-cards-grid, .fl-gallery, .fl-gallery-showcase, .fl-pillars { grid-template-columns: 1fr; }
    .fl-gallery-showcase-item--feature { grid-column: span 1; grid-row: span 1; }
    .fl-gallery-showcase-frame .fl-food-img { padding: 16px; }
    .fl-gallery-showcase-item--feature .fl-gallery-showcase-frame .fl-food-img { padding: 20px; }
    .fl-reviews-grid { grid-template-columns: 1fr; }
    .fl-reviews-trust { padding: 14px 16px; }
    .fl-reviews-trust-pills span { font-size: 0.62rem; padding: 6px 10px; }
    .fl-reviews-score-num { font-size: 2rem; }
    .fl-reviews-panel { padding: 22px 16px 20px; }
    .fl-menu-cards-grid { grid-template-columns: 1fr; }
    .fl-menu-item { grid-template-columns: 1fr; }
    .fl-menu-item-img img { min-height: 160px; }
    .fl-section { padding: var(--fl-section-pad-mob) 0; }
    .fl-title { font-size: clamp(1.65rem, 7vw, 2.2rem); line-height: 1.12; }
    .fl-contact-panel-top { padding: 18px 14px 0; }
    .fl-contact-panel-grid { padding: 14px 14px 18px; }
    .fl-contact-info-side,
    .fl-contact-form-side { padding: 18px 14px; }
    .fl-contact-chips span { font-size: 0.6rem; padding: 6px 10px; }
    .fl-footer-grid { grid-template-columns: 1fr; gap: 22px; }
    .flamers-footer-premium .container {
        padding-left: 14px;
        padding-right: 14px;
    }
    .flamers-map { min-height: 320px; height: 50vh; }
    .fl-map-toolbar-search { font-size: 0.88rem; }
    .fl-franchise-spot-head .fl-title { font-size: clamp(1.7rem, 8vw, 2.4rem); }
    .karvi-back-home {
        left: max(0.75rem, env(safe-area-inset-left));
        bottom: max(1rem, env(safe-area-inset-bottom));
    }

    .fl-franchise-spot-card { padding: 24px 20px 22px; }
    .fl-why-join { margin-top: 32px; padding-top: 32px; }
    .fl-why-join-panel { padding: 20px 14px 16px; }
    .fl-why-join-cards { grid-template-columns: 1fr; }
    .fl-why-join-featured-stats { grid-template-columns: 1fr; }
    .fl-franchise-spot-step {
        grid-template-columns: 44px 40px minmax(0, 1fr);
        gap: 12px;
        padding-left: 0;
    }

    .fl-hero-fade { height: 34%; }
    .fl-hero-fade::before { backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
}

@media (prefers-reduced-motion: reduce) {
    .fl-strip-track, .flamers-glow, .flamers-loader-logo, .flamers-loader-bar::after { animation: none !important; }
    .fl-franchise-spot-watermark,
    .fl-franchise-spot-glow,
    .fl-franchise-spot-photo,
    .fl-franchise-spot-locations,
    .fl-franchise-spot-title em { animation: none !important; }
    .fl-franchise-spot-step:not(:last-child)::after { transform: scaleY(1); transition: none; }
    .fl-franchise-spot-step.visible .fl-franchise-spot-step-icon,
    .fl-franchise-spot-step.visible .fl-franchise-spot-step-num { animation: none !important; }
    [data-animate] { opacity: 1; transform: none; transition: none; }
}
