.hotel-cities-section {
    padding: 32px 0 38px;
    background: #fff;
    direction: rtl;
}

.hotel-cities-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.hotel-cities-title {
    margin: 0;
    color: #242424;
    font-size: 22px;
    font-weight: 800;
}

.hotel-cities-all {
    color: #1688f4;
    font-size: 14px;
    white-space: nowrap;
}

.hotel-cities-all:hover { color: #0872d2; }

.hotel-cities-list {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px;
}

.hotel-city-card {
    display: block;
    color: #292929;
    text-align: center;
}

.hotel-city-card:hover { color: #1688f4; }

.hotel-city-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    max-height: 225px;
    border-radius: 11px;
    object-fit: cover;
    background: #f1f3f5;
    transition: transform .2s ease, box-shadow .2s ease;
}

.hotel-city-card:hover .hotel-city-image {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(26, 115, 232, .16);
}

.hotel-city-name {
    display: block;
    margin-top: 13px;
    font-size: 16px;
    font-weight: 700;
}

.hotel-list-heading {
    margin: 6px 0 18px;
    font-size: 24px;
    font-weight: 800;
    color: #252525;
}

@media (max-width: 991px) {
    .hotel-cities-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 575px) {
    .hotel-cities-section { padding: 24px 0 28px; }
    .hotel-cities-title { font-size: 19px; }
    .hotel-cities-list {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        padding: 3px 1px 12px;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
    }
    .hotel-city-card { flex: 0 0 66%; scroll-snap-align: start; }
    .hotel-city-name { font-size: 15px; }
    .hotel-list-heading { font-size: 21px; }
}

