/* ========================================
   Hotels Page - GPS Hotel Search
   ======================================== */

/* Hero Section */
.hotels-hero {
    background: linear-gradient(135deg, #1a5fb4 0%, #0d3a7a 100%);
    color: white;
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.hotels-hero h1 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-variant-numeric: lining-nums;
}

.hotels-hero p {
    font-family: var(--font-body);
}

.hero-tagline {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hotels-hero .hero-description {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.85;
    font-size: 1rem;
    line-height: 1.6;
}

/* Search Section */
.hotel-search-section {
    background: var(--bg-light);
    padding: var(--spacing-xl) 0;
    margin-top: -2rem;
    position: relative;
    z-index: 10;
}

.hotel-search-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-hover);
    max-width: 900px;
    margin: 0 auto;
}

/* Form Rows */
.form-row {
    margin-bottom: 1.5rem;
}

.form-row-three {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 768px) {
    .form-row-three {
        grid-template-columns: 1fr;
    }
}

/* Form Groups */
.hotel-search-form .form-group {
    margin-bottom: 1.5rem;
}

.hotel-search-form .form-group-large {
    grid-column: span 1;
}

.hotel-search-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.label-hint {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Input with Icon */
.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 12px;
    font-size: 1.1rem;
    z-index: 1;
}

.input-with-icon input,
.input-with-icon select {
    width: 100%;
    padding: 0.875rem 0.875rem 0.875rem 2.75rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-variant-numeric: lining-nums;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: white;
    -webkit-appearance: none;
    appearance: none;
}

.input-with-icon select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 2.5rem;
}

.input-with-icon input:focus,
.input-with-icon select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(26, 95, 180, 0.1);
}

/* Price Range Slider */
.price-range-selector {
    padding: 0.5rem 0;
}

.price-range-selector input[type="range"] {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    background: linear-gradient(to right, #10b981 0%, #3b82f6 50%, #8b5cf6 100%);
    border-radius: 4px;
    outline: none;
    margin-bottom: 0.75rem;
}

.price-range-selector input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: white;
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s;
}

.price-range-selector input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.price-labels {
    display: flex;
    justify-content: space-between;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 4px 12px;
    border-radius: 20px;
    transition: all 0.2s;
}

.price-label.active {
    background: var(--primary-blue);
    color: white;
    font-weight: 600;
}

/* Vibes Section */
.vibes-section {
    margin-top: 1.5rem;
}

.vibes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
}

@media (max-width: 480px) {
    .vibes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.vibe-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border: 2px solid var(--border-light);
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    font-size: 0.9rem;
}

.vibe-chip:hover {
    border-color: var(--primary-blue);
    background: rgba(26, 95, 180, 0.05);
}

