/* ═══════════════════════════════════════════════════════════════════════════
   SassyFunke — Single Flight Deal Page

   Matches the sf-redesign design system:
   - Cormorant Garamond headings, Plus Jakarta Sans body
   - Cream #faf8f5 background, ink #0d0d0d, terracotta #c96442, gold #c9a227
   - Fixed nav, dark footer
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Page Reset ─────────────────────────────────────────────────────────── */
body.sf-deal-page {
    margin: 0 !important;
    padding: 0 !important;
    background: #faf8f5 !important;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
    color: #0d0d0d !important;
    -webkit-font-smoothing: antialiased;
}

/* Hide Avada chrome */
body.sf-deal-page .fusion-header-wrapper,
body.sf-deal-page .fusion-footer,
body.sf-deal-page .fusion-footer-widget-area,
body.sf-deal-page .fusion-copyright-notice {
    display: none !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAVIGATION — sticky, matches .sf-nav from the redesign
   ═══════════════════════════════════════════════════════════════════════════ */
body.sf-deal-page .sf-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 99999 !important;
    padding: 1.25rem 4% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    background: rgba(250, 248, 245, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 1px 0 rgba(0,0,0,0.05) !important;
    margin: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

body.sf-deal-page .sf-nav-logo {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    letter-spacing: -0.02em !important;
    color: #0d0d0d !important;
    text-decoration: none !important;
}

body.sf-deal-page .sf-nav-logo span {
    color: #c96442 !important;
}

body.sf-deal-page .sf-nav-links {
    display: flex !important;
    gap: 2.5rem !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.sf-deal-page .sf-nav-links li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

body.sf-deal-page .sf-nav-links a {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.03em !important;
    text-transform: uppercase !important;
    color: #4a4a4a !important;
    text-decoration: none !important;
    transition: color 0.3s !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

body.sf-deal-page .sf-nav-links a:hover {
    color: #0d0d0d !important;
}

body.sf-deal-page .sf-nav-cta {
    background: #0d0d0d !important;
    color: #faf8f5 !important;
    padding: 0.75rem 1.5rem !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    border: none !important;
    transition: all 0.3s !important;
    border-radius: 0 !important;
}

body.sf-deal-page .sf-nav-cta:hover {
    background: #c96442 !important;
}

body.sf-deal-page .sf-mobile-menu-btn {
    display: none !important;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: transparent !important;
    border: none !important;
    z-index: 100000;
}

body.sf-deal-page .sf-mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #0d0d0d;
    display: block;
    transition: all 0.3s ease;
}

body.sf-deal-page .sf-mobile-menu-btn.sf-menu-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
body.sf-deal-page .sf-mobile-menu-btn.sf-menu-open span:nth-child(2) {
    opacity: 0;
}
body.sf-deal-page .sf-mobile-menu-btn.sf-menu-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    body.sf-deal-page .sf-nav-links {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: rgba(250, 248, 245, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        flex-direction: column !important;
        padding: 1rem 5% 2rem !important;
        gap: 0 !important;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1) !important;
    }

    body.sf-deal-page .sf-nav-links.sf-mobile-open {
        display: flex !important;
    }

    body.sf-deal-page .sf-nav-links a {
        display: block !important;
        padding: 1rem 0 !important;
        border-bottom: 1px solid rgba(0,0,0,0.05) !important;
        font-size: 1rem !important;
    }

    body.sf-deal-page .sf-mobile-menu-btn {
        display: flex !important;
    }

    body.sf-deal-page .sf-nav-cta {
        display: none !important;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MAIN CONTENT
   ═══════════════════════════════════════════════════════════════════════════ */
.sf-sd-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 7rem 4% 3rem; /* top padding for fixed nav */
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    color: #0d0d0d;
}

/* ─── Expired Banner ─────────────────────────────────────────────────────── */
.sf-sd-expired-banner {
    background: #fef3cd;
    border: 1px solid #f59e0b;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.sf-sd-expired-banner p {
    font-weight: 600;
    font-size: .9rem;
    color: #92400e;
    margin: 0;
}

.sf-sd-expired-cta {
    background: #0d0d0d;
    color: #faf8f5;
    padding: .6rem 1.25rem;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: background .3s;
}

.sf-sd-expired-cta:hover {
    background: #c96442;
    color: #faf8f5;
}

/* ─── Breadcrumb ─────────────────────────────────────────────────────────── */
.sf-sd-breadcrumb {
    font-size: .8rem;
    color: #9ca3af;
    margin-bottom: 2rem;
}

.sf-sd-breadcrumb a {
    color: #4a4a4a;
    text-decoration: none;
}

.sf-sd-breadcrumb a:hover {
    color: #c96442;
}

.sf-sd-sep {
    margin: 0 .5rem;
    color: #d1d5db;
}

/* ─── Layout ─────────────────────────────────────────────────────────────── */
.sf-sd-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 800px) {
    .sf-sd-layout {
        grid-template-columns: 1fr;
    }
}

/* ─── Header ─────────────────────────────────────────────────────────────── */
.sf-sd-header {
    margin-bottom: 2rem;
}

.sf-sd-badges {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: .75rem;
}

.sf-sd-route {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: clamp(2rem, 4vw, 3rem) !important;
    font-weight: 500 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
    color: #0d0d0d !important;
    margin: 0 0 .4rem !important;
}

.sf-sd-arrow {
    color: #c96442;
    margin: 0 .2rem;
}

.sf-sd-airline {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin: 0;
}

/* ─── Image ──────────────────────────────────────────────────────────────── */
.sf-sd-image {
    overflow: hidden;
    margin-bottom: 2rem;
}

.sf-sd-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ─── Details Grid ───────────────────────────────────────────────────────── */
.sf-sd-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1.25rem;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.sf-sd-detail {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.sf-sd-detail-label {
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #9ca3af;
}

.sf-sd-detail-value {
    font-size: .95rem;
    font-weight: 600;
    color: #0d0d0d;
}

.sf-sd-detail-price {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #0d0d0d;
}

.sf-sd-detail-alt {
    font-size: .8rem;
    color: #4a4a4a;
}

/* ─── Notes ──────────────────────────────────────────────────────────────── */
.sf-sd-notes {
    background: #fff7ed;
    border-left: 3px solid #c96442;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}

.sf-sd-notes h3 {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: .85rem;
    font-weight: 700;
    margin: 0 0 .35rem !important;
    color: #c96442 !important;
}

.sf-sd-notes p {
    font-size: .9rem;
    color: #78350f;
    margin: 0;
    line-height: 1.6;
}

.sf-sd-editorial {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.sf-sd-editorial p {
    margin-bottom: .75rem;
}

/* ─── Post Meta ──────────────────────────────────────────────────────────── */
.sf-sd-post-meta {
    display: flex;
    gap: 2rem;
    font-size: .78rem;
    color: #9ca3af;
    margin-bottom: .75rem;
}

.sf-sd-disclaimer {
    font-size: .75rem;
    color: #9ca3af;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SIDEBAR
   ═══════════════════════════════════════════════════════════════════════════ */
.sf-sd-sidebar {
    position: sticky;
    top: 6rem;
}

.sf-sd-book-box {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    padding: 2rem;
    margin-bottom: 1.25rem;
    text-align: center;
}

.sf-sd-book-box--expired {
    border-color: #9ca3af;
}

.sf-sd-book-price {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #0d0d0d;
    line-height: 1;
    margin-bottom: .35rem;
}

.sf-sd-book-trip {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .8rem;
    font-weight: 400;
    color: #9ca3af;
    margin-left: .35rem;
}

.sf-sd-book-airline {
    font-size: .9rem;
    color: #4a4a4a;
    margin: 0 0 1.25rem;
}

.sf-sd-btn-book {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #0d0d0d;
    color: #faf8f5;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    transition: all .3s;
    border: none;
    cursor: pointer;
}

.sf-sd-btn-book:hover {
    background: #c96442;
    color: #faf8f5;
    text-decoration: none;
}

.sf-sd-book-expired-note {
    font-size: .88rem;
    color: #4a4a4a;
    margin: 0 0 1.25rem;
    line-height: 1.6;
}

.sf-sd-book-share {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
    font-size: .8rem;
    color: #9ca3af;
}

.sf-sd-book-share a {
    color: #0d0d0d;
    text-decoration: none;
    font-weight: 600;
}

.sf-sd-book-share a:hover {
    color: #c96442;
}

/* WhatsApp box */
.sf-sd-wa-box {
    background: #f0fdf4;
    border: 1px solid rgba(0,0,0,0.06);
    padding: 1.5rem;
    text-align: center;
}

.sf-sd-wa-box p {
    font-size: .88rem;
    color: #065f46;
    margin: 0 0 .75rem;
    font-weight: 600;
}

.sf-sd-btn-wa {
    display: inline-block;
    padding: .75rem 1.5rem;
    background: #25D366;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s;
}

.sf-sd-btn-wa:hover {
    background: #1ebe5d;
    color: #fff;
}

/* ─── Related ────────────────────────────────────────────────────────────── */
.sf-sd-related {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.sf-sd-related h2 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 1.8rem !important;
    font-weight: 500 !important;
    color: #0d0d0d !important;
    margin: 0 0 1.5rem !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER — matches homepage footer exactly
   ═══════════════════════════════════════════════════════════════════════════ */
body.sf-deal-page .sf-footer {
    margin: 3rem 0 0 !important;
    padding: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Dark main section */
body.sf-deal-page .sf-footer-main {
    background: #0d0d0d !important;
    color: #faf8f5 !important;
    padding: 4rem 4% 2rem !important;
}

body.sf-deal-page .sf-footer-grid {
    display: grid !important;
    grid-template-columns: 1.5fr 1fr 1fr 1fr !important;
    gap: 3rem !important;
    max-width: 1280px !important;
    margin: 0 auto 3rem !important;
}

/* Brand column */
body.sf-deal-page .sf-footer-logo {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 1.6rem !important;
    font-weight: 600 !important;
    color: #faf8f5 !important;
    margin: 0 0 1rem !important;
}

body.sf-deal-page .sf-footer-logo span {
    color: #c96442 !important;
}

body.sf-deal-page .sf-footer-tagline {
    font-size: .9rem !important;
    color: rgba(255,255,255,.6) !important;
    max-width: 320px;
    line-height: 1.7;
    margin: 0 0 1.5rem !important;
    text-align: center;
}

body.sf-deal-page .sf-footer-brand {
    text-align: center;
}

/* Social icons — circular dark bg */
body.sf-deal-page .sf-footer-social {
    display: flex;
    gap: .75rem;
    justify-content: center;
}

body.sf-deal-page .sf-footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1a1f2e;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all .3s;
    color: #faf8f5;
    border: none;
}

body.sf-deal-page .sf-footer-social a:hover {
    background: #c96442;
}

body.sf-deal-page .sf-footer-social svg {
    color: #faf8f5;
}

/* Link columns */
body.sf-deal-page .sf-footer-col {
    text-align: center;
}

body.sf-deal-page .sf-footer-col h4 {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: .75rem !important;
    font-weight: 700 !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,.5) !important;
    margin: 0 0 1.25rem !important;
}

body.sf-deal-page .sf-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

body.sf-deal-page .sf-footer-col li {
    margin: 0 0 .65rem;
    list-style: none;
}

body.sf-deal-page .sf-footer-col a {
    color: rgba(255,255,255,.85) !important;
    text-decoration: none;
    font-size: .9rem;
    transition: color .3s;
}

body.sf-deal-page .sf-footer-col a:hover {
    color: #c96442 !important;
}

/* Copyright bar */
body.sf-deal-page .sf-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0 0;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: .85rem;
    color: rgba(255,255,255,.45);
    max-width: 1280px;
    margin: 0 auto;
}

body.sf-deal-page .sf-footer-bottom span {
    margin: 0;
}

/* ─── Newsletter section below dark footer ───────────────────────────────── */
body.sf-deal-page .sf-footer-newsletter {
    background: #faf8f5;
    color: #0d0d0d;
    padding: 4rem 4%;
    text-align: center;
}

body.sf-deal-page .sf-footer-newsletter h2 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
    font-weight: 600 !important;
    color: #0d0d0d !important;
    margin: 0 0 1rem !important;
}

body.sf-deal-page .sf-footer-newsletter p {
    font-size: 1rem;
    color: #4a4a4a;
    max-width: 680px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

body.sf-deal-page .sf-footer-nl-form {
    display: flex;
    gap: 0;
    max-width: 750px;
    margin: 0 auto;
    flex-wrap: wrap;
}

body.sf-deal-page .sf-footer-nl-form input {
    flex: 1;
    min-width: 140px;
    padding: 1rem 1.25rem;
    border: 1px solid #d1d5db;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .95rem;
    color: #0d0d0d;
    background: #ffffff;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
}

body.sf-deal-page .sf-footer-nl-form input:focus {
    border-color: #0d0d0d;
}

body.sf-deal-page .sf-footer-nl-form input::placeholder {
    color: #9ca3af;
}

body.sf-deal-page .sf-footer-nl-form button {
    padding: 1rem 2rem;
    background: #0d0d0d;
    color: #faf8f5;
    border: 1px solid #0d0d0d;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .05em;
    cursor: pointer;
    transition: all .3s;
    border-radius: 0;
    -webkit-appearance: none;
    white-space: nowrap;
}

body.sf-deal-page .sf-footer-nl-form button:hover {
    background: #c96442;
    border-color: #c96442;
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    body.sf-deal-page .sf-footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
        text-align: center;
    }

    body.sf-deal-page .sf-footer-tagline {
        margin-left: auto;
        margin-right: auto;
    }

    body.sf-deal-page .sf-footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    body.sf-deal-page .sf-footer-nl-form {
        flex-direction: column;
    }

    body.sf-deal-page .sf-footer-nl-form input,
    body.sf-deal-page .sf-footer-nl-form button {
        width: 100%;
    }
}

@media (max-width: 800px) {
    .sf-sd-sidebar {
        position: static;
    }
}
