/* =============================================
   ZEITVERSCHIEBUNG.ORG — Custom Design
   ============================================= */

:root {
    --zv-primary:    #0ea5e9;
    --zv-primary-dk: #0284c7;
    --zv-dark:       #0f172a;
    --zv-dark-2:     #1e293b;
    --zv-accent:     #f59e0b;
    --zv-body:       #f1f5f9;
    --zv-muted:      #64748b;
    --zv-border:     #e2e8f0;
    --zv-card:       #ffffff;
    --zv-success:    #10b981;
}

/* ── Base ────────────────────────────────── */
html { overflow-x: hidden; }
body {
    background: var(--zv-body);
    font-family: 'Poppins', sans-serif;
    color: #1e293b;
    overflow-x: hidden;
}

a { text-decoration: none; }
a:hover { text-decoration: none; }

/* ── Navbar ──────────────────────────────── */
.zv-nav {
    background: var(--zv-dark);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.zv-nav .navbar-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}
.zv-nav .navbar-brand span { color: var(--zv-primary); }
.zv-nav .nav-link {
    color: rgba(255,255,255,0.7) !important;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.15s;
}
.zv-nav .nav-link:hover { color: white !important; }
.zv-nav .nav-search input {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: white;
    padding: 6px 16px;
    font-size: 0.85rem;
    width: 200px;
    transition: all 0.2s;
}
.zv-nav .nav-search input::placeholder { color: rgba(255,255,255,0.4); }
.zv-nav .nav-search input:focus {
    outline: none;
    background: rgba(255,255,255,0.15);
    border-color: var(--zv-primary);
    width: 240px;
    box-shadow: none;
}

/* ── Mobile Menü ─────────────────────────── */
.zv-nav .navbar-toggler {
    border: 1px solid rgba(255,255,255,0.25);
    padding: 6px 10px;
    border-radius: 8px;
}
.zv-nav .navbar-toggler:focus { box-shadow: none; }
.zv-nav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
    .zv-nav .navbar-collapse {
        background: var(--zv-dark-2);
        border-radius: 12px;
        margin-top: 10px;
        padding: 8px 4px 12px;
        border: 1px solid rgba(255,255,255,0.07);
    }
    .zv-nav .navbar-nav {
        padding: 4px 8px;
    }
    .zv-nav .nav-item {
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .zv-nav .nav-item:last-child { border-bottom: none; }
    .zv-nav .nav-link {
        padding: 10px 8px !important;
        font-size: 0.95rem !important;
    }
    .zv-nav .nav-search {
        padding: 8px 12px 4px;
    }
    .zv-nav .nav-search input {
        width: 100% !important;
        border-radius: 50px;
    }
    .zv-nav .nav-search input:focus {
        width: 100% !important;
    }
}

/* ── Hero ────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, var(--zv-dark) 0%, #0f3460 60%, #1a1a4e 100%);
    color: white;
    padding: 70px 0 50px;
    position: relative;
    overflow: visible;
}
/* Dekorations-Kreis muss geclippt werden, nicht das Dropdown */
.hero > .container { position: relative; z-index: 1; }
.hero::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(14,165,233,0.15) 0%, transparent 70%);
    top: -100px; right: -100px;
    border-radius: 50%;
    pointer-events: none;
}
.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
}
.hero h1 span { color: var(--zv-primary); }
.hero .subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 30px;
}
.hero-search {
    max-width: 520px;
}
.hero-search input {
    border-radius: 50px 0 0 50px;
    border: none;
    padding: 14px 22px;
    font-size: 1rem;
    flex: 1;
}
.hero-search input:focus { outline: none; box-shadow: none; }
.hero-search button {
    background: var(--zv-primary);
    border: none;
    border-radius: 0 50px 50px 0;
    padding: 14px 24px;
    color: white;
    font-weight: 600;
    transition: background 0.15s;
}
.hero-search button:hover { background: var(--zv-primary-dk); }

/* Live date strip */
.hero-date {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    margin-top: 14px;
    letter-spacing: 0.5px;
}

/* ── World Clocks ────────────────────────── */
.world-clocks {
    padding: 40px 0 20px;
    background: var(--zv-dark);
}
.world-clocks .section-label {
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.wc-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.2s;
    text-decoration: none;
    display: block;
}
.wc-card:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--zv-primary);
    transform: translateY(-3px);
}
.wc-time {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--zv-primary);
    letter-spacing: 3px;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}
.wc-city {
    font-size: 0.82rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 8px;
}
.wc-diff {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    margin-top: 3px;
}
.wc-ref { border-color: rgba(14,165,233,0.4); }
.wc-ref .wc-time { color: var(--zv-accent); }

