/* Modern Hotel Search - Clean Design */

:root {
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --bg: #fafafa;
    --surface: #ffffff;
    --text: #111827;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --border: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius: 12px;
    --sponsored-bg: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    --sponsored-border: #f59e0b;
    --success: #10b981;
    --success-bg: rgba(16, 185, 129, 0.1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif, 'Noto Color Emoji', 'Apple Color Emoji', 'Segoe UI Emoji', 'Twemoji Mozilla', 'EmojiOne Color', emoji;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    min-height: 100vh;
}

/* Twemoji emoji images */
img.emoji {
    height: 1.2em;
    width: 1.2em;
    margin: 0 0.05em 0 0.1em;
    vertical-align: -0.15em;
    display: inline-block;
}

.app {
    min-height: 100vh;
}

/* Search Section */
.search-section {
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-section.centered {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-section.top {
    min-height: auto;
    position: sticky;
    top: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.search-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-section.top .search-container {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 800px;
    text-align: left;
}

.logo {
    font-size: 4rem;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.search-section.top .logo {
    font-size: 2rem;
    margin-bottom: 0;
}

.title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    transition: all 0.3s;
}

.subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    transition: all 0.3s;
}

.search-section.top .title,
.search-section.top .subtitle {
    display: none;
}

/* Search Form */
.search-form {
    width: 100%;
    transition: all 0.3s;
}

.search-section.top .search-form {
    flex: 1;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.2s;
    box-shadow: var(--shadow);
}

.search-input-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text);
    outline: none;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-section.top .search-input {
    padding: 12px 16px;
}

.search-btn {
    padding: 12px 16px;
    background: var(--primary);
    border: none;
    border-radius: 0 10px 10px 0;
    color: white;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: var(--primary-hover);
}

.search-section.top .search-btn {
    padding: 10px 14px;
}

/* Examples */
.examples {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.search-section.top .examples {
    display: none;
}

.examples-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-right: 4px;
}

.example-btn {
    padding: 8px 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.example-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Results Section */
.results-section {
    padding: 20px;
    transition: opacity 0.3s;
}

.results-section.hidden {
    display: none;
}

.results-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Filter Bar - Minimal Inline Design */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.filter-select {
    padding: 6px 28px 6px 10px;
    border: none;
    border-radius: 6px;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    background: var(--bg);
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
}

.filter-select:hover {
    background-color: var(--border);
}

.filter-select:focus {
    outline: none;
    background-color: var(--border);
}

.filter-select:not([value=""]) {
    color: var(--text);
    background-color: rgba(37, 99, 235, 0.08);
}

.filter-actions {
    display: flex;
    gap: 4px;
    margin-left: auto;
    align-items: center;
}

.filter-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    font-size: 0.8125rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--bg);
    color: var(--text-secondary);
}

.filter-btn:hover {
    background: var(--border);
    color: var(--text);
}

.filter-btn.map-btn {
    background: var(--primary);
    color: white;
}

.filter-btn.map-btn:hover:not(:disabled) {
    background: var(--primary-hover);
}

.filter-btn.map-btn:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.5;
}

.filter-btn.clear-btn {
    background: transparent;
    color: var(--text-muted);
    padding: 6px;
}

.filter-btn.clear-btn:hover {
    color: var(--text);
    background: var(--bg);
}

.results-count {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.results-count strong {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.pagination-btn {
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--bg);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--border);
    color: var(--text);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-btn.active {
    background: var(--primary);
    color: white;
}

.pagination-btn.nav {
    background: transparent;
}

.pagination-ellipsis {
    color: var(--text-muted);
    padding: 0 4px;
}

.pagination-info {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-left: 12px;
}

@media (max-width: 640px) {
    .filter-bar {
        gap: 6px;
    }
    
    .filter-select {
        padding: 6px 24px 6px 8px;
        font-size: 0.75rem;
        min-width: 0;
        flex: 1;
    }
    
    .filter-actions {
        margin-left: 0;
        width: 100%;
        justify-content: flex-end;
        margin-top: 4px;
    }
    
    .filter-btn.map-btn span {
        display: none;
    }
}

/* Map Modal */
.map-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.map-modal.active {
    opacity: 1;
    visibility: visible;
}

.map-container {
    position: relative;
    width: 90vw;
    height: 85vh;
    max-width: 1200px;
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.map-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: color 0.2s;
}

.map-close:hover {
    color: var(--text);
}

#map {
    width: 100%;
    height: calc(100% - 60px);
}

/* Leaflet popup customization */
.leaflet-popup-content-wrapper {
    border-radius: 8px;
    padding: 0;
}

.leaflet-popup-content {
    margin: 0;
    min-width: 200px;
}

.map-popup {
    padding: 12px;
}

