/* === Roaming Ceylon SEO — Design System === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* Brand Colors */
    --cerulean: #236f92;
    --midnight: #163145;
    --yellow-green: #80b545;
    --sandy-brown: #e4ae4a;
    --silver: #bababb;
    --ink: #0f1f2f;
    --paper: #f7fafc;

    /* Semantic */
    --primary: var(--cerulean);
    --primary-dark: var(--midnight);
    --primary-light: #e3eef3;
    --accent: var(--yellow-green);
    --warm: var(--sandy-brown);
    --text: var(--ink);
    --text-muted: #4a6275;
    --bg: var(--paper);
    --bg-alt: #ffffff;
    --border: rgba(22, 49, 69, 0.10);

    /* Surfaces */
    --surface: rgba(255, 255, 255, 0.92);
    --surface-strong: rgba(255, 255, 255, 0.98);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-pill: 999px;

    /* Shadows */
    --shadow: 0 2px 8px rgba(22, 49, 69, 0.06);
    --shadow-md: 0 10px 30px rgba(22, 49, 69, 0.12);
    --shadow-lg: 0 18px 60px rgba(15, 31, 47, 0.10);

    /* Typography */
    --font-display: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

/* === Base === */
html { font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.3;
}
h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.375rem, 3vw, 1.875rem); }
h3 { font-size: 1.125rem; }