.vibe-chip.selected {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.vibe-icon {
    font-size: 1.1rem;
}

.vibe-label {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Search Button */
.hotel-search-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.hotel-search-btn .btn-icon {
    font-size: 1.2rem;
}

/* GPS Explainer Section */
.gps-explainer {
    padding: var(--spacing-xl) 0;
    background: white;
}

.gps-explainer h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.explainer-intro {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.gps-components {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .gps-components {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .gps-components {
        grid-template-columns: 1fr;
    }
}

.gps-component {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
}

.component-weight {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-blue);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

.component-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.gps-component h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.gps-component p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* Results Section */
.results-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.results-header h2 {
    margin: 0;
}

.view-toggle {
    display: flex;
    background: white;
    border-radius: 8px;
    padding: 4px;
    box-shadow: var(--shadow-soft);
}

.view-btn {
    padding: 0.5rem 1rem;
    background: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.view-btn svg {
    stroke: var(--text-muted);
}

.view-btn:hover svg {
    stroke: var(--text-dark);
}

.view-btn.active {
    background: var(--primary-blue);
}

.view-btn.active svg {
    stroke: white;
}

/* Hotel Card */
.results-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hotel-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: 280px 1fr;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

@media (max-width: 768px) {
    .hotel-card {
        grid-template-columns: 1fr;
    }
}

.hotel-card-type-banner {
    background: linear-gradient(135deg, #1a5fb4 0%, #0d3a7a 100%);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.hotel-card-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.hotel-stars {
    color: #fbbf24;
    font-size: 1rem;
    letter-spacing: 2px;
}

.hotel-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.hotel-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.hotel-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.25rem;
}

.hotel-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hotel-stars {
    color: #fbbf24;
}

/* GPS Score Badge */
.gps-score-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-align: center;
    min-width: 90px;
}

.gps-score-badge.top-match {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.gps-score-value {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.gps-score-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* GPS Score Breakdown */
.gps-breakdown {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

@media (max-width: 500px) {
    .gps-breakdown {
        grid-template-columns: 1fr;
    }
}

.gps-score-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.score-bar-container {
    flex: 1;
}

.score-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.score-bar {
    height: 6px;
    background: var(--border-light);
    border-radius: 3px;
    overflow: hidden;
}

.score-bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.5s ease;
}

.score-bar-fill.sentiment { background: #3b82f6; }
.score-bar-fill.amenity { background: #8b5cf6; }
.score-bar-fill.vibe { background: #ec4899; }
.score-bar-fill.value { background: #10b981; }

.score-percent {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    min-width: 40px;
    text-align: right;
}

.score-highlight {
    font-size: 0.75rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 2px;
}

/* Hotel Price Section */
.hotel-price-section {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.hotel-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.price-per-night {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Compare Prices Dropdown */
.compare-prices {
    margin-bottom: 1rem;
}

.compare-toggle {
    background: none;
    border: none;
    color: var(--primary-blue);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    font-size: 0.9rem;
}

.compare-toggle svg {
    transition: transform 0.2s;
}

.compare-toggle.open svg {
    transform: rotate(180deg);
}

.compare-list {
    display: none;
    margin-top: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
}

.compare-list.open {
    display: block;
}

.compare-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-light);
}

.compare-item:last-child {
    border-bottom: none;
}

.compare-site {
    font-weight: 500;
    color: var(--text-dark);
}

.compare-price {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.compare-price-value {
    font-weight: 600;
}

.compare-book-btn {
    padding: 0.4rem 1rem;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}

.compare-book-btn:hover {
    background: var(--primary-dark);
    color: white;
}

/* Hotel Actions */
.hotel-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hotel-action-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid var(--border-light);
    background: white;
    color: var(--text-dark);
}

.hotel-action-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.hotel-action-btn.saved {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

/* Hotel Website Link */
.hotel-website-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-blue);
    background: #f0f7ff;
    border: 1px solid #d0e3ff;
    text-decoration: none;
    transition: all 0.2s;
    margin-bottom: 0.5rem;
}

.hotel-website-link:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.hotel-website-link svg {
    flex-shrink: 0;
}

/* Map View */
.results-map {
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.hotel-map {
    height: 100%;
    width: 100%;
}

/* Custom Map Markers */
.gps-marker {
    background: white;
    border-radius: 8px;
    padding: 4px 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
    border: 2px solid #10b981;
}

.gps-marker.top-match {
    border-color: #f59e0b;
    background: #fffbeb;
}

/* Map Popup */
.leaflet-popup-content-wrapper {
    border-radius: 12px;
    padding: 0;
}

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

.map-popup {
    padding: 1rem;
}

.map-popup-type {
    background: linear-gradient(135deg, #1a5fb4 0%, #0d3a7a 100%);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
}

.map-popup h4 {
    margin: 0 0 0.25rem;
    font-size: 1rem;
}

.map-popup-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.map-popup-gps {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.map-popup-score {
    background: #10b981;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
}

.map-popup-price {
    font-weight: 700;
    font-size: 1.1rem;
}

.map-popup-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.6rem;
    background: var(--primary-blue);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.map-popup-btn:hover {
    background: var(--primary-dark);
    color: white;
}

/* Loading State */
.results-loading {
    text-align: center;
    padding: 4rem 2rem;
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-light);
    border-top-color: var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

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

.loading-hint {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* No Results */
.no-results-message {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 12px;
}

.no-results-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.no-results-message h3 {
    margin-bottom: 0.5rem;
}

.no-results-message p {
    color: var(--text-muted);
}

/* Auth Modal */
.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 400px;
    text-align: center;
}

.auth-content h3 {
    margin-bottom: 0.5rem;
}

.auth-content > p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.auth-content ul {
    text-align: left;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    padding-left: 1.5rem;
}

.auth-content li {
    margin-bottom: 0.5rem;
}

.close-modal-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.close-modal-btn:hover {
    color: var(--text-dark);
}

/* ========================================
   NEW HOTEL CARD DESIGN
   ======================================== */

/* Top Pick Badge */
.top-pick-badge {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.top-pick-badge .stars {
    color: #fbbf24;
    margin-left: 0.5rem;
}

/* Hotel Card Main Container */
.hotel-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.hotel-card-main {
    display: grid;
    grid-template-columns: 300px 1fr;
}

@media (max-width: 900px) {
    .hotel-card-main {
        grid-template-columns: 1fr;
    }
}

/* Hotel type banner (replaces image) */

/* Hotel Content */
.hotel-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Header Row */
.hotel-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.hotel-title-section {
    flex: 1;
}

.hotel-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.25rem;
    line-height: 1.3;
}

.hotel-location {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.hotel-location svg {
    flex-shrink: 0;
}

/* GPS Score Circle */
.gps-score-circle {
    text-align: center;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    min-width: 80px;
}

.gps-score-circle.top-match {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: #f59e0b;
}

.gps-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.gps-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
}

.gps-score-circle.top-match .gps-value {
    color: #d97706;
}

/* Hotel Description */
.hotel-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Circular Score Row */
.score-circles-row {
    display: flex;
    justify-content: space-around;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.circular-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.score-circle {
    width: 70px;
    height: 70px;
}

.circular-score .score-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.circular-score .score-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: #64748b;
    text-align: center;
    margin-top: 0.25rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

@media (max-width: 600px) {
    .score-circles-row {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .score-circle {
        width: 55px;
        height: 55px;
    }
    .circular-score .score-value {
        font-size: 1rem;
    }
    .circular-score .score-label {
        font-size: 0.55rem;
    }
}

/* Match Sections */
.match-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 700px) {
    .match-sections {
        grid-template-columns: 1fr;
    }
}

.why-matches,
.transparent-notes {
    padding: 1rem;
    border-radius: 10px;
}

.why-matches {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.transparent-notes {
    background: #fefce8;
    border: 1px solid #fef08a;
}

.why-matches h4,
.transparent-notes h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0 0 0.75rem;
    color: var(--text-dark);
}

.why-matches h4 {
    color: #166534;
}

.transparent-notes h4 {
    color: #a16207;
}

.why-matches ul,
.transparent-notes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-matches li,
.transparent-notes li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.why-matches li:last-child,
.transparent-notes li:last-child {
    margin-bottom: 0;
}

.why-matches li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.note-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f59e0b;
    flex-shrink: 0;
    margin-top: 6px;
}

/* Nearby Attractions */
.nearby-attractions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.nearby-label {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.attraction-chip {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: white;
    border: 1px solid #e2e8f0;
    padding: 0.35rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-gray);
}

.attraction-chip svg {
    color: var(--primary-blue);
}

/* Booking Prices */
.booking-prices {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.booking-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.2s;
    flex: 1;
    min-width: 180px;
}

.booking-link:hover {
    border-color: var(--primary-blue);
    background: #f8fafc;
}

.booking-favicon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.booking-site {
    font-weight: 600;
    font-size: 0.85rem;
}

.booking-price {
    margin-left: auto;
    font-size: 0.9rem;
    color: #ea580c;
    font-weight: 600;
}

.booking-link svg {
    color: #94a3b8;
    flex-shrink: 0;
}

/* Hotel Actions */
.hotel-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding-top: 0.5rem;
    border-top: 1px solid #e2e8f0;
    margin-top: 0.5rem;
}

.hotel-action-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid #e2e8f0;
    background: white;
    color: var(--text-dark);
}

.hotel-action-btn:hover {
    border-color: var(--primary-blue);
    background: #f8fafc;
}

.hotel-action-btn.saved {
    background: #fef2f2;
    border-color: #fecaca;
    color: #dc2626;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hotels-hero h1 {
        font-size: 1.75rem;
    }

    .hotel-search-form {
        padding: 1.5rem;
    }

    .hotel-card-content {
        padding: 1rem;
    }

    .gps-breakdown {
        padding: 0.75rem;
    }

    .results-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .booking-link {
        min-width: 100%;
    }
}