.map-popup h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.map-popup p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin: 2px 0;
}

.map-popup a {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.75rem;
    color: var(--primary);
    text-decoration: none;
}

.map-popup a:hover {
    text-decoration: underline;
}

/* Loading */
.loading {
    text-align: center;
    padding: 60px 20px;
}

.loading.hidden {
    display: none;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    margin: 0 auto 16px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading p {
    color: var(--text-secondary);
}

/* Results List */
.results-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Hotel Card */
.hotel-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    border: 1px solid transparent;
    position: relative;
}

.hotel-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.hotel-card.sponsored {
    background: var(--sponsored-bg);
    border-color: var(--sponsored-border);
}

.sponsored-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #92400e;
    background: rgba(245, 158, 11, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hotel-content {
    display: flex;
    gap: 16px;
}

.hotel-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: contain;
    background: var(--bg);
    flex-shrink: 0;
}

.hotel-info {
    flex: 1;
    min-width: 0;
}

.hotel-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    padding-right: 100px; /* Space for photos */
}

.hotel-card:hover .hotel-name {
    color: var(--primary);
}

/* Photos Stack Effect */
.hotel-photos {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 100px;
    height: 75px;
    cursor: pointer;
    z-index: 10;
}

.hotel-photos:hover .photo-stack-item {
    transform: translateY(-4px);
}

.photo-stack-item {
    position: absolute;
    width: 70px;
    height: 52px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    background-size: cover;
    background-position: center;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.photo-stack-item:nth-child(1) {
    top: 0;
    left: 0;
    transform: rotate(-8deg);
    z-index: 3;
}

.photo-stack-item:nth-child(2) {
    top: 5px;
    left: 20px;
    transform: rotate(4deg);
    z-index: 2;
}

.photo-stack-item:nth-child(3) {
    top: 10px;
    left: 10px;
    transform: rotate(-2deg);
    z-index: 1;
}

.hotel-photos:hover .photo-stack-item:nth-child(1) {
    transform: rotate(-12deg) translateY(-4px);
}

.hotel-photos:hover .photo-stack-item:nth-child(2) {
    transform: rotate(8deg) translateY(-4px);
}

.hotel-photos:hover .photo-stack-item:nth-child(3) {
    transform: rotate(2deg) translateY(-2px);
}

.photo-count {
    position: absolute;
    bottom: -8px;
    right: 0;
    background: var(--primary);
    color: white;
    font-size: 0.625rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    z-index: 4;
}

/* Hide images 4+ on desktop (stack shows only 3) */
.photo-stack-item:nth-child(n+4) {
    display: none;
}

/* Hide scroll dots on desktop */
.photo-scroll-dots {
    display: none;
}

/* Gallery Lightbox */
.gallery-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.gallery-overlay.active {
    opacity: 1;
    visibility: visible;
}

.gallery-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.gallery-image {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.gallery-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 16px;
    border-radius: 50%;
    transition: background 0.2s;
}

.gallery-nav:hover {
    background: rgba(255,255,255,0.3);
}

.gallery-prev {
    left: -60px;
}

.gallery-next {
    right: -60px;
}

.gallery-counter {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.875rem;
}

/* Developer Mode */
.dev-score {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--border);
    font-size: 0.75rem;
    font-family: monospace;
    color: var(--text-muted);
    display: flex;
    gap: 16px;
}

@media (max-width: 768px) {
    .hotel-card {
        padding: 0;
        overflow: hidden;
    }
    
    .hotel-photos {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        height: 200px;
        margin: 0;
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
    }
    
    .hotel-photos::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }
    
    .photo-stack-item {
        position: relative;
        top: auto;
        left: auto;
        flex: 0 0 100%;
        width: 100%;
        height: 100%;
        transform: none !important;
        border-radius: 0;
        border: none;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }
    
    /* Show all images on mobile for scrolling */
    .photo-stack-item:nth-child(n) {
        display: block;
    }
    
    .hotel-photos:hover .photo-stack-item {
        transform: none !important;
    }
    
    /* Hide photo count on mobile, show scroll dots instead */
    .photo-count {
        display: none;
    }
    
    /* Scroll indicator dots */
    .photo-scroll-dots {
        display: flex;
        position: absolute;
        bottom: 12px;
        left: 50%;
        transform: translateX(-50%);
        gap: 6px;
        z-index: 5;
        pointer-events: none;
    }
    
    .photo-scroll-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        transition: all 0.2s;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }
    
    .photo-scroll-dot.active {
        background: white;
        width: 18px;
        border-radius: 3px;
    }
    
    .hotel-content {
        padding: 16px;
    }
    
    .hotel-name {
        padding-right: 0;
    }
    
    .gallery-nav {
        padding: 12px;
        font-size: 1.5rem;
    }
    
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
}

