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

:root {
    --bg: #faf8f5;
    --fg: #0f1d33;
    --muted: #6b7a8d;
    --border: #e5e7ea;
    --accent: #f44821;
    --accent-hover: #e03d18;
    --card: #ffffff;
    --teal: #2aa5a0;
    --green: #16a34a;
    --radius: 1rem;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg); color: var(--fg);
    line-height: 1.6; -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

/* ===== HEADER ===== */
.header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 56px;
}
.logo { display: flex; align-items: center; gap: 0.4rem; }
.logo-icon { flex-shrink: 0; }
.logo-bold { font-weight: 600; font-size: 1.0625rem; letter-spacing: -0.01em; }
.logo-light { font-weight: 300; font-size: 1.0625rem; color: var(--muted); }
.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav a { font-size: 0.8125rem; color: var(--muted); transition: color 0.15s; }
.nav a:hover, .nav a.active { color: var(--fg); }

/* Hamburger */
.hamburger {
    display: none; background: none; border: none; cursor: pointer;
    width: 32px; height: 24px; position: relative; padding: 0;
}
.hamburger span {
    display: block; width: 100%; height: 2px; background: var(--fg);
    position: absolute; left: 0; transition: all 0.25s;
}
.hamburger span:nth-child(1) { top: 2px; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { top: 20px; }
.hamburger.open span:nth-child(1) { top: 11px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 11px; transform: rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
    display: none; flex-direction: column;
    background: var(--card); border-bottom: 1px solid var(--border);
    padding: 0.5rem 1.25rem 1rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    padding: 0.625rem 0; font-size: 0.9375rem;
    color: var(--muted); border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--fg); }
.mobile-nav-primary { font-weight: 500; color: var(--fg); }
.mobile-nav-divider { height: 1px; background: var(--border); margin: 0.375rem 0; }
.mobile-nav-region {
    display: block; font-size: 0.6875rem; font-weight: 600;
    color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em;
    padding: 0.625rem 0 0.25rem; border-bottom: none;
}

