/* Base Styles */
.hotel-detail {
    --section-spacing: 64px;
    --content-spacing: 32px;
    --primary-color: #2563eb;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --border-color: #eef0f2;
    background-color: #f8f9fa;
    padding-bottom: var(--section-spacing);
    width: 100%;
    padding-top: 46px;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Section */
.hotel-hero {
    width: 100%;
    background: #fff;
    margin: 0;
    padding: 0;
}

/* Main image */
.main-image {
    width: 100%;
    height: 480px;
    position: relative;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: pan-y pinch-zoom;
    cursor: grab;
}

.main-image:active {
    cursor: grabbing;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    max-height: 480px;
}

/* Image Carousel */
.image-carousel {
    width: 100%;
    padding: 20px 40px;
    background: #fff;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.carousel-container {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    flex: 0 0 120px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    position: relative;
}

.carousel-item:focus-visible {
    outline: 3px solid #2563eb;
    opacity: 1;
}

.carousel-item.active {
    opacity: 1;
    border: 2px solid #2563eb;
}

.carousel-item:hover {
    opacity: 1;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation Arrows */
.carousel-nav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    color: #64748b;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.carousel-nav:hover {
    background: #f8fafc;
    color: #0f172a;
}

.carousel-nav:focus-visible {
    outline: 3px solid #2563eb;
    outline-offset: 2px;
}

.carousel-nav.prev {
    left: 0;
}

.carousel-nav.next {
    right: 0;
}

/* Hide arrows when no scrolling is needed */
@media (min-width: 1024px) {
    .carousel-container:not(.scrollable) ~ .carousel-nav {
        display: none;
    }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .image-carousel {
        padding: 16px 40px;
    }

    .carousel-item {
        flex: 0 0 100px;
        height: 67px;
    }
}

/* More photos overlay */
.more-photos-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
}

/* View all photos button */
.view-all-photos {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.view-all-photos:hover {
    background: #f8f8f8;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hotel-gallery {
        grid-template-columns: 1fr;
        height: 300px;
    }

    .gallery-item:not(:first-child) {
        display: none;
    }
}

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    cursor: pointer;
}

.image-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
}

.modal-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 1001;
}

/* Content Layout */
.hotel-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 24px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 48px;
}

/* Main Column */
.hotel-main {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* Title Section */
.hotel-title-section {
    padding: 0;
    margin-bottom: 0;
}

.hotel-title-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.hotel-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 16px 0;
}

.star-rating {
    display: flex;
    gap: 4px;
    color: #ffd700;
    font-size: 1.25rem;
}

