/* ============================================================
   Fareseeker — Mock 01 (Bootstrap Polish)
   Front-page only. Loaded after Bootstrap 5.3 + Inter font.
   ============================================================ */

:root {
    --fs-primary: #0d6efd;
    --fs-accent: #ff5a5f;
    --fs-bg: #f7f8fb;
    --fs-card: #ffffff;
    --fs-ink: #0b1b2b;
    --fs-muted: #5a6b7b;
    --fs-good: #16a34a;
    --fs-okay: #f59e0b;
    --fs-hot: #ef4444;
}

/* Scope to front page so we don't fight other templates */
body.home,
body.front-page-mock01 {
    background: var(--fs-bg) !important;
    color: var(--fs-ink);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    /* Push content below the fixed dark site-header (≈72px on desktop). */
    padding-top: 72px;
}
@media (max-width: 768px) {
    body.home,
    body.front-page-mock01 { padding-top: 64px; }
}

/* Suppress legacy theme's purple/pink/cyan radial gradient on home only.
   Mock 01 uses a clean light surface; the legacy gradient creates muddy
   tint behind the new layout. */
body.home::before,
body.front-page-mock01::before { display: none !important; }

/* ---------- HERO ---------- */
.fsm-hero {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 28px 28px;
    background: linear-gradient(120deg, #0b1b2b 0%, #142a44 60%, #1f4068 100%);
    color: #fff;
    /* Generous top padding so the freshness pill never collides with the
       theme's site-header (which is sticky/dark in this theme). */
    padding: 96px 0 64px;
    margin-top: 0;
}
@media (max-width: 768px) {
    .fsm-hero { padding: 72px 0 48px; border-radius: 0 0 18px 18px; }
}
.fsm-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1488085061387-422e29b40080?w=1600&q=70&auto=format&fit=crop') center/cover;
    opacity: .18;
    mix-blend-mode: screen;
    pointer-events: none;
}
.fsm-hero > .container { position: relative; z-index: 2; }
.fsm-hero h1 {
    font-weight: 900;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.05;
    margin-bottom: .5rem;
    color: #fff;
}
.fsm-hero h1 .accent {
    background: linear-gradient(90deg, #ff8a5b, #ff5a5f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.fsm-hero p.lead {
    color: #c9d6e6;
    max-width: 620px;
}

.fsm-freshness {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(22, 163, 74, .18);
    color: #bbf7d0;
    border: 1px solid rgba(22, 163, 74, .4);
    padding: .3rem .7rem;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 600;
}
.fsm-freshness .pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, .7);
    animation: fsm-pulse 1.6s infinite;
}
@keyframes fsm-pulse {
    70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* ---------- DEAL OF THE MOMENT ---------- */
.fsm-moment {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    min-height: 220px;
}
.fsm-moment .img {
    /* Layered gradient ALWAYS shows even if Unsplash fails */
    background:
        linear-gradient(135deg, #1f4068 0%, #ff5a5f 100%);
    background-size: cover;
    background-position: center;
    position: relative;
}
.fsm-moment .img.has-photo {
    background:
        linear-gradient(135deg, rgba(31, 64, 104, .35) 0%, rgba(255, 90, 95, .25) 100%),
        var(--fsm-photo-url, none) center/cover no-repeat,
        linear-gradient(135deg, #1f4068 0%, #ff5a5f 100%);
}
.fsm-moment .img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 50%, #142a44 100%);
}
.fsm-moment .body {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}
.fsm-moment .tag {
    font-size: .72rem;
    letter-spacing: 2px;
    color: #ff8a5b;
    font-weight: 700;
}
.fsm-moment .price {
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
}
.fsm-moment .price small {
    font-size: .9rem;
    color: #c9d6e6;
    font-weight: 500;
    margin-left: .3rem;
}
.fsm-moment .route {
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
}
.fsm-moment a.btn-light {
    color: #0b1b2b;
}

/* ---------- ORIGIN PILLS ---------- */
.fsm-origin-pills {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}
.fsm-origin-pills .pill {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .18);
    padding: .45rem .85rem;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .15s ease;
    text-decoration: none;
}
.fsm-origin-pills .pill:hover,
.fsm-origin-pills .pill.active {
    background: #fff;
    color: #0b1b2b;
    border-color: #fff;
}

/* Origin select (mobile-friendly fallback) */
.fsm-origin-select {
    margin-top: 1rem;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .25);
    padding: .55rem .85rem;
    border-radius: 12px;
    font-weight: 600;
    width: auto;
    max-width: 100%;
}
.fsm-origin-select option { background: #0b1b2b; color: #fff; }

/* ---------- SECTION TITLE & TABS ---------- */
.fsm-section-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: .4rem;
    gap: 1rem;
    flex-wrap: wrap;
}
.fsm-section-title h2 {
    font-weight: 800;
    margin: 0;
    font-size: 1.6rem;
    color: var(--fs-ink);
}
.fsm-section-title p {
    color: var(--fs-muted);
    margin: 0;
    font-size: .92rem;
}