/* === Layout === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

/* === Header === */
.site-header {
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(22, 49, 69, 0.15);
}
.nav-bar { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: flex; align-items: center; }
.logo-img { height: 34px; width: auto; display: block; border-radius: 0; }
.logo-light { display: none; }
.logo-dark { display: block; }
[data-theme="light"] .logo-light { display: block; }
[data-theme="light"] .logo-dark { display: none; }
[data-theme="dark"] .logo-light { display: none; }
[data-theme="dark"] .logo-dark { display: block; }
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 0.875rem;
}
.nav-planner-link {
    white-space: nowrap;
}
.nav-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85);
    cursor: pointer;
    transition: background 0.2s;
}
.nav-menu-btn:hover { background: rgba(255,255,255,0.25); color: #fff; }
.nav-menu-btn svg { width: 20px; height: 20px; }
.nav-menu-btn .icon-close { display: none; }
.nav-menu-btn[aria-expanded="true"] .icon-menu { display: none; }
.nav-menu-btn[aria-expanded="true"] .icon-close { display: block; }
.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.75rem;
    list-style: none;
    margin-left: auto;
}
.nav-links > li { position: relative; }
.nav-has-submenu {
    /* Keep hover/focus active while moving pointer to the dropdown panel */
    padding-bottom: 0.35rem;
    margin-bottom: -0.35rem;
}
.nav-links a { color: rgba(255,255,255,0.85); font-size: 0.9375rem; font-weight: 500; }
.nav-links a:hover { color: #fff; }
.nav-submenu-parent {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.9375rem;
    font-weight: 500;
    font-family: var(--font-body);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.3rem 0;
    line-height: 1;
}
.nav-submenu-parent:hover { color: #fff; }
.nav-submenu-parent::after {
    content: '\25BE';
    font-size: 1rem;
    margin-left: 0.35rem;
    transform: translateY(1px);
    opacity: 0.85;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-has-submenu.open > .nav-submenu-parent::after {
    transform: rotate(180deg) translateY(-1px);
    opacity: 1;
}
.nav-submenu {
    display: none;
    position: absolute;
    top: calc(100% + 0.1rem);
    right: 0;
    min-width: 200px;
    list-style: none;
    padding: 0.35rem 0;
    margin: 0;
    background: var(--surface-strong);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    z-index: 150;
}
.nav-has-submenu:hover .nav-submenu,
.nav-has-submenu:focus-within .nav-submenu { display: block; }
.nav-submenu a {
    display: block;
    padding: 0.55rem 0.85rem;
    color: var(--text);
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
}
.nav-submenu a:hover {
    color: var(--primary-dark);
    background: var(--primary-light);
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9375rem;
    font-family: var(--font-body);
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}
.btn-primary {
    background: linear-gradient(135deg, var(--cerulean), var(--midnight));
    color: #fff;
}
.btn-primary:hover { background: var(--midnight); color: #fff; box-shadow: var(--shadow-md); }
.btn-accent {
    background: var(--accent);
    color: var(--ink);
    font-weight: 700;
}
.btn-accent:hover { background: #6ea03a; color: #fff; }
.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-sm { padding: 0.375rem 1rem; font-size: 0.8125rem; border-radius: var(--radius-pill); }
.btn-block { width: 100%; }

/* === Hero === */
.hero {
    background: linear-gradient(135deg, var(--cerulean) 0%, var(--midnight) 100%);
    color: #fff;
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(128,181,69,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.hero h1 { color: #fff; margin-bottom: 1rem; font-weight: 700; position: relative; }
.hero-subtitle {
    font-size: 1.1875rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    line-height: 1.7;
}
.hero-search { margin-top: 1.5rem; }
.hero-search-bar {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-pill);
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    text-decoration: none;
    backdrop-filter: blur(6px);
    transition: all 0.25s;
    min-width: 320px;
}
.hero-search-bar:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}
.hero-search-icon { flex-shrink: 0; opacity: 0.8; }

/* === Empty State === */
.empty-state {
    text-align: center;
    padding: 4rem 1rem;
    max-width: 480px;
    margin: 0 auto;
}
.empty-state-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.empty-state h2 { margin-bottom: 0.75rem; color: var(--primary-dark); }
.empty-state p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.empty-state-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* === Venue Tags (Detail Page) === */
.venue-tags { margin-top: 2rem; }
.venue-tags h3 { margin-bottom: 0.75rem; font-size: 1.0625rem; }
.venue-tags-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag-with-icon i { margin-right: 0.25rem; font-size: 0.8em; }

/* === Location Panel === */
.location-panel {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.location-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid var(--border);
}
.location-panel-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-dark);
}
.location-panel-title i { color: var(--primary); }

/* Tag chips row */
.venue-tag-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.venue-tag-chips-hero {
    margin-top: 0.125rem;
    margin-bottom: 0;
}
.venue-tag-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.325rem 0.75rem;
    border-radius: var(--radius-pill);
    font-size: 0.8125rem;
    font-weight: 500;
    background: var(--bg-alt);
    border: 1px solid rgba(0,0,0,0.06);
    color: var(--text);
    line-height: 1;
}
.venue-tag-chip .tag-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0.95rem;
    min-width: 0.95rem;
    font-size: 0.8125rem;
    line-height: 1;
}
.venue-tag-chip .tag-name {
    display: inline-flex;
    align-items: center;
    font-size: 0.8125rem;
    line-height: 1.1;
}

/* Map + Highlights grid */
.location-grid {
    display: grid;
    grid-template-columns: 1fr;
}
.location-grid:has(.location-highlights-col) {
    grid-template-columns: 2fr 1fr;
}
.location-map-col { min-height: 0; }

.venue-map {
    width: 100%;
    height: 100%;
    min-height: 420px;
}

/* Highlights sidebar */
.highlights-panel {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--border);
}
.highlights-panel-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
    color: var(--primary-dark);
}
.highlights-panel-header i { color: var(--primary); font-size: 1rem; }
.highlights-badge {
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius-pill);
    background: var(--primary);
    color: #fff;
}
.highlights-list {
    overflow-y: auto;
    max-height: 420px;
    flex: 1;
}
.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.15s;
}
.highlight-item:last-child { border-bottom: none; }
.highlight-item:hover,
.highlight-item.active { background: var(--primary-light); }
.highlight-thumb {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}
.highlight-thumb-placeholder {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.125rem;
    flex-shrink: 0;
}
.highlight-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.highlight-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
}
.highlight-city {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.highlight-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0.125rem 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.highlight-desc.is-expanded {
    display: block;
    -webkit-line-clamp: initial;
    overflow: visible;
}
.highlight-desc-toggle {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    border: none;
    background: transparent;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0;
    margin-top: 0.125rem;
    cursor: pointer;
}
.highlight-desc-toggle:hover { color: var(--primary-dark); }

/* Leaflet custom marker — circle style matching reference */
.venue-marker-custom { background: none !important; border: none !important; }
.venue-marker-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
}

