@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,400&display=swap');

:root {
    --bg-gradient: linear-gradient(135deg, #0b0f19 0%, #111827 50%, #1e1b4b 100%);
    --panel-bg: rgba(17, 24, 39, 0.7);
    --panel-border: rgba(255, 255, 255, 0.08);
    --panel-hover-border: rgba(255, 255, 255, 0.16);
    
    --primary: #be185d; /* Burgundy Wine */
    --primary-glow: rgba(190, 24, 93, 0.35);
    --secondary: #fbbf24; /* Sun Gold */
    --secondary-glow: rgba(251, 191, 36, 0.3);
    --accent: #06b6d4; /* Cyan Accent */
    --success: #10b981; /* Emerald Green */
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-quick: all 0.15s ease;
    
    --shadow-main: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px rgba(190, 24, 93, 0.15);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(255, 255, 255, 0.05);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #db2777;
}

body {
    background: #0b0f19;
    background-image: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: var(--font-sans);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation Layout */
.app-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Navigation */
.sidebar {
    width: 280px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(20px);
    border-right: 1px solid var(--panel-border);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    z-index: 100;
    transition: var(--transition-smooth);
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.brand-logo {
    font-size: 2rem;
}

.brand-text h1 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--text-main), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-text p {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-item {
    width: 100%;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.25rem;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.nav-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    color: var(--text-main);
    background: linear-gradient(135deg, var(--primary) 0%, rgba(190, 24, 93, 0.5) 100%);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(190, 24, 93, 0.25);
}

.nav-link.active svg {
    transform: scale(1.1);
}

/* Main Content Area */
.main-content {
    flex: 1;
    margin-left: 280px;
    padding: 2.5rem 3rem;
    max-width: 1400px;
    transition: var(--transition-smooth);
}

/* Header/Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.page-title h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.page-title p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Countdown Widget */
.countdown-container {
    background: rgba(190, 24, 93, 0.1);
    border: 1px solid rgba(190, 24, 93, 0.2);
    border-radius: 16px;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-glow);
}

.countdown-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--secondary);
}

.countdown-timer {
    display: flex;
    gap: 1rem;
}

.timer-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-value {
    font-size: 1.3rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.timer-unit {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Glassmorphic Panel/Card */
.glass-panel {
    background: var(--panel-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--panel-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-main);
    transition: var(--transition-smooth);
    margin-bottom: 2rem;
}

.glass-panel:hover {
    border-color: var(--panel-hover-border);
}

/* Section Tabs Animation */
.tab-section {
    display: none;
    animation: fadeIn 0.4s ease-out forwards;
}

.tab-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Grid Layouts */
.grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-1-2 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

/* Dashboard Widgets */
.stat-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 16px;
    padding: 1.25rem;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    background: rgba(255,255,255,0.04);
    transform: translateY(-2px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-card.primary .stat-icon {
    background: rgba(190, 24, 93, 0.15);
    color: var(--primary);
}

.stat-card.secondary .stat-icon {
    background: rgba(251, 191, 36, 0.15);
    color: var(--secondary);
}

.stat-card.accent .stat-icon {
    background: rgba(6, 182, 212, 0.15);
    color: var(--accent);
}

.stat-info h4 {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 500;
}

.stat-info p {
    font-size: 1.25rem;
    font-weight: 700;
}

/* Flight Tickets */
.tickets-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.ticket-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.85) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 1px solid var(--panel-border);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-main);
    overflow: hidden;
    position: relative;
}

.ticket-header {
    background: linear-gradient(90deg, rgba(190, 24, 93, 0.2) 0%, transparent 100%);
    border-bottom: 1px dashed var(--panel-border);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ticket-airline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-main);
    font-size: 1.1rem;
}

.ticket-ref {
    font-size: 0.85rem;
    color: var(--text-muted);
    background: rgba(255,255,255,0.05);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

.ticket-body {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.ticket-airport h3 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.ticket-airport.destination h3 {
    text-align: right;
    color: var(--secondary);
}

.ticket-airport p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.ticket-airport.destination p {
    text-align: right;
}

.ticket-path {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0 1rem;
}

.ticket-line {
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.1);
    position: relative;
}

.ticket-line::before, .ticket-line::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
    top: -2px;
}