.fsm-tabs {
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
    margin: 1rem 0 1.25rem;
}
.fsm-tabs .tab {
    background: #fff;
    border: 1px solid #e6ebf1;
    color: var(--fs-ink);
    padding: .55rem 1rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    transition: all .15s ease;
}
.fsm-tabs .tab:hover { border-color: #c8d4e3; }
.fsm-tabs .tab.active {
    background: var(--fs-ink);
    color: #fff;
    border-color: var(--fs-ink);
}
.fsm-tabs .tab .count {
    background: rgba(0, 0, 0, .08);
    color: inherit;
    padding: 0 .45rem;
    border-radius: 8px;
    font-size: .75rem;
    font-weight: 700;
}
.fsm-tabs .tab.active .count {
    background: rgba(255, 255, 255, .18);
}

/* ---------- DEAL CARDS ---------- */
.fsm-deal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 18px;
}
.fsm-deal-card {
    background: var(--fs-card);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(11, 27, 43, .04), 0 8px 24px -12px rgba(11, 27, 43, .12);
    transition: transform .15s ease, box-shadow .15s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}
.fsm-deal-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 2px 4px rgba(11, 27, 43, .06), 0 18px 36px -16px rgba(11, 27, 43, .2);
}

.fsm-deal-card .photo {
    height: 160px;
    background-size: cover;
    background-position: center;
    background-color: #1f4068;
    /* Default state shows a softer navy gradient (no jarring red).
       When .has-photo is added, the photo replaces this layer. */
    background-image: linear-gradient(135deg, #1f4068 0%, #2d5a8a 50%, #4a7eb5 100%);
    position: relative;
}
.fsm-deal-card .photo.has-photo {
    /* Photo on top, accent gradient as fallback if image 404s. */
    background:
        var(--fsm-card-photo, none) center/cover no-repeat,
        linear-gradient(135deg, #1f4068 0%, #2d5a8a 50%, #4a7eb5 100%);
}
.fsm-deal-card .photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, .55));
    pointer-events: none;
}

.fsm-deal-card .badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 6px;
    z-index: 2;
}
.fsm-badge-score {
    font-size: .7rem;
    font-weight: 800;
    padding: .25rem .55rem;
    border-radius: 8px;
    color: #fff;
    letter-spacing: .5px;
    text-transform: uppercase;
}
.fsm-badge-score.great { background: var(--fs-good); }
.fsm-badge-score.hot   { background: var(--fs-hot); }
.fsm-badge-score.okay  { background: var(--fs-okay); }
.fsm-badge-stops {
    background: rgba(255, 255, 255, .95);
    color: #0b1b2b;
    font-size: .7rem;
    font-weight: 700;
    padding: .25rem .55rem;
    border-radius: 8px;
}