/* ── Section Headers ─────────────────────── */
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--zv-dark);
}
.section-title small {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--zv-muted);
    display: block;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

/* ── Destination Cards ───────────────────── */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}
.dest-card {
    background: var(--zv-card);
    border-radius: 14px;
    padding: 20px 16px;
    border: 1px solid var(--zv-border);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.dest-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: var(--zv-primary);
    color: inherit;
}
.dest-time {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--zv-primary);
    letter-spacing: 2px;
    font-variant-numeric: tabular-nums;
}
.dest-city {
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 6px;
}
.dest-country {
    font-size: 0.78rem;
    color: var(--zv-muted);
}
.dest-diff {
    display: inline-block;
    background: #f0f9ff;
    color: var(--zv-primary-dk);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 2px 9px;
    border-radius: 20px;
    margin-top: 8px;
}

/* ── Country List ────────────────────────── */
.alpha-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 24px;
}
.alpha-nav a {
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.8rem;
    background: white;
    border: 1px solid var(--zv-border);
    color: var(--zv-muted);
    transition: all 0.15s;
}
.alpha-nav a:hover, .alpha-nav a.active {
    background: var(--zv-primary);
    color: white;
    border-color: var(--zv-primary);
}
.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 8px;
}
.country-item {
    background: white;
    border: 1px solid var(--zv-border);
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.15s;
    text-decoration: none;
    color: inherit;
}
.country-item:hover {
    background: #f0f9ff;
    border-color: var(--zv-primary);
    color: var(--zv-primary);
}
.country-item i { opacity: 0.3; font-size: 0.7rem; }

/* ── City Hero ───────────────────────────── */
.city-hero {
    background: linear-gradient(135deg, var(--zv-dark) 0%, #0f3460 100%);
    color: white;
    padding: 50px 0 40px;
}
.city-hero .breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 12px;
}
.city-hero .breadcrumb-item { font-size: 0.85rem; }
.city-hero .breadcrumb-item a { color: rgba(255,255,255,0.72); }
.city-hero .breadcrumb-item a:hover { color: white; }
.city-hero .breadcrumb-item span.active { color: rgba(255,255,255,0.45); }
.city-hero .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.3); }
.city-name {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.city-name-en {
    font-size: 1rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 16px;
}
.city-big-clock {
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--zv-primary);
    letter-spacing: 6px;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}
.city-de-clock {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    letter-spacing: 2px;
    font-variant-numeric: tabular-nums;
}
.time-diff-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--zv-accent);
    color: #1e293b;
    padding: 5px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* ── Info Chips ──────────────────────────── */
.info-chips {
    background: var(--zv-dark-2);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.info-chip {
    text-align: center;
    padding: 8px 12px;
}
.info-chip .ic-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 4px;
}
.info-chip .ic-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
}
.info-chip .ic-value.highlight { color: var(--zv-primary); }

/* ── Content Cards ───────────────────────── */
.content-section {
    padding: 40px 0;
}
.card-block {
    background: var(--zv-card);
    border-radius: 16px;
    border: 1px solid var(--zv-border);
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-bottom: 24px;
}
.card-block-header {
    padding: 16px 24px;
    border-bottom: 1px solid var(--zv-border);
    display: flex;
    align-items: center;
    gap: 10px;
}
.card-block-header i {
    color: var(--zv-primary);
    font-size: 1rem;
}
.card-block-header h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: var(--zv-dark);
}
.card-block-body { padding: 24px; }

/* Wikipedia description */
.wikipedia-content {
    font-size: 0.9rem;
    line-height: 1.75;
    color: #334155;
}
.wikipedia-content br { display: block; margin-bottom: 8px; content: ""; }

/* Time comparison table */
.time-compare-table td {
    padding: 8px 4px;
    border: none;
    font-size: 0.9rem;
}
.time-compare-table .tz-de { color: var(--zv-muted); }
.time-compare-table .tz-city { font-weight: 600; color: var(--zv-primary-dk); }
.time-compare-table tr.business { background: #f0fdf4; border-radius: 8px; }

/* Travel info grid */
.travel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.travel-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.travel-item i {
    color: var(--zv-primary);
    font-size: 1rem;
    margin-top: 2px;
    width: 16px;
    flex-shrink: 0;
}
.travel-item .ti-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--zv-muted);
}
.travel-item .ti-value {
    font-size: 0.95rem;
    font-weight: 600;
}