/* ===== HERO ===== */
.hero {
    text-align: center; padding: 3rem 1.25rem 2rem;
    max-width: 720px; margin: 0 auto;
}
.hero-home { padding: 3.5rem 1.25rem 2rem; }
.hero h1 {
    font-size: clamp(1.75rem, 4.5vw, 2.75rem); font-weight: 700;
    line-height: 1.08; letter-spacing: -0.025em; margin-bottom: 0.75rem;
}
.hero h1 .accent { color: var(--accent); }
.hero p { font-size: 1rem; color: var(--muted); max-width: 480px; margin: 0 auto 1.5rem; }
.hero-stats {
    display: flex; justify-content: center; gap: 1.75rem;
    margin-top: 1.25rem; font-size: 0.8125rem; color: var(--muted);
}
.hero-stats strong { color: var(--fg); font-weight: 600; }
.hero-chips {
    display: flex; justify-content: center; gap: 0.5rem;
    flex-wrap: wrap; margin-top: 1rem;
}
.hero-chip {
    padding: 0.375rem 0.875rem; border-radius: 999px;
    border: 1px solid var(--border); background: var(--card);
    font-size: 0.8125rem; font-weight: 500; color: var(--muted);
    transition: all 0.15s;
}
.hero-chip:hover {
    color: var(--fg); border-color: var(--fg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* ===== SEARCH BAR ===== */
.search-bar {
    display: flex; align-items: stretch;
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    max-width: 720px; margin: 0 auto;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.search-field {
    flex: 1; padding: 0.625rem 1rem;
    border-right: 1px solid var(--border);
    display: flex; flex-direction: column;
}
.search-field:last-of-type { border-right: none; }
.search-field label {
    font-size: 0.625rem; font-weight: 600; color: var(--muted);
    text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.125rem;
}
.search-field select, .search-date {
    border: none; background: transparent;
    font-family: inherit; font-size: 0.875rem; font-weight: 500;
    color: var(--fg); outline: none; cursor: pointer;
    -webkit-appearance: none; appearance: none;
    width: 100%;
}
.search-btn {
    padding: 0 1.5rem; background: var(--accent); color: #fff;
    border: none; font-family: inherit; font-size: 0.875rem; font-weight: 600;
    cursor: pointer; transition: background 0.15s; white-space: nowrap;
    flex-shrink: 0;
}
.search-btn:hover { background: var(--accent-hover); }

/* ===== SECTIONS ===== */
.section { padding: 2.5rem 0; }
.section-alt { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-highlight { background: linear-gradient(135deg, #fef7f0 0%, #faf8f5 100%); border-top: 1px solid var(--border); }
.section-header {
    display: flex; align-items: baseline; justify-content: space-between;
    margin-bottom: 1.25rem;
}
.section-title { font-size: 1.25rem; font-weight: 600; }
.section-link { font-size: 0.8125rem; color: var(--accent); font-weight: 500; }
.section-link:hover { text-decoration: underline; }

/* ===== DEAL OF THE DAY ===== */
.dotd-card {
    background: var(--card); border: 2px solid #facc15;
    border-radius: var(--radius); overflow: hidden;
}
.dotd-inner {
    display: grid; grid-template-columns: 360px 1fr; gap: 0;
}
.dotd-img-wrap {
    position: relative; overflow: hidden; background: #eee;
    aspect-ratio: auto;
}
.dotd-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.dotd-content {
    padding: 1.5rem; display: flex; flex-direction: column; justify-content: center;
}
.dotd-content h3 { font-size: 1.25rem; font-weight: 600; margin: 0.25rem 0 0.375rem; }
.dotd-location { color: var(--muted); font-size: 0.875rem; margin-bottom: 0.75rem; }
.dotd-pricing { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.dotd-cta {
    display: inline-flex; align-items: center; gap: 0.3rem;
    margin-top: 0.75rem; padding: 0.5rem 1.25rem;
    background: var(--accent); color: #fff; border-radius: 999px;
    font-size: 0.875rem; font-weight: 600;
    transition: background 0.15s;
}
.dotd-card:hover .dotd-cta { background: var(--accent-hover); }

/* ===== DEAL CARDS ===== */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
}
.deal-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    transition: box-shadow 0.2s, transform 0.15s;
}
.deal-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}
.deal-img-wrap {
    position: relative; height: 190px; overflow: hidden; background: #eee;
}
.deal-img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s;
}
.deal-card:hover .deal-img { transform: scale(1.04); }
.deal-badge {
    position: absolute; top: 0.625rem; left: 0.625rem;
    background: var(--accent); color: #fff;
    font-size: 0.8125rem; font-weight: 700;
    padding: 0.25rem 0.75rem; border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.deal-badge-dotd {
    position: absolute; top: 0.625rem; right: 0.625rem;
    background: #facc15; color: #000;
    font-size: 0.6875rem; font-weight: 600;
    padding: 0.25rem 0.625rem; border-radius: 999px;
}
.deal-body { padding: 1rem 1.125rem; }
.deal-top-row {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 0.375rem;
}
.deal-tier-inline {
    font-size: 0.5625rem; font-weight: 700; letter-spacing: 0.05em;
    padding: 0.15rem 0.5rem; border-radius: 999px;
    text-transform: uppercase;
}
.deal-title {
    font-size: 0.9375rem; font-weight: 600; line-height: 1.3;
    margin-bottom: 0.25rem;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.deal-meta { font-size: 0.8125rem; color: var(--muted); margin-bottom: 0.5rem; }
.deal-specs {
    display: flex; gap: 0.5rem; font-size: 0.6875rem;
    color: var(--muted); margin-bottom: 0.75rem;
    padding-bottom: 0.75rem; border-bottom: 1px solid var(--border);
}
.deal-specs span {
    display: inline-flex; align-items: center;
    padding: 0.15rem 0.5rem; background: #f3f4f6; border-radius: 999px;
}
.deal-footer {
    display: flex; align-items: flex-end; justify-content: space-between;
}
.deal-price { display: flex; flex-direction: column; }
.deal-price-old { font-size: 0.75rem; color: var(--muted); text-decoration: line-through; }
.deal-price-new { font-size: 1.25rem; font-weight: 700; color: var(--fg); }
.deal-save-tag {
    display: inline-flex; align-items: center;
    padding: 0.25rem 0.625rem; border-radius: 999px;
    background: #dcfce7; color: #15803d;
    font-size: 0.6875rem; font-weight: 600;
}
.deal-dates { font-size: 0.6875rem; color: var(--teal); font-weight: 500; }
.deal-badge-urgent {
    position: absolute; top: 0.625rem; right: 0.625rem;
    background: #ea580c; color: #fff;
    font-size: 0.6875rem; font-weight: 600;
    padding: 0.25rem 0.625rem; border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.deal-price-pp {
    font-size: 0.6875rem; color: var(--teal); font-weight: 500;
}

/* ===== DEAL QUALITY TIERS ===== */
.deal-tier {
    position: absolute; bottom: 0.625rem; left: 0.625rem;
    font-size: 0.625rem; font-weight: 700; letter-spacing: 0.04em;
    padding: 0.2rem 0.5rem; border-radius: 999px;
    text-transform: uppercase;
}
.deal-tier-detail { font-size: 0.75rem; padding: 0.3rem 0.75rem; }
.tier-fair { background: #e5e7ea; color: #4b5563; }
.tier-good { background: #dbeafe; color: #1d4ed8; }
.tier-great { background: #dcfce7; color: #15803d; }
.tier-steal { background: #dc2626; color: #fff; }

/* ===== REGION GROUPS ===== */
.region-group { margin-bottom: 2rem; }
.region-group:last-child { margin-bottom: 0; }
.region-title {
    font-size: 0.8125rem; font-weight: 600; color: var(--muted);
    text-transform: uppercase; letter-spacing: 0.06em;
    margin-bottom: 0.75rem; padding-top: 0.5rem;
}
.region-section { margin-bottom: 2.5rem; }
.region-section:last-child { margin-bottom: 0; }
.region-heading {
    font-size: 1.125rem; font-weight: 600; margin-bottom: 1rem;
    padding-bottom: 0.5rem; border-bottom: 2px solid var(--border);
}

/* ===== SAVINGS BAR ===== */
.deal-savings-bar, .detail-savings-bar {
    position: relative; height: 1.25rem;
    background: #f3f4f6; border-radius: 999px;
    overflow: hidden; margin: 0.375rem 0;
}
.detail-savings-bar { height: 1.5rem; margin: 0.5rem 0 0.75rem; }
.deal-savings-fill {
    position: absolute; top: 0; left: 0; height: 100%;
    background: linear-gradient(90deg, var(--green), #22c55e);
    border-radius: 999px;
    transition: width 0.4s ease;
}
.deal-savings-text {
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: center;
    height: 100%;
    font-size: 0.625rem; font-weight: 700; color: var(--fg);
    letter-spacing: 0.03em;
}
.detail-savings-bar .deal-savings-text { font-size: 0.75rem; }

/* ===== WHY THIS IS A GOOD DEAL ===== */
.deal-why-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 1px solid #bbf7d0; border-radius: var(--radius);
    padding: 1.25rem 1.5rem; margin-bottom: 1.5rem;
}
.deal-why-title {
    font-size: 0.9375rem; font-weight: 600; margin-bottom: 0.625rem;
    color: #15803d;
}
.deal-why-list {
    list-style: none; padding: 0;
}
.deal-why-list li {
    font-size: 0.8125rem; color: #374151; line-height: 1.6;
    padding: 0.2rem 0 0.2rem 1.25rem;
    position: relative;
}
.deal-why-list li::before {
    content: '✓'; position: absolute; left: 0;
    color: #16a34a; font-weight: 700;
}

/* ===== PRICE ALERT BOX ===== */
.deal-alert-box {
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.25rem 1.5rem;
    margin-top: 1.5rem;
}
.deal-alert-box h3 {
    font-size: 0.9375rem; font-weight: 600; margin-bottom: 0.25rem;
}
.deal-alert-box p {
    font-size: 0.8125rem; color: var(--muted); margin-bottom: 0.75rem;
}
.deal-alert-form {
    display: flex; gap: 0.375rem;
}
.deal-alert-input {
    flex: 1; padding: 0.5rem 0.75rem; border-radius: 0.5rem;
    border: 1px solid var(--border); background: var(--bg);
    font-family: inherit; font-size: 0.8125rem; color: var(--fg);
    outline: none; min-width: 0;
}
.deal-alert-input:focus { border-color: var(--accent); }
.deal-alert-btn {
    padding: 0.5rem 1rem; border-radius: 0.5rem; border: none;
    background: var(--accent); color: #fff;
    font-family: inherit; font-size: 0.8125rem; font-weight: 600;
    cursor: pointer; transition: background 0.15s; white-space: nowrap;
}
.deal-alert-btn:hover { background: var(--accent-hover); }

/* ===== DETAIL PP PRICE ===== */
.detail-pp {
    font-size: 0.8125rem; color: var(--teal); font-weight: 500;
    margin-bottom: 0.75rem;
}

/* ===== QUICK CATEGORY CHIPS ===== */
.quick-chips {
    display: flex; gap: 0.5rem; flex-wrap: wrap;
    padding: 1.25rem 0 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
}
.quick-chip {
    display: inline-flex; align-items: center; gap: 0.3rem;
    padding: 0.4rem 0.875rem; border-radius: 999px;
    background: transparent; border: 1px solid var(--border);
    font-size: 0.8125rem; font-weight: 500; color: var(--muted);
    transition: all 0.15s; cursor: pointer; white-space: nowrap;
}
.quick-chip:hover { color: var(--fg); border-color: var(--fg); }
.quick-chip.active {
    background: var(--accent); color: #fff; border-color: var(--accent);
}

/* ===== DESTINATION CHIPS ===== */
.dest-bar { display: flex; gap: 0.5rem; flex-wrap: wrap; padding: 0.75rem 0; }
.dest-chip {
    display: inline-flex; align-items: center; gap: 0.35rem;
    padding: 0.5rem 1rem; border-radius: 999px;
    background: var(--card); border: 1px solid var(--border);
    font-size: 0.8125rem; font-weight: 500;
    transition: all 0.15s; cursor: pointer;
}
.dest-chip:hover, .dest-chip.active {
    background: var(--fg); color: #fff; border-color: var(--fg);
}
.dest-chip .count { font-size: 0.6875rem; color: var(--muted); font-weight: 400; }
.dest-chip:hover .count, .dest-chip.active .count { color: rgba(255,255,255,0.7); }

/* ===== DESTINATION CARDS (homepage) ===== */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.75rem;
}
.dest-card {
    position: relative; border-radius: var(--radius); overflow: hidden;
    height: 140px; cursor: pointer;
    background: var(--accent-color, #003366);
    transition: transform 0.2s;
}
.dest-card:hover { transform: translateY(-2px); }
.dest-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
}
.dest-card-content {
    position: relative; z-index: 1;
    display: flex; flex-direction: column;
    justify-content: flex-end; height: 100%;
    padding: 1rem 1.25rem; color: #fff;
}
/* ===== DESTINATION HERO ===== */
.dest-hero {
    background: linear-gradient(135deg, var(--dest-color), color-mix(in srgb, var(--dest-color) 70%, #000));
    border-radius: var(--radius); padding: 2rem 2.5rem;
    color: #fff; margin: 1.5rem 0 0.5rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
}
.dest-hero h1 { font-size: 1.75rem; font-weight: 700; margin-bottom: 0.25rem; }
.dest-hero p { opacity: 0.85; font-size: 0.9375rem; }
.dest-hero-stats {
    display: flex; gap: 1.5rem;
}
.dest-stat { text-align: center; }
.dest-stat-value {
    display: block; font-size: 1.5rem; font-weight: 700; line-height: 1.2;
}
.dest-stat-label {
    font-size: 0.6875rem; opacity: 0.75; text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ===== SEASON BAR ===== */
.season-bar {
    display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap;
    padding: 0.75rem 0; margin-top: 0.5rem;
}
.season-label {
    font-size: 0.8125rem; font-weight: 500; color: var(--muted); white-space: nowrap;
}
.season-months { display: flex; gap: 0.25rem; }
.season-month {
    display: inline-flex; align-items: center; justify-content: center;
    width: 2.5rem; padding: 0.3rem 0; border-radius: 0.375rem;
    font-size: 0.625rem; font-weight: 600; text-align: center;
    cursor: default; transition: transform 0.1s;
}
.season-month.peak { background: #dcfce7; color: #15803d; }
.season-month.good { background: #fef9c3; color: #854d0e; }
.season-month.off { background: #f3f4f6; color: #9ca3af; }
.season-month:hover { transform: scale(1.1); }

/* ===== DESTINATION LIST (index page) ===== */
.dest-list { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.5rem 0; }
.dest-list-card {
    display: flex; align-items: center; gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius); border-left: 4px solid var(--dest-color);
    transition: box-shadow 0.2s, transform 0.15s;
}
.dest-list-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transform: translateX(4px);
}
.dest-list-flag { font-size: 2.5rem; flex-shrink: 0; }
.dest-list-info { flex: 1; min-width: 0; }
.dest-list-info h2 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.25rem; }
.dest-list-meta {
    display: flex; gap: 1rem; flex-wrap: wrap;
    font-size: 0.8125rem; color: var(--muted);
}
.dest-list-meta strong { color: var(--fg); }
.dest-list-lm {
    color: #ea580c; font-weight: 500;
}
.dest-list-cats {
    display: flex; gap: 0.5rem; margin-top: 0.375rem;
    font-size: 0.75rem; color: var(--muted);
}
.dest-list-arrow {
    font-size: 1.25rem; color: var(--muted); flex-shrink: 0;
    transition: transform 0.15s;
}
.dest-list-card:hover .dest-list-arrow { transform: translateX(4px); color: var(--accent); }

.dest-card-flag { font-size: 1.75rem; margin-bottom: 0.25rem; }
.dest-card h3 { font-size: 1.125rem; font-weight: 600; }
.dest-card-meta { font-size: 0.75rem; opacity: 0.8; }

/* ===== STEPS / HOW IT WORKS ===== */
.steps-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem; max-width: 800px; margin: 0 auto;
}
.step { text-align: center; }
.step-num {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--accent); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 700;
    margin: 0 auto 0.75rem;
}
.step h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.375rem; }
.step p { font-size: 0.8125rem; color: var(--muted); line-height: 1.6; }

/* ===== NEWSLETTER ===== */
.newsletter-form-lg {
    display: flex; gap: 0.5rem; max-width: 440px; margin: 0 auto;
}
.newsletter-input-lg {
    flex: 1; padding: 0.75rem 1.25rem; border-radius: 999px;
    border: 1px solid var(--border); background: var(--card);
    font-family: inherit; font-size: 0.875rem; color: var(--fg); outline: none;
}
.newsletter-input-lg:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(244,72,33,0.1); }
.newsletter-btn-lg {
    padding: 0.75rem 1.5rem; border-radius: 999px; border: none;
    background: var(--accent); color: #fff;
    font-family: inherit; font-size: 0.875rem; font-weight: 600;
    cursor: pointer; transition: background 0.15s; white-space: nowrap;
}
.newsletter-btn-lg:hover { background: var(--accent-hover); }

/* ===== FILTER BAR ===== */
.filter-bar {
    display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center;
    padding: 0.75rem 0;
}
.filter-select {
    padding: 0.4rem 0.75rem; border-radius: 999px;
    border: 1px solid var(--border); background: var(--card);
    font-family: inherit; font-size: 0.8125rem; color: var(--fg);
    cursor: pointer; outline: none;
}
.filter-select:focus { border-color: var(--accent); }
.filter-date-group {
    display: flex; align-items: center; gap: 0.35rem;
}
.filter-date-label {
    font-size: 0.75rem; font-weight: 500; color: var(--muted); white-space: nowrap;
}
.filter-date {
    padding: 0.4rem 0.625rem; border-radius: 999px;
    border: 1px solid var(--border); background: var(--card);
    font-family: inherit; font-size: 0.8125rem; color: var(--fg);
    cursor: pointer; outline: none;
}
.filter-date:focus { border-color: var(--accent); }
.filter-more-btn {
    padding: 0.4rem 0.875rem; border-radius: 999px;
    border: 1px dashed var(--border); background: transparent;
    font-family: inherit; font-size: 0.8125rem; color: var(--muted);
    cursor: pointer; transition: all 0.15s; white-space: nowrap;
    position: relative;
}
.filter-more-btn:hover { border-color: var(--fg); color: var(--fg); }
.filter-dot {
    display: inline-block; width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent); margin-left: 0.25rem; vertical-align: middle;
}
.filter-sort { margin-left: auto; }
.more-filters {
    max-height: 0; overflow: hidden; transition: max-height 0.25s ease;
}
.more-filters.open { max-height: 60px; }
.more-filters .filter-bar { padding-top: 0; }
/* ===== ACTIVE FILTER PILLS ===== */
.active-filters {
    display: flex; gap: 0.375rem; flex-wrap: wrap;
    align-items: center; padding: 0.5rem 0;
}
.filter-pill {
    display: inline-flex; align-items: center; gap: 0.25rem;
    padding: 0.3rem 0.625rem; border-radius: 999px;
    background: var(--fg); color: #fff;
    font-size: 0.75rem; font-weight: 500;
    transition: opacity 0.15s; cursor: pointer;
}
.filter-pill:hover { opacity: 0.8; color: #fff; }
.pill-x { font-size: 0.875rem; line-height: 1; margin-left: 0.125rem; opacity: 0.7; }
.filter-clear-all {
    font-size: 0.75rem; color: var(--accent); font-weight: 500;
    padding: 0.3rem 0.5rem; margin-left: 0.25rem;
}
.filter-clear-all:hover { text-decoration: underline; }

/* ===== RESULTS HEADER ===== */
.results-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.5rem 0 0.75rem;
}
.results-count { font-size: 0.8125rem; color: var(--muted); font-weight: 500; }

/* ===== TRUST BAR ===== */
.trust-bar {
    display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap;
    padding: 1.5rem 0; border-top: 1px solid var(--border);
    font-size: 0.8125rem; color: var(--muted);
}
.trust-item { display: inline-flex; align-items: center; gap: 0.375rem; }
.trust-icon { font-size: 1rem; color: var(--teal); }

/* ===== PAGINATION ===== */
.pagination {
    display: flex; justify-content: center; align-items: center;
    gap: 0.25rem; padding: 2rem 0;
}
.pagination a, .pagination span {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 36px; height: 36px; padding: 0 0.5rem;
    border-radius: 999px; font-size: 0.8125rem; font-weight: 500;
    border: 1px solid var(--border); background: var(--card);
    color: var(--fg); transition: all 0.15s;
}
.pagination a:hover { background: var(--fg); color: #fff; border-color: var(--fg); }
.pagination .current { background: var(--fg); color: #fff; border-color: var(--fg); }
.pagination .dots { border: none; background: none; color: var(--muted); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
    display: flex; align-items: center; gap: 0.375rem;
    font-size: 0.8125rem; color: var(--muted); padding: 1rem 0 0;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--fg); }
.breadcrumb .sep { opacity: 0.4; }

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 2rem 0 1.25rem; border-bottom: 1px solid var(--border);
    margin-bottom: 1.25rem;
}
.page-header h1 {
    font-size: 1.75rem; font-weight: 600; letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}
.page-header p { color: var(--muted); font-size: 0.9375rem; }

/* ===== DEAL DETAIL ===== */
.detail-grid {
    display: grid; grid-template-columns: 1fr 380px; gap: 2rem;
    padding: 1.5rem 0 3rem;
}
.detail-img-wrap {
    border-radius: var(--radius); overflow: hidden;
    aspect-ratio: 16/10; background: #eee;
}
.detail-img { width: 100%; height: 100%; object-fit: cover; }
.detail-sidebar { position: sticky; top: 80px; align-self: start; }
.detail-price-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.5rem;
}
.detail-price-row {
    display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 0.5rem;
}
.detail-price-new { font-size: 1.75rem; font-weight: 700; color: var(--green); }
.detail-price-old { font-size: 1rem; color: var(--muted); text-decoration: line-through; }
.detail-discount-badge {
    display: inline-flex; padding: 0.25rem 0.625rem;
    background: var(--accent); color: #fff; border-radius: 999px;
    font-size: 0.8125rem; font-weight: 600;
}
.detail-cta {
    display: block; width: 100%; padding: 0.875rem;
    background: var(--accent); color: #fff; border: none;
    border-radius: var(--radius); font-family: inherit;
    font-size: 1rem; font-weight: 600; text-align: center;
    cursor: pointer; transition: background 0.15s; margin-top: 1rem;
}
.detail-cta:hover { background: var(--accent-hover); }
.detail-cta-note {
    font-size: 0.6875rem; color: var(--muted); text-align: center;
    margin-top: 0.5rem; line-height: 1.4;
}
.detail-info-row {
    display: flex; justify-content: space-between;
    padding: 0.625rem 0; border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
}
.detail-info-row:last-child { border-bottom: none; }
.detail-info-label { color: var(--muted); }
.detail-info-value { font-weight: 500; }
.detail-specs {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem; margin: 1.5rem 0;
}
.detail-spec {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 0.75rem; padding: 0.75rem; text-align: center;
}
.detail-spec-value { font-size: 1.125rem; font-weight: 600; }
.detail-spec-label { font-size: 0.6875rem; color: var(--muted); margin-top: 0.125rem; }
.detail-usps { display: flex; flex-wrap: wrap; gap: 0.375rem; margin: 1rem 0; }
.detail-usp {
    display: inline-flex; padding: 0.3rem 0.625rem;
    background: rgba(42, 165, 160, 0.08); color: var(--teal);
    border-radius: 999px; font-size: 0.75rem; font-weight: 500;
}
.detail-title {
    font-size: 1.5rem; font-weight: 600; margin-top: 1.25rem; margin-bottom: 0.25rem;
}
.detail-location {
    color: var(--muted); font-size: 0.9375rem; margin-bottom: 0.75rem;
}
.detail-section-title {
    font-size: 1rem; font-weight: 600; margin-bottom: 0.75rem; padding-top: 1rem;
}

/* ===== EMPTY STATE ===== */
.empty-state { text-align: center; padding: 4rem 1rem; color: var(--muted); }
.empty-state h2 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--fg); }

/* ===== FOOTER ===== */
.footer {
    border-top: 1px solid var(--border);
    padding: 3rem 0 1.5rem; margin-top: 2rem;
}
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 2rem;
}
.footer-heading {
    font-size: 0.8125rem; font-weight: 600; margin-bottom: 0.625rem;
}
.footer-grid > div > a {
    display: block; font-size: 0.8125rem; color: var(--muted);
    padding: 0.2rem 0; transition: color 0.15s;
}
.footer-grid > div > a:hover { color: var(--fg); }
.newsletter-form {
    display: flex; gap: 0.375rem;
}
.newsletter-input {
    flex: 1; padding: 0.5rem 0.75rem; border-radius: 0.5rem;
    border: 1px solid var(--border); background: var(--bg);
    font-family: inherit; font-size: 0.8125rem; color: var(--fg); outline: none;
    min-width: 0;
}
.newsletter-input:focus { border-color: var(--accent); }
.newsletter-btn {
    padding: 0.5rem 0.875rem; border-radius: 0.5rem; border: none;
    background: var(--accent); color: #fff;
    font-family: inherit; font-size: 0.8125rem; font-weight: 500;
    cursor: pointer; transition: background 0.15s; white-space: nowrap;
}
.newsletter-btn:hover { background: var(--accent-hover); }

/* ===== RECENTLY VIEWED ===== */
.recent-scroll {
    display: flex; gap: 0.75rem;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
}
.recent-card {
    flex: 0 0 200px; background: var(--card);
    border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; transition: box-shadow 0.2s;
}
.recent-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.recent-img { position: relative; height: 120px; overflow: hidden; background: #eee; }
.recent-img img { width: 100%; height: 100%; object-fit: cover; }
.recent-body { padding: 0.625rem 0.75rem; }
.recent-title {
    font-size: 0.8125rem; font-weight: 600; line-height: 1.3;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.recent-meta { font-size: 0.6875rem; color: var(--muted); margin: 0.125rem 0 0.25rem; }

/* ===== SHARE BAR ===== */
.share-bar {
    display: flex; align-items: center; gap: 0.5rem;
    flex-wrap: wrap; margin: 1.5rem 0;
    padding: 1rem 0; border-top: 1px solid var(--border);
}
.share-label { font-size: 0.8125rem; color: var(--muted); font-weight: 500; }
.share-btn {
    padding: 0.375rem 0.75rem; border-radius: 999px;
    font-size: 0.75rem; font-weight: 500; border: 1px solid var(--border);
    background: var(--card); color: var(--fg); cursor: pointer;
    font-family: inherit; transition: all 0.15s;
}
.share-btn:hover { border-color: var(--fg); }
.save-btn.saved { background: #fef2f2; border-color: #fca5a5; color: #dc2626; }
.share-wa:hover { background: #25d366; color: #fff; border-color: #25d366; }
.share-fb:hover { background: #1877f2; color: #fff; border-color: #1877f2; }
.share-copy:hover { background: var(--fg); color: #fff; }

/* ===== COOKIE CONSENT ===== */
.cookie-bar {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
    background: var(--fg); color: #fff; padding: 1rem 1.25rem;
    display: none;
}
.cookie-bar.show { display: block; }
.cookie-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; flex-wrap: wrap;
}
.cookie-text { font-size: 0.8125rem; opacity: 0.9; flex: 1; min-width: 200px; }
.cookie-accept {
    padding: 0.5rem 1.25rem; border-radius: 999px; border: none;
    background: var(--accent); color: #fff;
    font-family: inherit; font-size: 0.8125rem; font-weight: 600;
    cursor: pointer; white-space: nowrap;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 30;
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--card); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.125rem; color: var(--fg);
    cursor: pointer; opacity: 0; transform: translateY(10px);
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--fg); color: #fff; }

/* ===== TOAST NOTIFICATIONS ===== */
.toast {
    position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%) translateY(120%);
    padding: 0.75rem 1.5rem; border-radius: var(--radius);
    font-size: 0.875rem; font-weight: 500; z-index: 100;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: transform 0.3s ease;
    max-width: 90vw; text-align: center;
}
.toast-show { transform: translateX(-50%) translateY(0); }
.toast-success { background: #15803d; color: #fff; }
.toast-error { background: #dc2626; color: #fff; }

/* ===== MOBILE STICKY CTA (deal detail) ===== */
.mobile-sticky-cta {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
    background: var(--card); border-top: 1px solid var(--border);
    padding: 0.75rem 1.25rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.mobile-sticky-inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1200px; margin: 0 auto;
}
.mobile-sticky-price {
    display: flex; flex-direction: column;
}
.mobile-sticky-price .deal-price-new { font-size: 1.25rem; }
.mobile-sticky-price .deal-price-old { font-size: 0.75rem; }
.mobile-sticky-btn {
    padding: 0.625rem 1.25rem; background: var(--accent); color: #fff;
    border: none; border-radius: var(--radius);
    font-family: inherit; font-size: 0.875rem; font-weight: 600;
    cursor: pointer; white-space: nowrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .detail-grid { grid-template-columns: 1fr; }
    .detail-sidebar { position: static; }
    .dotd-inner { grid-template-columns: 1fr; }
    .dotd-img-wrap { aspect-ratio: 16/9; }
    .steps-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .search-bar { flex-direction: column; }
    .search-field { border-right: none; border-bottom: 1px solid var(--border); }
    .search-field:last-of-type { border-bottom: none; }
    .search-btn { padding: 0.75rem; }
    .mobile-sticky-cta { display: block; }
    body.has-sticky-cta { padding-bottom: 4.5rem; }
    .filter-bar { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding-bottom: 0.5rem; }
    .filter-select, .filter-date-group, .filter-more-btn { flex-shrink: 0; }
    .filter-sort { margin-left: 0; }
    .more-filters.open { max-height: 80px; }
    .quick-chips { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
    .quick-chip { flex-shrink: 0; }
    .dest-bar { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
    .dest-chip { flex-shrink: 0; }
    .page-header { padding: 1.25rem 0 1rem; }
    .page-header h1 { font-size: 1.375rem; }
    .dest-hero { padding: 1.5rem; flex-direction: column; align-items: flex-start; }
    .dest-hero h1 { font-size: 1.375rem; }
    .dest-hero-stats { gap: 1rem; flex-wrap: wrap; }
    .dest-list-card { padding: 1rem; gap: 0.75rem; }
    .dest-list-flag { font-size: 2rem; }
    .dest-list-info h2, .dest-list-info h3 { font-size: 1.0625rem; }
    .dest-list-meta { gap: 0.5rem; font-size: 0.75rem; }
    .mobile-nav { max-height: 70vh; overflow-y: auto; }
}
@media (max-width: 640px) {
    .nav { display: none; }
    .hamburger { display: block; }
    .deals-grid { grid-template-columns: 1fr; }
    .dest-grid { grid-template-columns: 1fr 1fr; }
    .hero-stats { gap: 1rem; font-size: 0.75rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .newsletter-form-lg { flex-direction: column; }
    .detail-specs { grid-template-columns: repeat(3, 1fr); }
    .deal-why-box { padding: 1rem; }
    .active-filters { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
    .filter-pill { flex-shrink: 0; }
    .detail-title { font-size: 1.25rem; }
    .dotd-cta { font-size: 0.8125rem; padding: 0.4rem 1rem; }
}