/* === Sections === */
.section { padding: 3.5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-title { margin-bottom: 0.5rem; }
.section-subtitle { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.0625rem; }

/* === Markdown Content Pages === */
.content-page {
    max-width: 860px;
    margin: 0 auto;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
}
.content-page-header h1 { margin-bottom: 0.5rem; }
.content-page-body p,
.content-page-body ul,
.content-page-body ol { margin: 0.75rem 0; }
.content-page-body h2 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}
.content-page-body h3 {
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}
.content-page-body ul,
.content-page-body ol { padding-left: 1.25rem; }
.content-page-body li { margin: 0.3rem 0; }
.content-page-body a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.content-page-body code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.85em;
    background: rgba(35, 111, 146, 0.10);
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
}

/* === Guides === */
.grid-guides {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}
.guide-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.guide-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.guide-card-link {
    display: block;
    color: inherit;
}
.guide-card-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.guide-card-body { padding: 1rem; }
.guide-card-meta {
    color: var(--text-muted);
    font-size: 0.8125rem;
    margin-bottom: 0.4rem;
}
.guide-card-title {
    margin-bottom: 0.4rem;
    line-height: 1.35;
}
.guide-card-excerpt {
    color: var(--text-muted);
    font-size: 0.9375rem;
}
.guide-inline-image {
    margin: 1rem 0 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-alt);
}
.guide-inline-image img {
    width: 100%;
    height: auto;
    display: block;
}
.guide-inline-image figcaption {
    padding: 0.55rem 0.75rem;
    color: var(--text-muted);
    font-size: 0.8125rem;
}
.guide-inline-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
    margin: 1rem 0 1.25rem;
}
.guide-inline-gallery-item {
    margin: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-alt);
}
.guide-inline-gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}
.guide-image-clickable {
    cursor: zoom-in;
}
.guide-image-clickable:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}
body.lightbox-open {
    overflow: hidden;
}
.guide-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.guide-lightbox.open {
    display: flex;
}
.guide-lightbox-backdrop {
    position: absolute;
    inset: 0;
    border: none;
    background: rgba(8, 18, 28, 0.86);
    cursor: zoom-out;
}
.guide-lightbox-content {
    position: relative;
    width: min(1200px, 96vw);
    max-height: 92vh;
    display: grid;
    place-items: center;
    gap: 0.5rem;
    z-index: 1;
}
.guide-lightbox-content img {
    max-width: 100%;
    max-height: 82vh;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
}
.guide-lightbox-caption {
    color: #d8e2ea;
    font-size: 0.875rem;
    text-align: center;
}
.guide-lightbox-close,
.guide-lightbox-nav {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(9, 26, 40, 0.72);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.guide-lightbox-close:hover,
.guide-lightbox-nav:hover {
    background: rgba(15, 42, 64, 0.92);
    border-color: rgba(255, 255, 255, 0.44);
}
.guide-lightbox-close {
    top: 0.25rem;
    right: 0.25rem;
}
.guide-lightbox-nav.prev {
    left: 0.25rem;
    top: 50%;
    transform: translateY(-50%);
}
.guide-lightbox-nav.next {
    right: 0.25rem;
    top: 50%;
    transform: translateY(-50%);
}
@media (max-width: 640px) {
    .guide-lightbox {
        padding: 0.5rem;
    }
    .guide-lightbox-content {
        width: 100%;
    }
    .guide-lightbox-content img {
        max-height: 76vh;
    }
}
.guide-article {
    width: 100%;
    max-width: none;
    margin: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}
.guide-article-hero {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1.5rem;
    max-height: 500px;
    box-shadow: var(--shadow-md);
}
.guide-article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.guide-article-header h1 { margin-bottom: 0.5rem; }
.guide-article-meta {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}
.guide-article-kicker {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.guide-article-lead {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.guide-quick-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-bottom: 0.75rem;
}
.guide-quick-fact {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
    background: var(--bg-alt);
    color: var(--text-muted);
    font-size: 0.8125rem;
    font-weight: 500;
}
.guide-quick-fact i {
    color: var(--primary);
    font-size: 0.75rem;
}
.guide-toc {
    margin: 1rem 0 1.75rem;
    padding: 1rem 1.125rem;
    border-left: 3px solid var(--primary);
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
}
.guide-toc-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    cursor: pointer;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
}
.guide-toc-summary::-webkit-details-marker { display: none; }
.guide-toc-summary i {
    font-size: 0.8125rem;
    color: var(--primary);
    transition: transform 0.2s ease;
}
.guide-toc[open] .guide-toc-summary i { transform: rotate(180deg); }
.guide-toc-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
    display: grid;
    gap: 0.35rem;
}
.guide-toc-item { line-height: 1.45; }
.guide-toc-item.level-3 { padding-left: 0.875rem; }
.guide-toc-item a {
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
.guide-toc-item a:hover {
    color: var(--primary-dark);
    border-color: var(--primary);
}
.guide-article-body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text);
}
.guide-article-body p {
    margin: 0.9rem 0;
}
.guide-article-body h2 {
    margin-top: 2.1rem;
    margin-bottom: 0.75rem;
    font-size: 1.85rem;
    line-height: 1.25;
    color: var(--primary-dark);
}
.guide-article-body h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.625rem;
    font-size: 1.35rem;
    line-height: 1.3;
    color: var(--primary-dark);
}
.guide-article-body ul,
.guide-article-body ol {
    margin: 0.75rem 0 1rem;
    padding-left: 1.4rem;
}
.guide-article-body li {
    margin: 0.35rem 0;
}
.guide-article-footer {
    margin-top: 1rem;
    padding-top: 0.5rem;
    border-top: none;
}
.guide-article-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-top: 1rem;
}