.fsm-deal-card .photo .city {
    position: absolute;
    bottom: 10px;
    left: 14px;
    color: #fff;
    font-weight: 800;
    font-size: 1.15rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, .4);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: .45rem;
}
.fsm-deal-card .photo .city img.flag {
    width: 22px;
    height: 16px;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .4);
    object-fit: cover;
}

.fsm-deal-card .body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: .55rem;
    flex: 1;
}
.fsm-deal-card .route {
    font-size: .78rem;
    color: var(--fs-muted);
    font-weight: 600;
    letter-spacing: .5px;
}
.fsm-deal-card .meta {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .85rem;
    color: var(--fs-muted);
    flex-wrap: wrap;
}
.fsm-deal-card .meta .airline {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-weight: 600;
    color: var(--fs-ink);
}
.fsm-deal-card .meta .airline img {
    width: 22px;
    height: 22px;
    border-radius: 4px;
    background: #f1f3f7;
    object-fit: contain;
}

.fsm-deal-card .price-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-top: .2rem;
    gap: .5rem;
}
.fsm-deal-card .price {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--fs-ink);
}
.fsm-deal-card .price small {
    font-size: .7rem;
    color: var(--fs-muted);
    font-weight: 600;
    margin-left: .2rem;
}
.fsm-deal-card .cta {
    background: var(--fs-ink);
    color: #fff !important;
    border: 0;
    border-radius: 10px;
    padding: .55rem .9rem;
    font-weight: 700;
    font-size: .85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    white-space: nowrap;
}
.fsm-deal-card .cta:hover {
    background: var(--fs-primary);
    color: #fff !important;
}

/* ---------- LOADING / EMPTY ---------- */
.fsm-loading {
    text-align: center;
    padding: 3rem 1rem;
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e6ebf1;
    color: var(--fs-muted);
}
.fsm-spinner {
    width: 38px;
    height: 38px;
    border: 3px solid #e6ebf1;
    border-top-color: var(--fs-primary);
    border-radius: 50%;
    animation: fsm-spin .8s linear infinite;
    margin: 0 auto 1rem;
}
@keyframes fsm-spin { to { transform: rotate(360deg); } }

.fsm-empty-pretty {
    background: #fff;
    border: 1px dashed #d3dbe4;
    border-radius: 18px;
    padding: 36px;
    text-align: center;
    color: var(--fs-muted);
}

/* ---------- TRUST CARDS (light theme variant) ---------- */
.fsm-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}
.fsm-trust-card {
    background: #fff;
    border: 1px solid #e6ebf1;
    border-radius: 14px;
    padding: 1.15rem;
}
.fsm-trust-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .35rem;
    color: var(--fs-ink);
}
.fsm-trust-copy {
    font-size: .88rem;
    color: var(--fs-muted);
    line-height: 1.5;
    margin: 0;
}
.fsm-trust-links {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}
.fsm-trust-link {
    font-size: .82rem;
    font-weight: 600;
    color: var(--fs-primary);
    border: 1px solid #cdd9e7;
    border-radius: 999px;
    padding: .3rem .8rem;
    text-decoration: none;
    background: #fff;
}
.fsm-trust-link:hover {
    background: var(--fs-primary);
    color: #fff;
    border-color: var(--fs-primary);
}

/* ---------- AD-SAFE SLOT (preserved positions) ---------- */
.fsm-ad-safe-slot {
    margin: 2rem auto;
    max-width: 970px;
    border: 1px dashed #d3dbe4;
    border-radius: 12px;
    padding: .9rem 1rem;
    background: #fff;
}
.fsm-ad-safe-label {
    display: inline-block;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--fs-muted);
    margin-bottom: .35rem;
    font-weight: 700;
}
.fsm-ad-safe-copy {
    margin: 0;
    font-size: .85rem;
    color: var(--fs-muted);
}

