/* Breadcrumb Navigation */
.breadcrumbs {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    color: var(--mute);
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin: 0;
    padding: 0;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
    content: "›";
    margin: 0 0.5rem;
    color: var(--mute-2);
}

.breadcrumbs a {
    color: var(--forest);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs li:last-child {
    color: var(--ink-soft);
    font-weight: 500;
}

/* Hero Section */
.search-hero {
    min-height: 320px;
    background-image: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}

.search-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(30,58,47,0.75) 0%, rgba(30,58,47,0.55) 100%);
}

.search-hero-overlay {
    position: relative;
    z-index: 1;
    padding: 48px 32px;
    text-align: center;
    color: #fff;
    max-width: 860px;
    width: 100%;
    box-sizing: border-box;
}

.search-hero-overlay h1 {
    font-family: var(--f-display, "Instrument Serif", serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.2;
    margin: 0 0 8px;
    color: #fff;
}

.search-hero-overlay p {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    margin: 0;
}

.search-box-large {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-direction: column; /* Stack vertically on small screens */
}

.search-box-large input {
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 5px;
    width: 100%; /* Make input take full width */
}

.search-button-large {
    background-color: var(--ochre);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%; /* Make button take full width */
}

.container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    padding: 24px 32px;
    gap: 24px;
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.filter-active .container {
    grid-template-columns: 1fr 500px; /* main-content, wider map-container */
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    
}

.map-container {
    background-color: var(--paper);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 84px; /* Sticky below the 68px header + some breathing room */
    height: 500px; /* Fixed height */
}

.dummy-map {
    height: 100%;
    background-color: var(--line);
    border-radius: 5px;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.filter-button {
    background-color: var(--ochre);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.filter-button:hover {
    background-color: var(--ochre-2);
}

.compare-button {
    background-color: var(--forest);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: var(--r-md, 8px);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-size: 0.875rem;
    font-family: var(--f-body, sans-serif);
    transition: background-color 0.2s ease;
}

.compare-button:hover {
    background-color: var(--forest-2);
}

.guide-button {
    background-color: transparent;
    color: var(--forest);
    padding: 0.8rem 1.5rem;
    border: 1.5px solid var(--forest);
    border-radius: var(--r-md, 8px);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-size: 0.875rem;
    font-family: var(--f-body, sans-serif);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.guide-button:hover {
    background-color: var(--forest);
    color: white;
}

.filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s;
}

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

.filter-content {
    background-color: var(--paper);
    padding: 2rem;
    border-radius: 10px;
    position: relative;
    width: 90%;
    max-width: 500px;
    max-height: 90%;
    overflow-y: auto;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.filter-group {
    margin-bottom: 1.5rem;
}

.hotel-listings {
    flex: 1;
    display: none; /* Hidden by default until content is loaded */
}

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

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.pagination a {
    color: var(--mute);
    padding: 0.8rem 1.2rem;
    text-decoration: none;
    border: 1px solid var(--line);
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pagination a.active, .pagination a:hover {
    background-color: var(--ochre);
    color: white;
    border-color: #f0ad4e;
}

.pagination-btn {
    background-color: var(--forest);
    color: white;
    padding: 0.8rem 1.2rem;
    text-decoration: none;
    border: 1px solid #007bff;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.agoda-button:hover {
    background-color: #0056b3;
}

.map-popup-card {
    width: 200px; /* Fixed width for the popup card */
    font-family: var(--f-body, sans-serif);
}

.map-popup-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 5px;
}

.popup-hotel-link {
    text-decoration: none;
    color: var(--ink-soft);
}

.popup-hotel-info h3 {
    margin: 0 0 5px 0;
    font-size: 1rem;
}

.popup-price {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--forest);
}

.popup-rating {
    font-size: 0.8rem;
    color: var(--mute-2);
}

.agoda-button {
    display: block;
    width: 100%;
    padding: 8px;
    margin-top: 10px;
    background-color: var(--forest);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    text-align: center;
    transition: background-color 0.3s;
}

.popular-areas {
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.area-card {
    background-color: var(--paper);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: var(--ink-soft);
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
    color: var(--forest);
}

.faq-section {
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.faq-tabs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-tab-buttons {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid #eee;
}

.faq-tab-button {
    padding: 1rem 1.5rem;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s;
}

.faq-tab-button.active {
    color: var(--forest);
}

.faq-tab-button::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--forest);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.faq-tab-button.active::after {
    transform: scaleX(1);
}

.faq-tab-content {
    display: none;
    padding: 1.5rem;
    background-color: var(--paper);
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-tab-content.active {
    display: block;
}

.hotel-card {
    background-color: var(--paper);
    border-radius: 10px;
    overflow: visible;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.hotel-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.hotel-card-image {
    display: block;
    width: 100%;
    overflow: hidden;
    text-decoration: none;
    border-radius: 10px 10px 0 0;
}

.hotel-card-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.hotel-info {
    padding: 0.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: visible;
}

.hotel-info h3 {
    margin-top: 0;
    font-size: 0.95rem;
    color: var(--ink-soft);
    margin-bottom: 0.15rem;
    font-weight: 600;
    line-height: 1.2;
}

.hotel-title-link {
    text-decoration: none;
    color: var(--ink-soft);
    transition: color 0.3s ease;
    cursor: pointer;
    display: inline-block;
    min-height: 44px;
    line-height: 1.3;
}

.hotel-title-link:hover {
    color: var(--forest);
}

.breadcrumb-link {
    text-decoration: none;
    color: var(--mute);
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--forest);
    text-decoration: underline;
}

.hotel-header {
    display: flex;
    gap: 0.3rem;
    align-items: flex-start;
    margin-bottom: 0.3rem;
    width: 100%;
    min-height: 20px;
}

.hotel-header-content {
    flex: 1;
    min-width: 0;
    word-break: break-word;
}

.agoda-logo {
    height: 24px !important;
    width: auto !important;
    max-width: 80px !important;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 0.85;
    transition: opacity 0.2s ease-in-out;
}

.breadcrumb {
    font-size: 0.75rem;
    color: var(--mute);
    margin: 0.05rem 0 0.15rem 0;
    padding: 0;
}

.breadcrumb-rating-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

.breadcrumb-rating-container .hotel-breadcrumb {
    margin: 0.05rem 0 0.05rem 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.breadcrumb-rating-container .hotel-rating {
    flex-shrink: 0;
    margin-top: 0;
    margin-left: auto;
}

.breadcrumb span {
    cursor: pointer;
}

.breadcrumb span:hover {
    text-decoration: underline;
}

.hotel-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.1rem;
    font-size: 0.8rem;
}

.hotel-rating .stars {
    color: gold;
    font-size: 0.85rem;
    line-height: 1;
    letter-spacing: -0.05rem;
}

.rating-value {
    font-weight: 600;
    color: var(--ink-soft);
    font-size: 0.8rem;
}

.hotel-rating .reviews {
    font-size: 0.75rem;
    color: var(--mute-2);
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--forest);
}

.rating-line {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hotel-price-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--line-soft);
}

.hotel-price {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}

.price-label {
    font-size: 0.75rem;
    color: var(--mute);
    font-weight: 500;
}

.price-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--forest);
}

.price-unit {
    font-size: 0.75rem;
    color: var(--mute);
    font-weight: 500;
}

.view-details-btn {
    display: inline-block;
    padding: 0.45rem 0.85rem;
    background-color: var(--forest);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.view-details-btn:hover {
    background-color: var(--forest-2);
    box-shadow: 0 4px 12px rgba(23, 166, 151, 0.3);
    transform: translateY(-2px);
}

.agoda-logo-container {
    position: relative;
    display: inline-block;
}

.agoda-logo-container .tooltip-text {
    visibility: hidden;
    width: 120px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    bottom: 130%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateY(10px);
}

.agoda-logo-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.agoda-logo-container .tooltip-text {
    visibility: hidden;
    width: 120px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    bottom: 130%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateY(10px);
}

.agoda-logo-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* Tablet */
@media (max-width: 992px) {
    .container {
        display: flex;
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .map-container {
        width: 100%;
        height: 350px;
        margin-top: 2rem;
        position: relative;
        top: 0;
    }

    .hotel-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .area-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .faq-tab-buttons {
        flex-wrap: wrap;
        gap: 0.3rem;
    }

    .faq-tab-button {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}

/* Mobile landscape and portrait */
@media (max-width: 768px) {
    .container {
        padding: 0.8rem 0.5rem;
        gap: 1rem;
    }

    .search-hero {
        min-height: 30vh;
    }

    .search-hero-overlay {
        padding: 1rem;
        width: 90%;
    }

    .search-hero-overlay h1 {
        font-size: 1.5rem;
    }

    .search-box-large {
        gap: 0.8rem;
    }

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

    .hotel-card img {
        height: 180px;
    }

    .map-container {
        height: 300px;
    }

    .area-grid {
        grid-template-columns: 1fr;
    }

    .faq-section {
        margin-top: 1.5rem;
    }

    .faq-tab-buttons {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .faq-tab-buttons::-webkit-scrollbar {
        display: none;
    }

    .faq-tab-button {
        white-space: nowrap;
        font-size: 0.85rem;
        padding: 0.8rem 1rem;
    }

    .faq-tab-content {
        padding: 1rem;
    }

    .action-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .filter-button,
    .compare-button {
        width: 100%;
        text-align: center;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .map-container {
        height: 250px;
    }

    .hotel-card img {
        height: 160px;
    }

    .hotel-info {
        padding: 0.8rem;
    }

    .hotel-info h3 {
        font-size: 1rem;
    }

    .breadcrumb-rating-container {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .breadcrumb-rating-container .hotel-breadcrumb {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 0.1rem;
        flex-basis: 100%;
    }

    .breadcrumb-rating-container .hotel-rating {
        margin-left: 0;
    }

    .breadcrumb {
        font-size: 0.7rem;
    }

    .price {
        font-size: 1rem;
    }

    .pagination {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.3rem;
    }

    .pagination a, .pagination-btn {
        padding: 0.5rem 0.7rem;
        font-size: 0.85rem;
    }

    .filter-content {
        width: 95%;
        padding: 1.5rem;
    }

    .filter-group h3 {
        font-size: 1rem;
    }
}

.loader {
  width: 60px;
  aspect-ratio: 2;
  --_g: no-repeat radial-gradient(circle closest-side,#000 90%,#0000);
  background: 
    var(--_g) 0%   50%,
    var(--_g) 50%  50%,
    var(--_g) 100% 50%;
  background-size: calc(100%/3) 50%;
  animation: l3 1s infinite linear;
}
 @keyframes l3 {
    20%{background-position:0%   0%, 50%  50%,100%  50%}
    40%{background-position:0% 100%, 50%   0%,100%  50%}
    60%{background-position:0%  50%, 50% 100%,100%   0%}
    80%{background-position:0%  50%, 50%  50%,100% 100%}
}

.breadcrumb a,
.hotel-info h3 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.breadcrumb a:hover,
.hotel-info h3 a:hover {
    color: var(--forest);
}
/* ============================================
   Weather & Climate Section Styles
   ============================================ */

.weather-section {
    background: var(--paper);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.weather-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--ink-soft);
    border-bottom: 3px solid var(--ochre);
    padding-bottom: 10px;
}

.weather-section h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: #444;
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.season-card {
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.2s;
}

.season-card:hover {
    transform: translateY(-5px);
}

.season-card.dry {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.season-card.wet {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.season-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--ink-soft);
}

.season-card .months {
    font-size: 0.9rem;
    margin: 8px 0;
    opacity: 0.8;
    color: var(--mute);
}

.season-card .temp {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 15px 0;
    color: var(--ink-soft);
}

.month-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
    justify-content: center;
}

.month-btn {
    padding: 8px 16px;
    border: 2px solid var(--ochre);
    background: var(--paper);
    color: var(--ochre);
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.month-btn:hover,
.month-btn.active {
    background: var(--ochre);
    color: white;
}

.month-details {
    padding: 20px;
    background: var(--cream);
    border-radius: 8px;
    margin: 20px 0;
}

.month-details h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--ink-soft);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.stat-box {
    background: var(--paper);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--ink-soft);
    margin: 5px 0;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--mute);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.packing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin: 20px 0;
}

.packing-section {
    background: var(--cream);
    padding: 20px;
    border-radius: 8px;
}

.packing-section h4 {
    margin-bottom: 15px;
    color: var(--ink-soft);
    font-size: 1.1rem;
}

.packing-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.packing-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--line-soft);
    color: var(--mute);
}

.packing-list li:last-child {
    border-bottom: none;
}

.packing-list li:before {
    content: "✓ ";
    color: var(--ochre);
    font-weight: bold;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .weather-section {
        padding: 20px 15px;
    }
    
    .seasons-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .packing-grid {
        grid-template-columns: 1fr;
    }
    
    .month-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* City Overview Section */
.city-overview-section {
    max-width: 1000px;
    margin: 30px auto;
    padding: 25px;
    background: var(--cream);
    border-radius: 8px;
    line-height: 1.7;
}
.city-overview-section h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--ink-soft);
}
.city-overview-section h3 {
    font-size: 1.2rem;
    margin: 20px 0 10px;
    color: #444;
}
.city-overview-section p {
    color: var(--mute);
    margin-bottom: 12px;
}
.btn-view-guide {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: var(--forest);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}
.btn-view-guide:hover {
    background: var(--forest-2);
}

/* Accommodation Types Section */
.accommodation-types-section {
    width: 100%;
    max-width: 100%;
    margin-top: 2rem;
    margin-bottom: 2rem;
    box-sizing: border-box;
}

.accommodation-types-section h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--ink-soft);
}