/* === Page Header === */
.page-header {
    background: linear-gradient(135deg, var(--cerulean) 0%, var(--midnight) 100%);
    color: #fff;
    padding: 3rem 0;
    position: relative;
}
.page-header h1 { color: #fff; margin-bottom: 0.5rem; }
.page-subtitle { opacity: 0.85; font-size: 1.0625rem; }
.page-meta { opacity: 0.65; font-size: 0.9375rem; margin-top: 0.375rem; }

/* === Grids === */
.grid { display: grid; gap: 1.5rem; }
.grid-cities { grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); }
.grid-categories { grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); }
.grid-venues {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    align-items: stretch;
}

/* === City Card === */
.city-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.25s;
    box-shadow: var(--shadow);
}
.city-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}
.city-card h3 { color: var(--primary-dark); font-size: 1rem; margin-bottom: 0.125rem; }
.city-province { color: var(--text-muted); font-size: 0.8125rem; }

/* === Category Card === */
.category-card {
    background: var(--bg-alt);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1rem;
    text-align: center;
    transition: all 0.25s;
    box-shadow: var(--shadow);
}
.category-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}
.category-card h3 { color: var(--primary-dark); margin-bottom: 0.25rem; font-size: 0.95rem; }
.category-card p {
    color: var(--text-muted);
    font-size: 0.8125rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.category-icon { font-size: 1.35rem; display: block; margin-bottom: 0.45rem; color: var(--primary); }

/* === Travel Style Chips (Home) === */
.travel-styles-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}
.travel-style-chip {
    --chip-color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.125rem;
    border-radius: var(--radius-pill);
    font-size: 0.9375rem;
    font-weight: 500;
    background: var(--bg-alt);
    border: 1.5px solid var(--border);
    color: var(--text);
    transition: all 0.2s;
    box-shadow: var(--shadow);
}
.travel-style-chip:hover {
    border-color: var(--chip-color, var(--primary));
    background: var(--primary-light);
    color: var(--primary-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}
.travel-style-chip i { color: var(--chip-color, var(--primary)); font-size: 0.875rem; }

/* === Tag Card (Tag listing page) === */
.grid-tags { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.tag-card {
    background: var(--bg-alt);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.25s;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.tag-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}
.tag-card i { font-size: 1.5rem; color: var(--primary); }
.tag-card h3 { color: var(--primary-dark); margin-bottom: 0; font-size: 1rem; }

/* === Section Action === */
.section-action { text-align: center; margin-top: 2rem; }

/* === Venue Card === */
.venue-card {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.25s;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.venue-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.venue-card-link {
    color: inherit;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}
.venue-card-image { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--primary-light); }
.venue-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.venue-card:hover .venue-card-image img { transform: scale(1.04); }
.venue-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), #d0e6ef);
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-display);
}
.venue-card-badge {
    position: absolute;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
}
.category-badge { top: 0.75rem; left: 0.75rem; background: var(--primary); color: #fff; }
.rating-badge { top: 0.75rem; right: 0.75rem; background: rgba(15,31,47,0.75); color: var(--warm); backdrop-filter: blur(4px); }
.venue-card-body {
    padding: 1.125rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.venue-card-title { font-size: 1rem; margin-bottom: 0.25rem; color: var(--primary-dark); }
.venue-card-location { color: var(--text-muted); font-size: 0.8125rem; margin-bottom: 0.375rem; }
.venue-card-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
    margin-top: 0.25rem;
}
.venue-card-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    margin-bottom: 0.5rem;
}
.venue-card-tag-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(15, 31, 47, 0.06);
    font-size: 11px;
    color: var(--primary);
    cursor: default;
}
.venue-card-tag-more {
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: var(--radius-pill);
    background: rgba(15, 31, 47, 0.06);
    color: var(--text-muted);
}
.venue-card-actions {
    padding: 0.625rem 1.25rem;
    border-top: 1px solid var(--border);
    margin-top: auto;
}
.venue-card-planner {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}
.venue-card-planner:hover { color: var(--primary-dark); }
.venue-card-planner svg { flex-shrink: 0; }

