/**
 * FPS Frontend Styles
 * Consolidated CSS for all Flightpadi Flight Search Plugin shortcodes.
 * Loaded via wp_enqueue_style — browser-cached, not inlined.
 *
 * Font: Plus Jakarta Sans (inherited from theme or Google Fonts)
 */

/* ==========================================================================
 * GLOBAL / SHARED
 * ========================================================================== */

.fps-flights-row *,
.fps-flights-row *::before,
.fps-flights-row *::after { box-sizing: border-box; }

.fps-flights-row {
    display: flex;
    gap: 12px;
    padding: 16px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.fps-grid-view {
    flex-wrap: wrap;
    overflow: visible;
    justify-content: center;
    gap: 20px;
}

.fps-flight-card {
    flex: 0 0 auto;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 15px;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.fps-flight-card:hover {
    box-shadow: 0 8px 20px rgba(3, 24, 129, 0.12);
    transform: translateY(-3px);
    border-color: #2961ee;
}

/* Flight card sizing */
.fps-flight-card-sized {
    min-width: 150px;
    width: calc(20% - 10px);
}

/* Airline card variant */
.fps-airline-card {
    padding: 20px !important;
    border: 1px solid #eaecf0;
    display: block;
    min-width: 280px;
    text-align: left;
}

.fps-ac-title {
    font-size: 16px;
    font-weight: 700;
    color: #101828;
    margin: 0 0 15px 0;
    line-height: 1.3;
    border-bottom: 1px solid #f2f4f7;
    padding-bottom: 10px;
}
.fps-ac-body {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.fps-ac-info { display: flex; flex-direction: column; gap: 6px; width: 50%; }
.fps-ac-logo { overflow: hidden; }
.fps-ac-logo img { height: 26px; max-height: 26px; width: auto; max-width: 100%; object-fit: contain; margin-bottom: 5px; }
.fps-ac-date-text { font-size: 11px; color: #667085; font-weight: 500; display: block; }
.fps-ac-meta { font-size: 10px; color: #98a2b3; text-transform: uppercase; font-weight: 600; display: block; }

.fps-ac-prices { text-align: right; width: 50%; }
.fps-ac-price-row { margin-bottom: 6px; }
.fps-ac-lbl { font-size: 9px; color: #98a2b3; text-transform: uppercase; display: block; font-weight: 600; }
.fps-ac-val { font-size: 17px; font-weight: 800; color: #031881; display: block; line-height: 1.1; }
.fps-ac-val-sm { font-size: 13px; font-weight: 600; color: #475467; display: block; }
.fps-ac-desc {
    font-size: 12px; color: #475467; margin: 0 0 15px 0; line-height: 1.5;
    background: #f9fafb; padding: 10px; border-radius: 6px;
}

.fps-book-btn {
    display: block; width: 100%; padding: 12px 4px;
    background-color: #031881 !important; color: #ffffff !important;
    text-align: center; border-radius: 8px; text-decoration: none;
    font-size: 13px; font-weight: 700; transition: all 0.2s;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.fps-flight-card:hover .fps-book-btn {
    background-color: #2961ee !important;
    color: #ffffff !important;
}
.fps-book-btn-disabled { opacity: 0.5; cursor: default; }

.fps-duration-text { font-size: 11px; color: #667085; display: block; font-weight: 500; }
.fps-duration-text-mb { margin-bottom: 6px; }
.fps-duration-text-mt { margin-top: 4px; }

.fps-price-box {
    text-align: center;
    margin-bottom: 12px;
}
.fps-price-box-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.fps-price-box-row { margin-bottom: 4px; }

.fps-is-best-deal {
    border-color: #2961ee;
    background: linear-gradient(to bottom, rgba(41, 97, 238, 0.04) 0%, #ffffff 50%);
}
.fps-date-badge {
    text-align: center; font-size: 10px; color: #888; font-weight: 600;
    text-transform: uppercase; margin-bottom: 8px; letter-spacing: 0.5px;
    border-bottom: 1px solid #f0f0f0; padding-bottom: 5px;
}
.fps-logo-container { height: 35px; display: flex; align-items: center; justify-content: center; margin-bottom: 8px; overflow: hidden; }
.fps-logo-container img { width: auto; height: 30px; max-height: 30px; max-width: 100%; object-fit: contain; }

.fps-airline { font-size: 14px; color: #555; text-align: center; margin: 0 0 4px; font-weight: 700; }
.fps-price-label { font-size: 10px; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.5px; }
.fps-amount { font-size: 18px; font-weight: 800; color: #031881; }
.fps-amount-sm { font-size: 13px; font-weight: 600; color: #666; }
.fps-naira { font-size: 75%; margin-right: 1px; }

.fps-flights-row::-webkit-scrollbar { height: 4px; }
.fps-flights-row::-webkit-scrollbar-track { background: #f1f1f1; }
.fps-flights-row::-webkit-scrollbar-thumb { background: #2961ee; border-radius: 2px; }

.fps-search-container { margin-bottom: 25px; width: 100%; max-width: 600px; margin-left: auto; margin-right: auto; }
.fps-search-input {
    width: 100%; padding: 12px 16px; border: 1px solid #ddd; border-radius: 50px;
    font-size: 16px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); transition: all 0.2s;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.fps-search-input:focus { border-color: #2961ee; outline: none; box-shadow: 0 4px 12px rgba(41, 97, 238, 0.15); }

.fps-grid-view .fps-flight-card { width: calc(25% - 15px); margin-bottom: 0; }
@media (max-width: 900px) { .fps-grid-view .fps-flight-card { width: calc(33.33% - 14px); } }
@media (max-width: 600px) {
    .fps-flights-row { gap: 10px; }
    .fps-grid-view { gap: 15px; }
    .fps-grid-view .fps-flight-card { width: 100%; max-width: 400px; }
}

.fps-no-data { color: #666; font-size: 14px; }


/* ==========================================================================
 * AIRLINE LOGO GRID (Route Pages)
 * ========================================================================== */

.fps-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.fps-logo-item {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: #ffffff; border: 1px solid #e5e7eb; border-radius: 10px;
    padding: 15px 10px; text-align: center; transition: all 0.2s ease;
    text-decoration: none !important; height: 100px; overflow: hidden;
}
.fps-logo-item:hover {
    border-color: #2961ee; transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(3, 24, 129, 0.1);
}
.fps-logo-item img { height: 32px; max-height: 32px; width: auto; max-width: 90%; object-fit: contain; margin-bottom: 8px; }
.fps-logo-name { font-size: 12px; color: #344054; font-weight: 600; line-height: 1.2; }

@media (max-width: 600px) {
    .fps-logo-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 10px; }
    .fps-logo-item { padding: 10px 5px; height: 90px; }
    .fps-logo-name { font-size: 11px; }
}


/* ==========================================================================
 * SCHEDULE TABLE (Airline Pages)
 * ========================================================================== */

.fps-sched-wrap {
    width: 100%;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.fps-sched-search { width: 100%; max-width: 500px; margin: 0 auto 20px; }
.fps-sched-input {
    width: 100%; padding: 12px 16px; border: 1px solid #e5e7eb; border-radius: 50px;
    font-size: 15px; box-shadow: 0 2px 4px rgba(0,0,0,0.04); transition: all 0.2s;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.fps-sched-input:focus { border-color: #2961ee; outline: none; box-shadow: 0 4px 12px rgba(41, 97, 238, 0.12); }
.fps-sched-hint { text-align: center; color: #94a3b8; font-size: 13px; margin-bottom: 10px; padding: 15px 0; }
.fps-sched-count { text-align: center; color: #64748b; font-size: 12px; margin-bottom: 8px; display: none; }

table.fps-sched-table {
    width: 100%; border-collapse: collapse; background: #fff;
    border: 1px solid #e5e7eb; border-radius: 10px; overflow: hidden;
}
table.fps-sched-table th {
    background: #f8fafc; font-weight: 700; color: #0f172a; white-space: nowrap;
    padding: 11px 14px; text-align: left; font-size: 13px; border-bottom: 2px solid #e2e8f0;
}
table.fps-sched-table td { padding: 10px 14px; border-bottom: 1px solid #f1f5f9; font-size: 13px; color: #334155; }
table.fps-sched-table tr:last-child td { border-bottom: 0; }
table.fps-sched-table tr.fps-sched-hidden { display: none; }

.fps-sched-route { font-weight: 700; color: #0f172a; }
.fps-sched-days { color: #475569; }
.fps-sched-dur { color: #64748b; white-space: nowrap; }
.fps-sched-stops { color: #64748b; white-space: nowrap; }
.fps-sched-noresult { display: none; text-align: center; color: #94a3b8; font-size: 13px; padding: 20px 0; }

@media (max-width: 600px) {
    table.fps-sched-table th, table.fps-sched-table td { padding: 8px 10px; font-size: 12px; }
}


/* ==========================================================================
 * HOMEPAGE: ROUTE TILE CAROUSEL (v4.2)
 * ========================================================================== */

.fps-ht-section { font-family: 'Plus Jakarta Sans', sans-serif !important; }

/* Filter Tabs */
.fps-ht-tabs { display: flex !important; gap: 6px !important; margin-bottom: 16px !important; flex-wrap: wrap !important; justify-content: center !important; }
.fps-ht-tab {
    padding: 8px 18px !important; border-radius: 50px !important; font-size: 13px !important;
    font-weight: 600 !important; border: 1.5px solid #e2e8f0 !important; background: transparent !important;
    color: #64748b !important; cursor: pointer !important; transition: all 0.15s !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important; line-height: 1.3 !important;
}
.fps-ht-tab-active { background: #031881 !important; color: #fff !important; border-color: #031881 !important; }
.fps-ht-tab:hover:not(.fps-ht-tab-active) { border-color: #94a3b8 !important; color: #334155 !important; }

/* Carousel Container */
.fps-ht-wrap { position: relative !important; overflow: hidden !important; }
.fps-ht-wrap::after {
    content: "" !important; position: absolute !important;
    right: 0 !important; top: 0 !important; bottom: 0 !important; width: 50px !important;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.95)) !important;
    pointer-events: none !important; z-index: 2 !important;
}
.fps-ht-carousel {
    display: grid !important; grid-auto-flow: column !important;
    grid-template-rows: repeat(2, 1fr) !important; grid-auto-columns: 300px !important;
    gap: 12px !important; overflow-x: auto !important; scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important; padding-bottom: 6px !important;
    scrollbar-width: none !important;
}
.fps-ht-carousel::-webkit-scrollbar { display: none !important; }

/* Tile Card */
.fps-ht-tile {
    display: flex !important; flex-direction: column !important;
    border: 1px solid #e5e7eb !important; border-radius: 12px !important;
    overflow: hidden !important; text-decoration: none !important;
    color: inherit !important; transition: all 0.25s ease !important;
}
.fps-ht-tile:hover {
    border-color: #2961ee !important; transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(3, 24, 129, 0.1) !important;
}
.fps-ht-tile.fps-ht-hidden { display: none !important; }

/* Top Section — base */
.fps-ht-top {
    position: relative !important; padding: 16px !important; min-height: 100px !important;
    display: flex !important; flex-direction: column !important; justify-content: flex-end !important;
    background-size: cover !important; background-position: center !important;
}

/* Region color backgrounds (when no featured image) */
.fps-ht-domestic { background-color: #dbeafe !important; }
.fps-ht-africa   { background-color: #d1fae5 !important; }
.fps-ht-europe   { background-color: #e0e7ff !important; }
.fps-ht-mideast  { background-color: #fef3c7 !important; }
.fps-ht-americas { background-color: #ffe4e6 !important; }
.fps-ht-asia     { background-color: #fce7f3 !important; }

/* Text on region color backgrounds */
.fps-ht-domestic .fps-ht-cities { color: #1e3a5f !important; }
.fps-ht-domestic .fps-ht-codes  { color: #3b6da0 !important; }
.fps-ht-domestic .fps-ht-region { color: #1e3a5f !important; background: rgba(255,255,255,0.6) !important; }
.fps-ht-domestic .fps-ht-plane  { color: #3b6da0 !important; }

.fps-ht-africa .fps-ht-cities { color: #064e3b !important; }
.fps-ht-africa .fps-ht-codes  { color: #047857 !important; }
.fps-ht-africa .fps-ht-region { color: #064e3b !important; background: rgba(255,255,255,0.6) !important; }
.fps-ht-africa .fps-ht-plane  { color: #047857 !important; }

.fps-ht-europe .fps-ht-cities { color: #312e81 !important; }
.fps-ht-europe .fps-ht-codes  { color: #4338ca !important; }
.fps-ht-europe .fps-ht-region { color: #312e81 !important; background: rgba(255,255,255,0.6) !important; }
.fps-ht-europe .fps-ht-plane  { color: #4338ca !important; }

.fps-ht-mideast .fps-ht-cities { color: #78350f !important; }
.fps-ht-mideast .fps-ht-codes  { color: #92400e !important; }
.fps-ht-mideast .fps-ht-region { color: #78350f !important; background: rgba(255,255,255,0.6) !important; }
.fps-ht-mideast .fps-ht-plane  { color: #92400e !important; }

.fps-ht-americas .fps-ht-cities { color: #7f1d1d !important; }
.fps-ht-americas .fps-ht-codes  { color: #991b1b !important; }
.fps-ht-americas .fps-ht-region { color: #7f1d1d !important; background: rgba(255,255,255,0.6) !important; }
.fps-ht-americas .fps-ht-plane  { color: #991b1b !important; }

.fps-ht-asia .fps-ht-cities { color: #701a75 !important; }
.fps-ht-asia .fps-ht-codes  { color: #86198f !important; }
.fps-ht-asia .fps-ht-region { color: #701a75 !important; background: rgba(255,255,255,0.6) !important; }
.fps-ht-asia .fps-ht-plane  { color: #86198f !important; }

/* Dark overlay gradient for image contrast */
.fps-ht-has-img::before {
    content: '' !important; position: absolute !important; inset: 0 !important;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%) !important;
    z-index: 1 !important; border-radius: 0 !important;
}
.fps-ht-has-img > * { position: relative !important; z-index: 2 !important; }

/* White text on image backgrounds */
.fps-ht-has-img .fps-ht-cities { color: #ffffff !important; }
.fps-ht-has-img .fps-ht-codes  { color: rgba(255,255,255,0.8) !important; }
.fps-ht-has-img .fps-ht-region { color: #ffffff !important; background: rgba(255,255,255,0.2) !important; }
.fps-ht-has-img .fps-ht-plane  { color: rgba(255,255,255,0.7) !important; }

/* Region Badge */
.fps-ht-region {
    font-size: 11px !important; font-weight: 700 !important; letter-spacing: 0.04em !important;
    text-transform: uppercase !important; display: inline-block !important;
    padding: 3px 10px !important; border-radius: 4px !important;
    margin-bottom: 8px !important; align-self: flex-start !important;
    line-height: 1.3 !important;
}

/* City Names */
.fps-ht-cities {
    font-size: 15px !important; font-weight: 700 !important;
    display: flex !important; align-items: center !important; gap: 5px !important;
    line-height: 1.3 !important;
}
.fps-ht-plane { flex-shrink: 0 !important; transform: rotate(90deg) !important; }

/* IATA Codes */
.fps-ht-codes {
    font-size: 11px !important; letter-spacing: 0.04em !important;
    margin-top: 2px !important; display: block !important;
}

/* Admin-only missing image warning */
.fps-ht-admin-warn {
    display: block !important; font-size: 10px !important; color: #ef4444 !important;
    font-weight: 700 !important; margin-top: 6px !important;
    background: rgba(239,68,68,0.15) !important; padding: 2px 8px !important;
    border-radius: 3px !important; align-self: flex-start !important;
}

/* Bottom Section */
.fps-ht-bottom {
    padding: 12px 16px 14px !important; display: flex !important;
    justify-content: space-between !important; align-items: flex-end !important;
    background: #fff !important;
}
.fps-ht-from { font-size: 11px !important; color: #94a3b8 !important; display: block !important; }
.fps-ht-price {
    font-size: 18px !important; font-weight: 800 !important; color: #031881 !important;
    line-height: 1.1 !important; display: block !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

/* Airline Logos */
.fps-ht-logos { display: flex !important; align-items: center !important; }
.fps-ht-logos img {
    width: 24px !important; height: 24px !important; border-radius: 50% !important;
    border: 2px solid #fff !important; object-fit: contain !important;
    background: #fff !important; margin-left: -6px !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08) !important;
}
.fps-ht-logos img:first-child { margin-left: 0 !important; }
.fps-ht-logo-fb {
    width: 24px !important; height: 24px !important; border-radius: 50% !important;
    border: 2px solid #fff !important; background: #f1f5f9 !important;
    margin-left: -6px !important; display: inline-flex !important;
    align-items: center !important; justify-content: center !important;
    font-size: 8px !important; font-weight: 700 !important; color: #64748b !important;
}
.fps-ht-logo-fb:first-child { margin-left: 0 !important; }

/* Arrow Buttons */
.fps-ht-arrows { display: flex !important; gap: 8px !important; justify-content: center !important; margin-top: 18px !important; }
.fps-ht-btn {
    width: 42px !important; height: 42px !important; border-radius: 50% !important;
    border: 1.5px solid #e2e8f0 !important; background: #fff !important;
    color: #475569 !important; font-size: 18px !important; cursor: pointer !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    transition: all 0.2s ease !important; line-height: 1 !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}
.fps-ht-btn:hover { border-color: #2961ee !important; color: #2961ee !important; }

/* Footer CTA */
.fps-ht-footer { text-align: center !important; margin-top: 24px !important; }
.fps-ht-footer a {
    display: inline-block !important; padding: 12px 32px !important;
    border: 2px solid #e2e8f0 !important; border-radius: 50px !important;
    color: #475569 !important; font-size: 14px !important; font-weight: 600 !important;
    text-decoration: none !important; transition: all 0.2s !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}
.fps-ht-footer a:hover { border-color: #2961ee !important; color: #2961ee !important; }

/* Responsive */
@media (max-width: 1024px) { .fps-ht-carousel { grid-auto-columns: 270px !important; } }
@media (max-width: 768px) {
    .fps-ht-carousel { grid-auto-columns: 250px !important; gap: 10px !important; }
    .fps-ht-top { padding: 12px !important; min-height: 85px !important; }
    .fps-ht-cities { font-size: 14px !important; }
    .fps-ht-price { font-size: 16px !important; }
    .fps-ht-tabs { gap: 4px !important; }
    .fps-ht-tab { padding: 6px 14px !important; font-size: 12px !important; }
}


/* ==========================================================================
 * HOMEPAGE: AIRLINE MARQUEE (v4.3)
 * ========================================================================== */

.fps-mq-section { font-family: 'Plus Jakarta Sans', sans-serif !important; }

/* Marquee container with edge fades */
.fps-mq-wrap {
    overflow: hidden !important; position: relative !important;
    padding: 8px 0 !important;
}
.fps-mq-wrap::before, .fps-mq-wrap::after {
    content: '' !important; position: absolute !important;
    top: 0 !important; bottom: 0 !important; width: 80px !important;
    z-index: 2 !important; pointer-events: none !important;
}
.fps-mq-wrap::before { left: 0 !important; background: linear-gradient(to right, #F1F5F9, transparent) !important; }
.fps-mq-wrap::after { right: 0 !important; background: linear-gradient(to left, #F1F5F9, transparent) !important; }

/* Scrolling track */
.fps-mq-track {
    display: flex !important; gap: 16px !important;
    width: max-content !important;
    animation: fpsMqScroll 35s linear infinite !important;
}
.fps-mq-track:hover { animation-play-state: paused !important; }

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

/* Individual airline pill */
.fps-mq-item {
    display: flex !important; align-items: center !important; gap: 12px !important;
    padding: 10px 20px 10px 10px !important;
    background: #fff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 50px !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    color: inherit !important;
    transition: border-color 0.2s ease, transform 0.2s ease !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}
.fps-mq-item:hover {
    border-color: #2961ee !important;
    transform: translateY(-2px) !important;
}

/* Logo circle */
.fps-mq-logo {
    width: 36px !important; height: 36px !important; border-radius: 50% !important;
    overflow: hidden !important; flex-shrink: 0 !important;
    background: #f8fafc !important; border: 1px solid #e5e7eb !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
}
.fps-mq-logo img {
    width: 36px !important; height: 36px !important;
    object-fit: cover !important; border-radius: 50% !important;
}
.fps-mq-code {
    font-size: 11px !important; font-weight: 700 !important; color: #2961ee !important;
}

/* Text */
.fps-mq-text { display: flex !important; flex-direction: column !important; }
.fps-mq-name { font-size: 13px !important; font-weight: 700 !important; color: #0f172a !important; line-height: 1.2 !important; }
.fps-mq-routes { font-size: 11px !important; font-weight: 500 !important; color: #94a3b8 !important; }

/* See All Airlines button */
.fps-mq-footer { text-align: center !important; margin-top: 28px !important; }
.fps-mq-btn {
    display: inline-block !important; padding: 12px 32px !important;
    border: 2px solid #e2e8f0 !important; border-radius: 50px !important;
    color: #475569 !important; font-size: 14px !important; font-weight: 600 !important;
    text-decoration: none !important; transition: all 0.2s !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}
.fps-mq-btn:hover { border-color: #2961ee !important; color: #2961ee !important; }

/* Responsive: slower on mobile, smaller fade */
@media (max-width: 768px) {
    .fps-mq-wrap::before, .fps-mq-wrap::after { width: 40px !important; }
    .fps-mq-item { padding: 8px 16px 8px 8px !important; gap: 10px !important; }
    .fps-mq-name { font-size: 12px !important; }
}


/* ==========================================================================
 * AIRLINE PAGE: DESTINATION CHIPS (v4.2)
 * ========================================================================== */

.fps-dest-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.fps-dest-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    line-height: 1.3;
}

a.fps-dest-chip:hover {
    border-color: #2961ee;
    background: #eef2ff;
    color: #1e40af;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(41, 97, 238, 0.1);
}

span.fps-dest-chip {
    cursor: default;
}

@media (max-width: 600px) {
    .fps-dest-chips { gap: 8px; }
    .fps-dest-chip { padding: 6px 12px; font-size: 12px; }
}


/* ==========================================================================
 * AIRLINE PAGE: OTHER AIRLINES CARD ROW (v4.2)
 * ========================================================================== */

.fps-other-airlines {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 16px;
    scrollbar-width: thin;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.fps-other-airlines::-webkit-scrollbar { height: 4px; }
.fps-other-airlines::-webkit-scrollbar-track { background: #f1f5f9; border-radius: 2px; }
.fps-other-airlines::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 2px; }

.fps-oa-card {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    max-width: 180px;
    padding: 20px 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

a.fps-oa-card:hover {
    border-color: #2961ee;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(3, 24, 129, 0.1);
}

.fps-oa-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fps-oa-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.fps-oa-logo-text {
    font-size: 14px;
    font-weight: 800;
    color: #2961ee;
}

.fps-oa-name {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
    line-height: 1.3;
}

.fps-oa-price {
    font-size: 12px;
    font-weight: 600;
    color: #031881;
}

@media (max-width: 600px) {
    .fps-other-airlines { gap: 12px; }
    .fps-oa-card { min-width: 120px; padding: 16px 12px; }
    .fps-oa-logo { width: 40px; height: 40px; }
    .fps-oa-logo img { width: 32px; height: 32px; }
    .fps-oa-name { font-size: 12px; }
}