/* Booking CTA */
.booking-block {
    background: linear-gradient(135deg, #003580 0%, #0071c2 100%);
    border-radius: 16px;
    padding: 28px;
    color: white;
    text-align: center;
    margin-bottom: 24px;
}
.booking-block h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.booking-block p { font-size: 0.85rem; opacity: 0.8; margin-bottom: 16px; }
.booking-block .btn-booking {
    background: white;
    color: #003580;
    font-weight: 700;
    border-radius: 50px;
    padding: 10px 28px;
    font-size: 0.9rem;
    border: none;
    transition: transform 0.15s;
    display: inline-block;
}
.booking-block .btn-booking:hover { transform: scale(1.03); }

/* Cities in country list */
.city-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--zv-border);
    text-decoration: none;
    color: inherit;
    transition: all 0.15s;
}
.city-list-item:last-child { border-bottom: none; }
.city-list-item:hover { color: var(--zv-primary); }
.city-list-item .cl-time {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--zv-primary);
    font-variant-numeric: tabular-nums;
}

/* ── Country Hero ────────────────────────── */
.country-hero {
    background: linear-gradient(135deg, var(--zv-dark) 0%, #1a2744 100%);
    color: white;
    padding: 45px 0;
}
.country-hero .breadcrumb-item { font-size: 0.85rem; }
.country-hero .breadcrumb-item a { color: rgba(255,255,255,0.72); }
.country-hero .breadcrumb-item a:hover { color: white; }
.country-hero .breadcrumb-item span.active { color: rgba(255,255,255,0.45); }
.country-hero .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.3); }
.country-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.cstat {
    background: rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}
.cstat .cs-val {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--zv-primary);
}
.cstat .cs-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── Footer ──────────────────────────────── */
.zv-footer {
    background: var(--zv-dark);
    color: rgba(255,255,255,0.45);
    padding: 40px 0 20px;
    margin-top: 60px;
    font-size: 0.85rem;
}
.zv-footer a { color: rgba(255,255,255,0.45); }
.zv-footer a:hover { color: white; }
.zv-footer .footer-brand {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}
.zv-footer .footer-brand span { color: var(--zv-primary); }

/* ── Responsive ──────────────────────────── */
@media (max-width: 768px) {
    .hero h1 { font-size: 1.9rem; }
    .city-big-clock { font-size: 2.6rem; letter-spacing: 3px; }
    .city-de-clock { font-size: 1.1rem; }
    .country-stats { grid-template-columns: 1fr 1fr; }
    .country-stats .cstat .cs-val { font-size: 1.1rem; }
    .travel-grid { grid-template-columns: 1fr; }
}

/* ── Autocomplete ────────────────────────── */
.zv-autocomplete {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
    z-index: 9999;
    overflow: hidden;
    display: none;
    border: 1px solid var(--zv-border);
    min-width: 280px;
}
.zv-autocomplete.open { display: block; }
.ac-group-label {
    padding: 10px 16px 4px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--zv-muted);
    font-weight: 600;
    border-top: 1px solid var(--zv-border);
}
.ac-group-label:first-child { border-top: none; }
.ac-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    cursor: pointer;
    text-decoration: none;
    color: var(--zv-dark);
    transition: background 0.1s;
    font-size: 0.9rem;
}
.ac-item:hover, .ac-item.active {
    background: #f0f9ff;
    color: var(--zv-primary-dk);
}
.ac-item i {
    color: var(--zv-primary);
    width: 14px;
    font-size: 0.8rem;
    flex-shrink: 0;
}
.ac-empty {
    padding: 16px;
    text-align: center;
    color: var(--zv-muted);
    font-size: 0.85rem;
}

/* Hero autocomplete wider */
.hero-ac-wrap { position: relative; max-width: 520px; }
.hero-ac-wrap .zv-autocomplete { left: 0; right: auto; min-width: 400px; }

/* ── Attr Filter Bar ─────────────────────────── */
.attr-filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.attr-filter-sep {
    width: 1px;
    height: 24px;
    background: var(--zv-border);
    margin: 0 4px;
    flex-shrink: 0;
}
@media (max-width: 575px) {
    .attr-filter-sep { display: none; }
}

/* ── Kategorie-Filter-Buttons ────────────────── */
.cat-filter-btn {
    background: #f1f5f9;
    border: 1px solid var(--zv-border);
    color: var(--zv-dark);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.15s;
    font-weight: 500;
}
.cat-filter-btn:hover {
    background: #e2e8f0;
    border-color: #cbd5e1;
}
.cat-filter-btn.active {
    background: var(--zv-primary);
    border-color: var(--zv-primary);
    color: white;
}
.cat-filter-btn .cat-count {
    opacity: 0.6;
    font-size: 0.75rem;
    margin-left: 2px;
}
.cat-filter-btn.active .cat-count { opacity: 0.8; }