/* === Breadcrumb === */
.breadcrumb { padding: 0.75rem 0; background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    font-size: 0.875rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.breadcrumb-item + .breadcrumb-item::before { content: '/'; color: var(--silver); margin-right: 0.5rem; }
.breadcrumb-item a { color: var(--primary); }
.breadcrumb-item.active span { color: var(--text-muted); }

/* === Venue Detail === */
.venue-hero { padding: 2rem 0; }
.venue-hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1.5rem;
    max-height: 500px;
    box-shadow: var(--shadow-md);
}
.venue-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.venue-hero-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.venue-hero-info h1 { margin-bottom: 0; }
.venue-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.625rem;
    row-gap: 0.5rem;
}

/* === Tags / Pills === */
.tag {
    display: inline-flex;
    padding: 0.3rem 0.875rem;
    border-radius: var(--radius-pill);
    font-size: 0.8125rem;
    font-weight: 600;
    background: var(--primary);
    color: #fff;
    transition: all 0.2s;
}
.tag:hover { background: var(--primary-dark); color: #fff; }
.tag-outline {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
}
.tag-outline:hover { background: var(--primary); color: #fff; }
.tag-featured { background: var(--warm); color: #1d1404; }
.rating { font-weight: 600; color: var(--warm); font-size: 1rem; }
.rating small { color: var(--text-muted); font-weight: 400; font-size: 0.8125rem; }

/* === Venue Content Layout === */
.venue-content { display: grid; grid-template-columns: 1fr 360px; gap: 2.5rem; }
.venue-main h2 { margin-bottom: 1rem; }
.venue-main p { margin-bottom: 1rem; line-height: 1.7; }

/* === Info Card (Sidebar) === */
.info-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    position: sticky;
    top: 84px;
}
.info-card h3 { margin-bottom: 1.25rem; font-size: 1.0625rem; }
.info-list { display: grid; gap: 0.875rem; }
.info-list dt {
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.info-list dd { margin-left: 0; margin-bottom: 0.25rem; }
.info-card .btn { margin-top: 1.25rem; }

/* === Amenities === */
.amenity-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 0.5rem 1.125rem;
    font-size: 0.9375rem;
    transition: border-color 0.2s;
}
.amenity-item:hover { border-color: var(--accent); }
.amenity-icon { color: var(--accent); }

/* === Highlights === */
.highlights-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.highlight-card {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    padding: 1.5rem;
    border: 1px solid var(--border);
}
.highlight-card img {
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.highlight-card h3 { margin-bottom: 0.375rem; }
.highlight-card p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.5; }

/* === Events === */
.events-list { display: grid; gap: 1rem; }
.event-card {
    display: flex;
    gap: 1.25rem;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: var(--shadow);
    transition: box-shadow 0.2s;
}
.event-card:hover { box-shadow: var(--shadow-md); }
.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    padding: 0.625rem;
}
.event-month { font-size: 0.75rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.04em; }
.event-day { font-size: 1.625rem; font-weight: 700; color: var(--primary-dark); font-family: var(--font-display); }
.event-info h3 { margin-bottom: 0.25rem; }
.event-info p { color: var(--text-muted); font-size: 0.875rem; }
.event-price { display: inline-block; margin-top: 0.5rem; font-weight: 700; color: var(--accent); font-size: 0.9375rem; }

/* === Reviews === */
.reviews-list { display: grid; gap: 1rem; }
.review-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.625rem; }
.review-author { font-weight: 600; font-family: var(--font-display); }
.review-rating { color: var(--warm); font-size: 1.125rem; }
.review-text { color: var(--text); margin-bottom: 0.5rem; line-height: 1.6; }
.review-date { color: var(--text-muted); font-size: 0.8125rem; }