/* ---------- ROUTES (popular pills) ---------- */
.fsm-route-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.fsm-route-pill {
    background: #fff;
    border: 1px solid #e6ebf1;
    color: var(--fs-ink);
    padding: .5rem .85rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: .85rem;
    font-weight: 600;
    transition: all .15s ease;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}
.fsm-route-pill:hover {
    border-color: var(--fs-primary);
    color: var(--fs-primary);
    transform: translateY(-1px);
}
.fsm-route-pill strong { color: var(--fs-good); }

/* ---------- MAP CTA ---------- */
.fsm-map-cta {
    background: linear-gradient(120deg, #142a44, #1f4068);
    color: #fff;
    border-radius: 20px;
    padding: 28px;
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    gap: 24px;
    align-items: center;
    overflow: hidden;
    position: relative;
}
.fsm-map-cta h3 {
    font-weight: 800;
    color: #fff;
}
.fsm-map-cta p { color: #c9d6e6; }
.fsm-map-cta .btn-light { color: #0b1b2b; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .fsm-moment { grid-template-columns: 1fr; }
    .fsm-moment .img { min-height: 160px; }
    .fsm-moment .img::after {
        background: linear-gradient(180deg, transparent 50%, #142a44 100%);
    }
    .fsm-map-cta { grid-template-columns: 1fr; }
    .fsm-section-title { flex-direction: column; align-items: start; }
}

/* ---------- HIDE LEGACY THEME HERO/SECTIONS ON FRONT PAGE ----------
   The legacy template had .fs-hero / .fs-notice etc. with dark styling.
   On front page only, mock 01 layout fully replaces them. We do not
   touch those styles globally because /deals/ and other pages use them.
*/
body.home .fs-hero,
body.home .fs-notice,
body.home .fs-cta-section { /* mock01 doesn't render legacy sections; defensive only */ }

/* ============================================================
   SITE-WIDE AVAILABILITY (v2.5.0)
   Bootstrap + this polish stylesheet are now loaded on every page
   so any page that ADOPTS Mock 01 markup (`.fsm-*` classes) will
   render correctly. This block intentionally does NOT override
   legacy page styling — pages like /about/, /deals/, /contact/
   use a dark gradient + white text layout that must remain intact
   until those templates are individually migrated to Mock 01.

   Rule of thumb: add site-wide rules here ONLY if they target
   `.fsm-*` or `.fs-mock-*` classes. Never target raw `body`,
   `body::before`, or generic tags in this block.
   ============================================================ */

/* (reserved for future Mock 01 migrations of /deals/, /search/, etc.) */

/* ============================================================
   MOCK 01 SITE-WIDE SCAFFOLDING (v2.6.0)
   Scoped to `body.fs-mock01` (home + any template that called
   `fs_mock01_enable()`). Safe because Bootstrap + this file are
   only enqueued for those pages — legacy templates never see it.
   ============================================================ */

body.fs-mock01 {
    background: var(--fs-bg) !important;
    color: var(--fs-ink);
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    padding-top: 72px;
}
@media (max-width: 768px) {
    body.fs-mock01 { padding-top: 64px; }
}

/* Suppress the legacy theme's global purple/pink/cyan gradient on every
   Mock 01 page (home already did this; extend to inner pages). */
body.fs-mock01::before { display: none !important; }

/* Typography cohesion across Mock 01 inner pages */
body.fs-mock01 h1,
body.fs-mock01 h2,
body.fs-mock01 h3,
body.fs-mock01 h4,
body.fs-mock01 h5 {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--fs-ink);
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin-top: 0;
}
body.fs-mock01 p { color: #334152; line-height: 1.7; }
body.fs-mock01 a { color: var(--fs-primary); text-decoration: none; }
body.fs-mock01 a:hover { color: #0a58ca; text-decoration: underline; }

/* ---------- Inner page hero (compact variant of .fsm-hero) ---------- */
.fsm-page-hero {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 24px 24px;
    background: linear-gradient(120deg, #0b1b2b 0%, #142a44 60%, #1f4068 100%);
    color: #fff;
    padding: 64px 0 40px;
    margin-bottom: 1.5rem;
}
.fsm-page-hero.fsm-hero-compact { padding: 56px 0 32px; }
.fsm-page-hero.fsm-hero-accent {
    background: linear-gradient(120deg, #0b1b2b 0%, #2a1f4a 55%, #4a1f4d 100%);
}
.fsm-page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1488085061387-422e29b40080?w=1600&q=70&auto=format&fit=crop') center/cover;
    opacity: .14;
    mix-blend-mode: screen;
    pointer-events: none;
}
.fsm-page-hero > .container { position: relative; z-index: 2; }
.fsm-page-hero h1 {
    font-weight: 900;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #fff;
    margin: .25rem 0 .5rem;
}
.fsm-page-hero .lead {
    color: #c9d6e6;
    max-width: 640px;
    margin: 0;
    font-size: 1rem;
}
.fsm-page-kicker {
    display: inline-block;
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #ff8a5b;
    font-weight: 700;
    margin-bottom: .25rem;
}
@media (max-width: 768px) {
    .fsm-page-hero { padding: 48px 0 28px; border-radius: 0 0 16px 16px; }
}

/* ---------- Page article / entry content (about, privacy, disclaimer) ---------- */
.fsm-page { min-height: 40vh; }
.fsm-page-article {
    max-width: 820px;
    margin: 0 auto;
}
.fsm-page-header { padding: 1rem 0 1.5rem; }
.fsm-page-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 900;
    margin: 0 0 .5rem;
}
.fsm-page-lead {
    color: var(--fs-muted);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto;
}

.fsm-page-content {
    background: var(--fs-card);
    border: 1px solid rgba(11, 27, 43, 0.06);
    border-radius: 18px;
    padding: 1.75rem 2rem;
    box-shadow: 0 2px 12px rgba(11, 27, 43, 0.04);
    line-height: 1.7;
}
.fsm-page-content h1,
.fsm-page-content h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 1.5rem 0 .75rem; }
.fsm-page-content h3 { font-size: 1.2rem; margin: 1.25rem 0 .5rem; }
.fsm-page-content p { margin: 0 0 1rem; }
.fsm-page-content ul,
.fsm-page-content ol { padding-left: 1.25rem; margin: .5rem 0 1.25rem; }
.fsm-page-content li { margin-bottom: .35rem; }
.fsm-page-content img { border-radius: 12px; max-width: 100%; height: auto; margin: 1rem 0; }
.fsm-page-content a { color: var(--fs-primary); text-decoration: underline; text-underline-offset: 2px; }
.fsm-page-content blockquote {
    border-left: 3px solid var(--fs-primary);
    padding: .25rem 0 .25rem 1rem;
    margin: 1.25rem 0;
    color: var(--fs-muted);
    font-style: italic;
}
.fsm-page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}
.fsm-page-content table th {
    background: #f1f4f9;
    text-align: left;
    padding: .6rem .9rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(11, 27, 43, 0.08);
}
.fsm-page-content table td {
    padding: .55rem .9rem;
    border-bottom: 1px solid rgba(11, 27, 43, 0.05);
}
@media (max-width: 768px) {
    .fsm-page-content { padding: 1.25rem 1rem; border-radius: 14px; }
}

/* ---------- Shortcode wrapper (deals / search / last-minute) ----------
   The FareSeeker plugin shortcodes render their own markup. We give them
   a soft surface + consistent horizontal padding, and restyle the most
   common plugin classes so they feel native to Mock 01. If a plugin
   control or card is missed, it still works — it just keeps legacy look
   until we explicitly restyle it.
*/
.fsm-shortcode-wrap {
    background: var(--fs-card);
    border: 1px solid rgba(11, 27, 43, 0.06);
    border-radius: 18px;
    padding: 1.25rem;
    box-shadow: 0 2px 12px rgba(11, 27, 43, 0.04);
}
@media (max-width: 768px) {
    .fsm-shortcode-wrap { padding: 1rem; border-radius: 14px; }
}

/* Plugin card override — some plugin markup uses .fs-deal-card / .fs-card */
body.fs-mock01 .fs-deal-card,
body.fs-mock01 .fs-card,
body.fs-mock01 .fs-route-card {
    background: #fff;
    border: 1px solid rgba(11, 27, 43, 0.06);
    border-radius: 14px;
    box-shadow: 0 1px 2px rgba(11, 27, 43, 0.04), 0 6px 18px -10px rgba(11, 27, 43, 0.12);
    color: var(--fs-ink);
    transition: transform .15s ease, box-shadow .15s ease;
}
body.fs-mock01 .fs-deal-card:hover,
body.fs-mock01 .fs-card:hover,
body.fs-mock01 .fs-route-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(11, 27, 43, 0.06), 0 14px 28px -12px rgba(11, 27, 43, 0.2);
}

/* Plugin text color corrections inside Mock 01 pages */
body.fs-mock01 .fs-deal-card,
body.fs-mock01 .fs-deal-card *:not(.fs-badge):not(.fs-btn):not(a),
body.fs-mock01 .fs-card,
body.fs-mock01 .fs-card *:not(.fs-badge):not(.fs-btn):not(a) {
    color: var(--fs-ink);
}
body.fs-mock01 .fs-muted,
body.fs-mock01 .text-muted { color: var(--fs-muted) !important; }

/* Buttons inside Mock 01 pages (plugin often uses .fs-btn / .btn-primary) */
body.fs-mock01 .fs-btn,
body.fs-mock01 .btn-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border: 0;
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    padding: .55rem 1.1rem;
    transition: transform .15s ease, box-shadow .15s ease;
}
body.fs-mock01 .fs-btn:hover,
body.fs-mock01 .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(13, 110, 253, 0.3);
    color: #fff;
}

