.swiper-navigation {
    width: 105%;
    position: absolute;
    left: -2.5%;

    display: flex;
    justify-content: space-between;
    z-index: 999;
}

@media (max-width: 768px) {
    .swiper-navigation {
        width: 100%;
        left: 0;
    }
}

.listing-card-header {
    position: absolute;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
}

.action-favourite-btn {
    position: absolute;
    top: 5px;
    right: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    cursor: pointer;
    font-size: 1.25rem;
    color: #f1f1f1;
    transition: color 0.3s ease;
    z-index: 999;
}

.action-favourite-btn:hover {
    color: #dc3545;
}

.listing-actions {
    display: flex;
    gap: 0.5rem;
    padding: 0;
    /* border-top: 1px solid #e5e5e5; */
}

.listing-actions .action-btn {
    text-decoration: none;
    white-space: nowrap;
    font-size: 10px;
    font-weight: 500;
    background: transparent;
    color: var(--text-light);
    border: none;
    padding: 0;
    text-align: left;
    justify-content: flex-start;
}

.listing-actions .action-btn i {
    background: transparent;
    color: var(--text-light);
}

.stat-card .stat-icon i {
    font-size: 3rem;
    color: var(--primary);
}

.popularCitiesListingsSwiper .swiper-slide .listing-card {
    width: 100%;
    height: 80%;
}

.popularCitiesListingsSwiper {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    flex: 1;
    min-width: 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.popularCitiesListingsSwiper::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.popularCitiesListingsSwiper .swiper-wrapper {
    display: flex;
}

.popularCitiesListingsSwiper .swiper-slide {
    flex: 0 0 80%; /* 1.2 slides visible */
    scroll-snap-align: start;
    height: auto;
    display: flex;
}

@media (min-width: 576px) {
    .popularCitiesListingsSwiper .swiper-slide {
        flex: 0 0 calc((100% - 16px) / 2); /* 2 slides */
    }
}

@media (min-width: 768px) {
    .popularCitiesListingsSwiper .swiper-slide {
        flex: 0 0 calc((100% - 32px) / 3); /* 3 slides */
    }
}

@media (min-width: 1180px) {
    .popularCitiesListingsSwiper .swiper-slide {
        flex: 0 0 calc((100% - 48px) / 4); /* 4 slides */
    }
}

@media (min-width: 1200px) {

    .popularCitiesListingsSwiper .swiper-slide {
        flex: 0 0 calc((100% - 96px) / 5); /* 5 slides */
    }
}

.header {
    border: none !important;
}

.header.attop {
    position: absolute !important;
    background-color: transparent !important;
}

@media (max-width: 768px) {
    html {
        overflow-x: hidden;
    }
}

.header.attop .nav-link {
    color: #fff !important;
}

.header.attop .btn-outline {
    color: #fff !important;
    border-color: #fff !important;
}

.header.attop .btn-outline:hover {
    background: rgba(255,255,255,0.15) !important;
    color: #fff !important;
}

.header.attop .header-icon {
    color: #fff !important;
    background: rgba(255,255,255,0.15) !important;
    border-color: rgba(255,255,255,0.3) !important;
}

.header.attop .header-icon:hover {
    background: rgba(255,255,255,0.25) !important;
    color: #fff !important;
}

.header.attop .dropdown-toggle {
    color: #fff !important;
}

.header.attop .location-selector {
    color: #fff !important;
    background: rgba(255,255,255,0.15) !important;
}

.header.scrolled {
    position: fixed !important;
}

.header-container {
    display: flex;

    justify-content: space-between;
}

@media (max-width: 1180px) {
    .header-container.container {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    .header .nav-link {
        font-size: 0.78rem !important;
        padding: 0.4rem 0.35rem !important;
        white-space: nowrap !important;
    }
    .header .nav-menu {
        gap: 0 !important;
    }
    .header .logo img {
        width: 160px !important;
    }
    footer .logo img {
        width: 180px !important;
    }
    .header .btn-outline {
        padding: 0.35rem 0.6rem !important;
        font-size: 0.72rem !important;
    }
    .header .btn-primary {
        padding: 0.35rem 0.6rem !important;
        font-size: 0.72rem !important;
    }
    .header .header-buttons {
        gap: 0.3rem !important;
    }
}

.header-left {
    display: flex;
    width:75%;
    justify-content: space-between;
    gap: 0.75rem;

}

.header-right {
    display: flex;
    justify-content: flex-end;
}

.category-dropdown-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: space-between;
    overflow: hidden;
}

.category-dropdown-container select {
    width: 100%;
    max-width: 120px;
    height: 100% !important;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    font-size: 14px;
}


