.container-fluid.guest-portal.cities-page {
    max-width: 1250px;
    margin: 0 auto !important;
}
.mt-half {
    margin-top: 50px !important;
}
@media (min-width: 768px) {
    .mt-md-full {
        margin-top: 80px !important;
    }
}
.breadcrumb_section.bg_white.page-title-mini.visible-lg {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto !important;
    text-align: left;
}
.cities-page h1{
    line-height: 44px;
    font-weight: 700;
    margin-bottom: 24px;
    font-size: 36px;
    float: left;
}
.city-li{
    line-height: 24px;
    font-weight: normal;
    font-size: 16px;
    display: flex;
    margin-top: 24px;
}
.city-description{
    line-height: 24px;
    font-weight: normal;
    font-size: 16px;
}
/* Hero & categories slider shared styles */
.categories-section {
    margin-top: 35px;
}

.categories-scroll-container {
    position: relative;
    max-width: 95%;
    margin: 0 auto;
}

.categories-scroll {
    display: flex;
    justify-content: center;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    cursor: grab;
}

.categories-scroll.active {
    cursor: grabbing;
}

.categories-scroll::-webkit-scrollbar {
    display: none;
}

.category-item {
    flex: 0 0 auto;
    padding: 5px 10px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.95rem;
    height: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.category-item:hover {
    text-decoration: none;
    border-color: #0d9488;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.1);
}

.category-item.active {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    color: white;
    border-color: #0d9488;
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.2);
}

.category-item i {
    margin-right: 5px;
}