/* Forms inside Mock 01 pages (search filters, etc.) */
body.fs-mock01 input[type="text"],
body.fs-mock01 input[type="search"],
body.fs-mock01 input[type="email"],
body.fs-mock01 input[type="number"],
body.fs-mock01 input[type="date"],
body.fs-mock01 select,
body.fs-mock01 textarea {
    border: 1px solid rgba(11, 27, 43, 0.12);
    border-radius: 10px;
    padding: .55rem .85rem;
    font-family: inherit;
    font-size: .95rem;
    background: #fff;
    color: var(--fs-ink);
    transition: border-color .15s ease, box-shadow .15s ease;
    width: 100%;
}
body.fs-mock01 input:focus,
body.fs-mock01 select:focus,
body.fs-mock01 textarea:focus {
    outline: none;
    border-color: var(--fs-primary);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}
body.fs-mock01 label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--fs-ink);
    margin-bottom: .3rem;
    display: block;
}

/* Generic plugin hero inside Mock 01 (suppressed — we use .fsm-page-hero) */
body.fs-mock01 .site-container > .hero-section,
body.fs-mock01 .fs-deals-hero,
body.fs-mock01 .fs-last-minute-hero,
body.fs-mock01 .fs-search-hero {
    display: none;
}

/* Keep Gravity Forms / WP default form look usable on Mock 01 contact page */
body.fs-mock01 .wpcf7 input[type="submit"],
body.fs-mock01 .contact-form button[type="submit"] {
    background: var(--fs-ink);
    color: #fff;
    border: 0;
    border-radius: 10px;
    font-weight: 700;
    padding: .65rem 1.3rem;
    cursor: pointer;
}
body.fs-mock01 .wpcf7 input[type="submit"]:hover,
body.fs-mock01 .contact-form button[type="submit"]:hover {
    background: var(--fs-primary);
}

/* Footer cohesion on Mock 01 inner pages (legacy footer is dark — that's fine) */
body.fs-mock01 .site-footer {
    margin-top: 3rem;
}