/* === Gallery === */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.gallery-item { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow); }
.gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item figcaption { padding: 0.5rem 0.75rem; font-size: 0.8125rem; color: var(--text-muted); background: var(--bg-alt); }

/* === Map === */
.venue-map-info {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow);
}
.venue-map-info p { margin-bottom: 1rem; line-height: 1.6; }

/* === Footer === */
.site-footer {
    background: var(--midnight);
    color: rgba(255,255,255,0.6);
    padding: 3.5rem 0 1.5rem;
    margin-top: 3rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand .logo-img { height: 42px; margin-bottom: 0.75rem; }
.footer-brand p { margin-top: 0.875rem; font-size: 0.875rem; line-height: 1.6; }
.footer-links h4 {
    color: #fff;
    margin-bottom: 0.875rem;
    font-size: 0.9375rem;
    font-family: var(--font-display);
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.875rem; }
.footer-links a:hover { color: #fff; }
.footer-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.875rem;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.22);
    color: rgba(255,255,255,0.72);
    font-size: 0.875rem;
    transition: all 0.2s ease;
}
.footer-social a:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.08);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.8125rem;
}

/* === Search === */
.search-box {
    max-width: 720px;
    margin: 0 auto 2rem;
}
.search-input {
    width: 100%;
    padding: 0.875rem 1.25rem;
    font-size: 1.0625rem;
    font-family: var(--font-body);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-alt);
    color: var(--text);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(35, 111, 146, 0.12);
}
.search-input::placeholder { color: var(--silver); }
.search-filters {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
}
.search-select {
    flex: 1;
    padding: 0.625rem 1rem;
    font-size: 0.9375rem;
    font-family: var(--font-body);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-alt);
    color: var(--text);
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a6275' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    padding-right: 2.25rem;
    transition: border-color 0.2s;
}
.search-select:focus { border-color: var(--primary); }
.search-select:hover { border-color: var(--primary); }
.search-filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 1rem;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: var(--font-body);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-alt);
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.search-filter-toggle:hover { border-color: var(--warm); color: var(--warm); }
.search-filter-toggle.active {
    background: var(--warm);
    border-color: var(--warm);
    color: #1d1404;
}
.search-filter-toggle.active svg { stroke: #1d1404; }
.search-filter-toggle svg { flex-shrink: 0; }
.search-status {
    text-align: center;
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.search-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
}
.search-empty p:first-child {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}
.search-empty p:last-child { font-size: 0.9375rem; }
.search-loading {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
    font-size: 1rem;
}

/* === Pagination === */
.pagination {
    padding: 2.5rem 0 0.5rem;
}
.pagination-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-weight: 500;
    font-family: var(--font-body);
    color: var(--primary);
    background: var(--bg-alt);
    border: 1.5px solid var(--border);
    transition: all 0.2s;
    text-decoration: none;
}
.pagination-link:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary-dark);
}
.pagination-link.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    font-weight: 700;
    cursor: default;
}
.pagination-link.disabled {
    color: var(--silver);
    border-color: var(--border);
    background: transparent;
    cursor: default;
    pointer-events: none;
}
.pagination-prev,
.pagination-next {
    font-weight: 600;
    padding: 0 1rem;
}
.pagination-numbers {
    display: flex;
    gap: 0.375rem;
}
.pagination-info {
    display: none;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-left: 0.75rem;
}