.accommodation-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.accom-type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem 1rem;
    background: var(--paper);
    border: 1px solid var(--line-soft);
    border-radius: var(--r-lg, 14px);
    text-decoration: none;
    color: var(--ink-soft);
    transition: all 0.2s ease;
    text-align: center;
}

.accom-type-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--forest);
}

.accom-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.accom-label {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.accom-desc {
    font-size: 0.8rem;
    color: var(--mute-2);
}

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

@media (max-width: 480px) {
    .accommodation-types-grid {
        grid-template-columns: 1fr;
    }
}

/* Accommodation Intro */
.accommodation-intro {
    max-width: 1000px;
    margin: 20px auto;
    padding: 15px 20px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--mute);
}

/* ── Neighborhood Cards (Where to Stay section) ──────────── */
.neighborhood-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 16px;
    margin-bottom: 8px;
}

.neighborhood-card {
    background: var(--paper);
    border: 1px solid var(--line-soft);
    border-radius: var(--r-lg, 14px);
    padding: 20px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

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

.neighborhood-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}

.neighborhood-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--ink);
}

.neighborhood-price-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--ochre);
    background: rgba(200, 146, 74, 0.1);
    border: 1px solid rgba(200, 146, 74, 0.3);
    border-radius: var(--r-pill, 999px);
    padding: 3px 10px;
    white-space: nowrap;
    text-transform: capitalize;
}

.neighborhood-desc {
    font-size: 0.875rem;
    color: var(--mute);
    line-height: 1.6;
    margin: 0 0 12px;
}

.neighborhood-best-for {
    font-size: 0.8rem;
    color: var(--mute-2);
    padding-top: 10px;
    border-top: 1px solid var(--line-soft);
}

.best-for-label {
    font-weight: 600;
    color: var(--forest);
}

@media (max-width: 768px) {
    .neighborhood-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}