.hotel-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.hotel-type {
    font-size: 0.75rem;
    padding: 4px 10px;
    background: var(--bg);
    border-radius: 6px;
    color: var(--text-secondary);
    font-weight: 500;
}

.hotel-location {
    font-size: 0.75rem;
    padding: 4px 10px;
    background: var(--bg);
    border-radius: 6px;
    color: var(--text-secondary);
}

.hotel-area {
    font-size: 0.75rem;
    padding: 4px 10px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 6px;
    color: var(--primary);
    font-weight: 500;
}

/* Enhanced Location Display */
.hotel-location-full {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}

.hotel-location-full .location-icon {
    color: var(--primary);
    flex-shrink: 0;
}

.hotel-location-full .location-text {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
}

.hotel-location-full .location-part {
    display: inline-flex;
    align-items: center;
}

.hotel-location-full .location-separator {
    color: var(--text-muted);
    margin: 0 2px;
}

.hotel-location-full .location-coords {
    font-size: 0.6875rem;
    color: var(--text-muted);
    margin-left: 8px;
    padding: 2px 6px;
    background: var(--bg);
    border-radius: 4px;
}

.hotel-has-coords {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.6875rem;
    color: var(--success);
    background: var(--success-bg);
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: auto;
}

.hotel-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.no-results h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--text);
}

/* Error */
.error-message {
    text-align: center;
    padding: 40px 20px;
    background: #fef2f2;
    border-radius: var(--radius);
    color: #991b1b;
}

/* Typing cursor */
.search-input.typing::after {
    content: '|';
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Query Understanding Chips */
.understanding-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    margin-bottom: 12px;
    padding: 10px 12px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 10px;
    border: 1px solid #bae6fd;
}

.understanding-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-right: 4px;
    font-weight: 500;
}

.understanding-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: white;
    border-radius: 16px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    transition: all 0.2s;
}

.understanding-chip .chip-icon {
    font-size: 0.875rem;
}

.understanding-chip .chip-text {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.understanding-chip.translation {
    background: #fef3c7;
    border-color: #fcd34d;
    color: #92400e;
    max-width: none;
}

.understanding-chip.translation .chip-text {
    max-width: 400px;
    font-style: italic;
}

.understanding-chip.purpose {
    background: #dbeafe;
    border-color: #93c5fd;
    color: #1e40af;
}

.understanding-chip.atmosphere {
    background: #fce7f3;
    border-color: #f9a8d4;
    color: #9d174d;
}

.understanding-chip.location,
.understanding-chip.destination {
    background: #d1fae5;
    border-color: #6ee7b7;
    color: #065f46;
}

.understanding-chip.exclude {
    background: #fee2e2;
    border-color: #fca5a5;
    color: #991b1b;
}

.understanding-chip.must-have {
    background: #dcfce7;
    border-color: #86efac;
    color: #166534;
}

.understanding-chip.must-not-have {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
    text-decoration: line-through;
}

.understanding-chip.transport,
.understanding-chip.origin {
    background: #e0e7ff;
    border-color: #a5b4fc;
    color: #3730a3;
}

.understanding-chip.guest {
    background: #faf5ff;
    border-color: #d8b4fe;
    color: #6b21a8;
}

.understanding-chip.budget {
    background: #fefce8;
    border-color: #fde047;
    color: #854d0e;
}

.understanding-chip.occasion {
    background: #fff7ed;
    border-color: #fdba74;
    color: #9a3412;
}

@media (max-width: 640px) {
    .understanding-chips {
        padding: 8px;
        gap: 4px;
    }
    
    .understanding-chip {
        padding: 3px 8px;
        font-size: 0.6875rem;
    }
    
    .understanding-chip .chip-text {
        max-width: 120px;
    }
    
    .understanding-chip.translation .chip-text {
        max-width: 200px;
    }
}

/* Location Indicator */
.location-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    padding: 6px 12px;
    background: var(--bg);
    border-radius: 20px;
    transition: all 0.3s;
}

.location-indicator.active {
    color: var(--success);
    background: var(--success-bg);
}

.location-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    transition: all 0.3s;
}

.location-dot.active {
    background: var(--success);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
}

.search-section.top .location-indicator {
    display: none;
}

/* Responsive */
@media (max-width: 640px) {
    .logo {
        font-size: 3rem;
    }
    
    .title {
        font-size: 1.5rem;
    }
    
    .search-section.top .search-container {
        flex-direction: row;
    }
    
    .search-section.top .logo {
        display: none;
    }
    
    .examples {
        flex-direction: column;
    }
    
    .examples-label {
        margin-bottom: 8px;
    }
    
    .location-indicator {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
}