/* Show page info on desktop */
@media (min-width: 640px) {
    .pagination-info { display: inline; }
}

/* === Responsive === */
@media (max-width: 768px) {
    .nav-menu-btn { display: flex; }
    .nav-actions { margin-left: auto; }
    .nav-planner-link { display: none; }
    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--primary);
        box-shadow: var(--shadow-md);
        padding: 0.5rem 0;
        z-index: 99;
        margin-left: 0;
    }
    [data-theme="dark"] .nav-links { background: #0a1520; }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links .nav-has-submenu {
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .nav-links a {
        display: block;
        padding: 0.75rem 1.25rem;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .nav-links a:hover { background: rgba(255,255,255,0.08); }
    .nav-links > li:last-child > a,
    .nav-links > li:last-child > .nav-submenu-parent { border-bottom: none; }
    .nav-links .nav-has-submenu { width: 100%; }
    .nav-links .nav-submenu-parent {
        display: flex;
        width: 100%;
        justify-content: space-between;
        padding: 0.75rem 1.25rem;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        color: rgba(255,255,255,0.85);
    }
    .nav-links .nav-submenu-parent::after {
        font-size: 1.15rem;
        margin-left: 0.75rem;
        min-width: 1.5rem;
        text-align: center;
    }
    .nav-links .nav-submenu {
        display: none;
        position: static;
        min-width: 0;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        padding: 0;
    }
    .nav-links .nav-has-submenu:hover > .nav-submenu,
    .nav-links .nav-has-submenu:focus-within > .nav-submenu { display: none; }
    .nav-links .nav-has-submenu.open > .nav-submenu { display: block; }
    .nav-links .nav-has-submenu.open:hover > .nav-submenu,
    .nav-links .nav-has-submenu.open:focus-within > .nav-submenu { display: block; }
    .nav-links .nav-submenu a {
        padding: 0.65rem 2rem;
        font-size: 0.875rem;
        color: rgba(255,255,255,0.78);
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .nav-links .nav-submenu a:hover {
        color: #fff;
        background: rgba(255,255,255,0.08);
    }
    .nav-bar { position: relative; }
    .hero { padding: 3rem 0 2.5rem; }
    .venue-content { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .grid-venues { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
    .venue-meta { gap: 0.375rem; }
    .venue-hero-info { gap: 0.625rem; }
    .info-card { position: static; }
    .hero-search-bar { min-width: auto; width: 100%; max-width: 400px; font-size: 0.9375rem; padding: 0.75rem 1.25rem; }
    .location-grid, .location-grid:has(.location-highlights-col) { grid-template-columns: 1fr; }
    .venue-map { min-height: 280px; }
    .highlights-panel { border-left: none; border-top: 1px solid var(--border); }
    .highlights-list { max-height: 260px; }
    .search-filters { flex-direction: column; gap: 0.5rem; }
    .pagination-inner { gap: 0.375rem; }
    .pagination-prev, .pagination-next { padding: 0 0.625rem; font-size: 0.8125rem; }
    .pagination-link { min-width: 36px; height: 36px; font-size: 0.8125rem; }
    .content-page { padding: 1.25rem; }
    .guide-article-body { font-size: 1rem; line-height: 1.75; }
    .guide-article-body h2 { font-size: 1.55rem; margin-top: 1.75rem; }
    .guide-article-body h3 { font-size: 1.2rem; margin-top: 1.3rem; }
    .grid-guides { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
}

@media (max-width: 480px) {
    .grid-cities { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
    .grid-categories { grid-template-columns: 1fr; }
    .grid-tags { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
    .grid-venues { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
    .hero { padding: 2.5rem 0 2rem; }
}

/* === Theme Toggle === */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85);
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
}
.theme-toggle:hover { background: rgba(255,255,255,0.25); color: #fff; }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-moon { display: block; }
.theme-toggle .icon-sun { display: none; }

/* === Dark Theme === */
[data-theme="dark"] {
    --primary: #3ea8d4;
    --primary-dark: #b8d8e8;
    --primary-light: rgba(62, 168, 212, 0.12);
    --accent: #9ccc65;
    --warm: #f0c060;
    --text: #e0e6ec;
    --text-muted: #8fa3b4;
    --bg: #0d1b26;
    --bg-alt: #142230;
    --border: rgba(255, 255, 255, 0.08);
    --surface: rgba(20, 34, 48, 0.92);
    --surface-strong: rgba(20, 34, 48, 0.98);
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 18px 60px rgba(0, 0, 0, 0.25);
    --silver: #556a7a;
    color-scheme: dark;
}
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }

[data-theme="dark"] .site-header {
    background: #0a1520;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
[data-theme="dark"] .hero {
    background: linear-gradient(135deg, #0a1520 0%, #142230 100%);
}
[data-theme="dark"] .hero::before {
    background: radial-gradient(circle, rgba(156, 204, 101, 0.08) 0%, transparent 70%);
}
[data-theme="dark"] .page-header {
    background: linear-gradient(135deg, #0a1520 0%, #142230 100%);
}
[data-theme="dark"] .hero-search-bar {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.15);
}
[data-theme="dark"] .hero-search-bar:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
}
[data-theme="dark"] .venue-card-placeholder {
    background: linear-gradient(135deg, rgba(62, 168, 212, 0.15), rgba(62, 168, 212, 0.08));
}
[data-theme="dark"] .venue-tag-chip {
    border-color: rgba(255,255,255,0.1);
}
[data-theme="dark"] .venue-card-tag-icon {
    background: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .venue-card-tag-more {
    background: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .rating-badge {
    background: rgba(20, 34, 48, 0.85);
}
[data-theme="dark"] .site-footer {
    background: #070f17;
}
[data-theme="dark"] .search-input:focus {
    box-shadow: 0 0 0 3px rgba(62, 168, 212, 0.15);
}
[data-theme="dark"] .search-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238fa3b4' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
}
[data-theme="dark"] .search-filter-toggle.active {
    color: #1a1200;
}
[data-theme="dark"] .btn-accent {
    color: #1a1200;
}
[data-theme="dark"] .btn-accent:hover {
    color: #fff;
}