/* ── Länder-Dropdown ─────────────────────────── */
.country-dropdown { position: relative; flex-shrink: 0; }
.country-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #f1f5f9;
    border: 1px solid var(--zv-border);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.82rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--zv-dark);
    transition: all 0.15s;
    white-space: nowrap;
}
.country-dropdown-toggle:hover { background: #e2e8f0; border-color: #cbd5e1; }
.country-dropdown-toggle.active {
    background: var(--zv-primary);
    border-color: var(--zv-primary);
    color: white;
}
.country-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: white;
    border: 1px solid var(--zv-border);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 200;
    width: 260px;
    overflow: hidden;
}
.country-dropdown-menu.open { display: block; }
.country-search {
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--zv-border);
    padding: 10px 14px;
    font-size: 0.85rem;
    outline: none;
    color: var(--zv-dark);
    background: #f8fafc;
}
.country-list { max-height: 260px; overflow-y: auto; }
.country-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 14px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.1s;
}
.country-item:hover { background: #f8fafc; }
.country-item.active { color: var(--zv-primary); font-weight: 600; }
.country-item-count {
    font-size: 0.75rem;
    color: var(--zv-muted);
}

/* ── Weitere laden Button ────────────────────── */
.load-more-btn {
    background: white;
    border: 1px solid var(--zv-border);
    border-radius: 50px;
    padding: 12px 32px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--zv-dark);
    cursor: pointer;
    transition: all 0.15s;
}
.load-more-btn:hover {
    border-color: var(--zv-primary);
    color: var(--zv-primary);
    box-shadow: 0 2px 8px rgba(14,165,233,0.15);
}
.load-more-btn:disabled {
    opacity: 0.5;
    cursor: default;
}

/* ── Sehenswürdigkeiten ──────────────────────── */
.attr-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    border: 1px solid var(--zv-border);
    border-radius: 14px;
    padding: 18px;
    text-decoration: none;
    color: var(--zv-dark);
    transition: box-shadow 0.15s, transform 0.15s;
    height: 100%;
}
.attr-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-2px);
    color: var(--zv-dark);
}
.attr-card-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--zv-primary), var(--zv-primary-dk));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 1.1rem;
}
.attr-card-body { flex: 1; min-width: 0; }
.attr-cat {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--zv-primary);
    font-weight: 600;
    margin-bottom: 4px;
}
.attr-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.attr-excerpt {
    font-size: 0.78rem;
    color: var(--zv-muted);
    line-height: 1.4;
}
.attr-card-arrow {
    color: var(--zv-border);
    font-size: 0.8rem;
    flex-shrink: 0;
}
.attr-card:hover .attr-card-arrow { color: var(--zv-primary); }

/* Nearby / compact attraction card */
.nearby-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #f8fafc;
    border: 1px solid var(--zv-border);
    border-radius: 10px;
    text-decoration: none;
    color: var(--zv-dark);
    transition: background 0.15s, border-color 0.15s;
    width: 100%;
}
.nearby-card:hover {
    background: #f0f9ff;
    border-color: var(--zv-primary);
    color: var(--zv-dark);
}
.nearby-card > i {
    color: var(--zv-primary);
    width: 18px;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.nearby-name {
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nearby-cat {
    font-size: 0.72rem;
    color: var(--zv-muted);
}

/* ── Zeitumstellung ──────────────────────────── */
.zu-countdown-box {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 14px 20px;
    text-align: center;
    min-width: 80px;
}
.zu-cd-val {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}
.zu-cd-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.4);
    margin-top: 4px;
}
.zu-faq { display: flex; flex-direction: column; gap: 0; }
.zu-faq-item {
    padding: 18px 0;
    border-bottom: 1px solid var(--zv-border);
}
.zu-faq-item:last-child { border-bottom: none; }
.zu-faq-q {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--zv-dark);
    margin-bottom: 8px;
}
.zu-faq-q::before {
    content: 'Q';
    display: inline-block;
    background: var(--zv-primary);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 4px;
    padding: 1px 5px;
    margin-right: 8px;
    vertical-align: middle;
}
.zu-faq-a {
    font-size: 0.875rem;
    color: var(--zv-muted);
    line-height: 1.65;
    padding-left: 22px;
}

.btn-outline-zv {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--zv-primary);
    color: var(--zv-primary);
    border-radius: 50px;
    padding: 7px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}
.btn-outline-zv:hover {
    background: var(--zv-primary);
    color: white;
}

.city-sort-btns {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.city-sort-btn {
    background: none;
    border: 1.5px solid var(--zv-border);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--zv-muted);
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
}
.city-sort-btn:hover {
    border-color: var(--zv-primary);
    color: var(--zv-primary);
}
.city-sort-btn.active {
    background: var(--zv-primary);
    border-color: var(--zv-primary);
    color: white;
}
.city-sort-btn.active i { color: white; }