.ticket-line::before { left: 0; }
.ticket-line::after { right: 0; }

.ticket-plane {
    position: absolute;
    top: -11px;
    background: #111827;
    padding: 0 0.5rem;
    color: var(--primary);
    font-size: 1.2rem;
    transform: rotate(90deg);
}

.ticket-card.return .ticket-plane {
    transform: rotate(-90deg);
}

.ticket-duration {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    background: rgba(255,255,255,0.03);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
}

.ticket-stops {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 0.15rem;
}

.ticket-datetime {
    font-size: 0.95rem;
    margin-top: 0.75rem;
    font-weight: 500;
}

.ticket-airport.destination .ticket-datetime {
    text-align: right;
}

.ticket-passengers {
    border-top: 1px dashed var(--panel-border);
    padding: 1.5rem 2rem;
    background: rgba(0,0,0,0.15);
}

.passengers-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.passenger-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    font-size: 0.9rem;
}

.passenger-row:last-child {
    border-bottom: none;
}

.passenger-name {
    font-weight: 500;
}

.passenger-eticket {
    font-family: monospace;
    color: var(--text-muted);
}

.passenger-baggage {
    color: var(--success);
    font-size: 0.85rem;
    grid-column: span 2;
}

/* Semi-circular cuts on ticket sides */
.ticket-card::before, .ticket-card::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #0b0f19; /* matches outer body background */
    border-radius: 50%;
    top: 51px; /* aligns with dashed border bottom */
    z-index: 5;
}

.ticket-card::before {
    left: -10px;
    border-right: 1px solid var(--panel-border);
}

.ticket-card::after {
    right: -10px;
    border-left: 1px solid var(--panel-border);
}

/* Itinerary Timeline */
.timeline-controls {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.timeline-btn {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--panel-border);
    color: var(--text-muted);
    padding: 0.6rem 1.25rem;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.timeline-btn:hover {
    color: var(--text-main);
    border-color: var(--panel-hover-border);
}

.timeline-btn.active {
    background: var(--primary);
    color: var(--text-main);
    border-color: var(--primary);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.timeline {
    position: relative;
    padding-left: 3rem;
    margin-top: 1rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    animation: fadeIn 0.4s ease-out;
}

.timeline-badge {
    position: absolute;
    left: -45px;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #111827;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    z-index: 10;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    transition: var(--transition-smooth);
}

.timeline-item.work-day .timeline-badge {
    border-color: var(--accent);
}

.timeline-item.travel-day .timeline-badge {
    border-color: var(--secondary);
}

.timeline-panel {
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: 18px;
    padding: 1.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 1.5rem;
    transition: var(--transition-smooth);
}

.timeline-panel:hover {
    border-color: var(--panel-hover-border);
    transform: translateX(4px);
}

.timeline-date-info {
    border-right: 1px solid rgba(255,255,255,0.06);
    padding-right: 1rem;
}

.day-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
}

.day-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.day-type-badge {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 6px;
    margin-top: 0.5rem;
}

.day-type-badge.off {
    background: rgba(190, 24, 93, 0.15);
    color: var(--primary);
    border: 1px solid rgba(190, 24, 93, 0.2);
}

.day-type-badge.work {
    background: rgba(6, 182, 212, 0.15);
    color: var(--accent);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.day-type-badge.travel {
    background: rgba(251, 191, 36, 0.15);
    color: var(--secondary);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.timeline-content h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.day-dist {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--secondary);
    background: rgba(251, 191, 36, 0.08);
    padding: 0.15rem 0.5rem;
    border-radius: 8px;
}

.timeline-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.timeline-details-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.timeline-details-list li {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline-details-list li::before {
    content: '•';
    color: var(--primary);
    font-weight: 700;
}

/* Wineries Section */
.winery-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.winery-hero {
    height: 160px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    position: relative;
}

.winery-title-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem 1rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 100%);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.winery-title-bar h3 {
    font-size: 1.2rem;
    font-family: var(--font-serif);
    color: var(--text-main);
}

.winery-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.badge {
    padding: 0.25rem 0.6rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge.kid-yes {
    background: rgba(16, 185, 129, 0.12);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge.kid-no {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.badge.dist {
    background: rgba(251, 191, 36, 0.1);
    color: var(--secondary);
    border: 1px solid rgba(251, 191, 36, 0.15);
}

.winery-details {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.winery-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.winery-detail-row span:first-child {
    font-weight: 500;
}

.winery-detail-row span:last-child {
    color: var(--text-main);
}

/* Kids Guide List */
.kids-card {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.kids-avatar {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--panel-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kids-info h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}

.kids-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Checklist Panel Styles */
.checklist-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.checklist-group-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 0.5rem;
    margin-bottom: 0.75rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition-quick);
}

.checklist-item input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--text-dim);
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    transition: var(--transition-quick);
}

.checklist-item input[type="checkbox"]:checked {
    border-color: var(--primary);
    background: var(--primary);
}

.checklist-item input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 3px;
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 700;
}

.checklist-text {
    transition: var(--transition-quick);
}

.checklist-item.checked .checklist-text {
    text-decoration: line-through;
    color: var(--text-dim);
}

/* Custom Item Input Form */
.input-form {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.input-field {
    flex: 1;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transition: var(--transition-quick);
}

.input-field:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

.btn-add {
    background: var(--primary);
    border: none;
    color: var(--text-main);
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-quick);
}

.btn-add:hover {
    background: #db2777;
    box-shadow: 0 0 15px var(--primary-glow);
}

/* Bottom Nav bar for mobile screens */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--panel-border);
    z-index: 1000;
    padding: 0.5rem 0;
}