.location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Services Section */
.services-section {
    padding: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.service-item {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Reviews Section */
.content-section {
    padding: 0;
    margin-bottom: 0;
}

.comments-list {
    margin-top: 40px;
}

.comment {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.comment:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f2f5;
}

.comment-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.comment-header time {
    font-size: 0.9rem;
    color: #718096;
    display: flex;
    align-items: center;
    gap: 6px;
}

.comment-header time::before {
    content: "•";
    color: #cbd5e0;
}

.comment p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Comment Form */
.comment-form {
    margin-top: 48px;
    background: #f8f9fa;
    padding: 32px;
    border-radius: 16px;
}

.form-group {
    margin-bottom: 24px;
}

/* Sidebar */
.hotel-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.booking-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.price-section {
    margin-bottom: 24px;
    text-align: center;
}

.price-label {
    display: block;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

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

.price .period {
    color: var(--text-light);
    font-size: 1rem;
}

.btn-book {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-book:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.booking-info {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.info-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Section Headers */
.hotel-main h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .content-grid {
        grid-template-columns: 1fr 300px;
        gap: 32px;
    }

    .main-image img {
        height: 450px;
    }

    .thumbnail img {
        height: 218px;
    }
}

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

    .main-image img {
        height: 400px;
    }

    .thumbnail-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .thumbnail img {
        height: 180px;
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hotel-hero {
        padding: 20px 0;
    }

    .main-image img {
        height: 300px;
    }

    .thumbnail-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .thumbnail img {
        height: 150px;
    }

    .hotel-content {
        padding: 0 16px;
        margin: 30px auto;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .main-image img {
        height: 250px;
    }

    .thumbnail-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .thumbnail img {
        height: 120px;
    }

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

    .hotel-title-section h1 {
        font-size: 1.75rem;
    }
}

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

.comment-header h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.comment-header time {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Comment Form Styles */
.comment-form-section {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    margin-top: 48px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.section-title {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f2f5;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group {
    margin: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #4a5568;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: #ffffff;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

button[type="submit"] {
    background: #3b82f6;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
}

button[type="submit"]:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .comment-form-section {
        padding: 24px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    button[type="submit"] {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Booking Card */
.mobile-booking-card {
    display: none;
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 32px;
    border: 1px solid #e2e8f0;
}

.mobile-booking-card .price-section {
    text-align: center;
    margin-bottom: 20px;
}

.mobile-booking-card .price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 12px 0;
}

.mobile-booking-card .amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.mobile-booking-card .period {
    color: var(--text-light);
    font-size: 0.9rem;
}

.mobile-booking-card .btn-book {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 16px;
}

.mobile-booking-card .cancellation-info {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.mobile-booking-card .cancellation-info i {
    color: #10B981;
    margin-right: 6px;
}

@media (max-width: 1024px) {
    .mobile-booking-card {
        display: block;
    }
    
    .hotel-sidebar {
        display: none;
    }
}

.hotel-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.hotel-gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hotel-gallery-item:hover {
    transform: scale(1.02);
}

.hotel-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Modal styles for image expansion */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    cursor: pointer;
}

.image-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
}

.modal-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.breadcrumb-nav {
    width: 100%;
    padding: 12px var(--spacing-md);
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.breadcrumb-nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 46px;
    display: flex;
    align-items: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: #64748b;
    font-size: 0.875rem;
    text-decoration: none;
}

.breadcrumb-item a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: #0f172a;
}

.breadcrumb-item:not(:last-child)::after {
    content: "/";
    margin: 0 8px;
    color: #94a3b8;
    font-size: 0.875rem;
}

.breadcrumb-item.active {
    color: #0f172a;
    font-weight: 500;
}

@media (max-width: 768px) {
    .breadcrumb-nav {
        padding: 10px 0;
    }
    
    .breadcrumb-nav .container {
        padding: 0 20px;
    }
    
    .breadcrumb-item {
        font-size: 0.8125rem;
    }
    
    .breadcrumb-item:not(:last-child)::after {
        margin: 0 6px;
        font-size: 0.8125rem;
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hotel-detail {
        padding-top: 42px;
    }
}

@media (max-width: 768px) {
    .hotel-detail {
        padding-top: 40px;
    }
    
    .breadcrumb-nav {
        padding: 0.08rem 0;
    }
    
    .breadcrumb-nav .container {
        min-height: 10px;
        padding: 0 46px;
    }
}

@media (max-width: 480px) {
    .hotel-detail {
        padding-top: 38px;
    }
}

/* Main image navigation */
.main-image {
    position: relative;
}

.main-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1a1a1a;
    transition: all 0.2s ease;
    z-index: 2;
}

.main-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.05);
}

.main-nav.prev {
    left: 20px;
}

.main-nav.next {
    right: 20px;
}

/* Hide on mobile */
@media (max-width: 768px) {
    .main-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .main-nav {
        display: none;
    }
}

/* Main image touch interactions */
.main-image {
    touch-action: pan-y pinch-zoom;
    cursor: grab;
}

.main-image:active {
    cursor: grabbing;
}

/* Update existing media query */
@media (max-width: 768px) {
    .main-image {
        height: 300px;
    }
    
    .main-image img {
        max-height: 300px;
        transition: transform 0.3s ease;
    }
    
    /* Show visual feedback during swipe */
    .main-image.swiping img {
        transform: scale(0.98);
    }
}

.rh-section {
    padding: 3rem 2rem;
    background-color: var(--bg-light);
}

.rh-container {
    max-width: 1200px;
    margin: 0 auto;
}

.rh-title {
    text-align: center;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

.rh-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    width: 100%;
}

.rh-item {
    width: calc(33.333% - 1.34rem);
    min-width: 280px;
    max-width: 320px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .rh-grid {
        gap: 1.5rem;
    }
    
    .rh-item {
        width: calc(50% - 0.75rem);
    }
}

@media (max-width: 640px) {
    .rh-grid {
        gap: 1.5rem;
    }
    
    .rh-item {
        width: 100%;
        max-width: 320px;
    }
    
    .rh-section {
        padding: 2rem 1rem;
    }
}

.rh-link {
    text-decoration: none;
    color: inherit;
}

.rh-image-wrapper {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}

.rh-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.rh-item:hover .rh-image {
    transform: scale(1.05);
}

.rh-info {
    padding: 1rem;
}

.rh-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.rh-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rh-stars {
    color: #ffd700;
    letter-spacing: 2px;
}

.rh-pricing {
    text-align: right;
}

.rh-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.rh-period {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .rh-grid {
        gap: 1.5rem;
    }
    
    .rh-item {
        flex: 0 0 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
}

@media (max-width: 480px) {
    .rh-item {
        flex: 0 0 100%;
        max-width: 300px;
    }
}

/* Cities List Section */
.cl-section {
    padding: 4rem 0;
    background-color: #fff;
    border-top: 1px solid var(--border-color);
}

.cl-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cl-title {
    text-align: center;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.cl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.cl-item {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
    display: block;
}

.cl-item:hover {
    transform: translateY(-5px);
}

.cl-image-wrapper {
    position: relative;
    padding-top: 66.67%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.cl-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cl-content {
    padding: 0.5rem;
}

.cl-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.cl-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.cl-count i {
    color: var(--primary);
}

@media (max-width: 768px) {
    .cl-section {
        padding: 3rem 0;
    }
    
    .cl-container {
        padding: 0 1rem;
    }
    
    .cl-grid {
        gap: 1.5rem;
    }
}

.cities-list {
    padding: 4rem 0;
    background-color: #fff;
    border-top: 1px solid var(--border-color);
}

.cities-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cities-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.city-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.city-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    border-color: var(--primary-color);
}

.city-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: var(--text-dark);
    font-weight: 500;
}

.hotel-count {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: normal;
    background-color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .cities-list {
        padding: 3rem 0;
    }
    
    .cities-container {
        padding: 0 1rem;
    }
    
    .cities-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .city-item {
        padding: 0.875rem 1.25rem;
    }
    
    .city-name {
        font-size: 1rem;
    }
    
    .hotel-count {
        font-size: 0.8125rem;
        padding: 0.2rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .cities-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
}