.bottom-menu {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

.bottom-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    transition: var(--transition-quick);
}

.bottom-link svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.bottom-link.active {
    color: var(--primary);
}

/* Responsive Rules */
@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
        width: 0;
        padding: 0;
        border-right: none;
    }
    
    .main-content {
        margin-left: 0;
        padding: 1.5rem 1.5rem 5rem 1.5rem;
    }
    
    .bottom-nav {
        display: block;
    }
    
    .top-bar {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .grid-2col, .grid-3col, .grid-1-2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ticket-body {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .ticket-airport.destination h3, .ticket-airport.destination p, .ticket-airport.destination .ticket-datetime {
        text-align: left;
    }
    
    .ticket-path {
        flex-direction: row;
        width: 100%;
        padding: 1rem 0;
    }
    
    .ticket-line {
        height: 2px;
        width: 100%;
    }
    
    .ticket-plane {
        transform: rotate(0deg) !important;
        left: 45%;
        top: -10px;
    }
    
    .passenger-row {
        grid-template-columns: 1fr;
        gap: 0.25rem;
        padding: 0.75rem 0;
    }
    
    .passenger-baggage {
        grid-column: auto;
    }
    
    .timeline-panel {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.25rem 1.5rem;
    }
    
    .timeline-date-info {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        padding-right: 0;
        padding-bottom: 0.75rem;
    }
    
    .top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .countdown-container {
        width: 100%;
        justify-content: space-between;
    }
}

/* Beautiful SVG Map Styling */
.map-svg-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
}

.map-outline {
    fill: none;
    stroke: var(--text-dim);
    stroke-width: 2;
    stroke-dasharray: 2 4;
}

.map-route-line {
    fill: none;
    stroke: var(--primary);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: drawRoute 3s ease-out forwards;
}

.map-location-node {
    fill: var(--secondary);
    stroke: #111827;
    stroke-width: 2;
    transition: var(--transition-quick);
}

.map-location-node:hover {
    fill: var(--primary);
    r: 7;
}

.map-label {
    fill: var(--text-main);
    font-size: 11px;
    font-weight: 500;
    font-family: var(--font-sans);
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

@keyframes drawRoute {
    to {
        stroke-dashoffset: 0;
    }
}
