/* Center empty destination slide */
.empty-destination-slide {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: auto !important;
}

.empty-destination-content {
    text-align: center;
    width: 100%;
    max-width: 100%;
}
   
.empty-destination-img {
    max-width: 200px;
    margin: 0 auto 20px;
    display: block;
}

.empty-destination-card {
    margin: 0 auto;
    max-width: 600px;
    min-height: auto !important;
    max-height: none !important;
    height: auto !important;
}

/* Reduce spacing when empty state is shown */
.home1-destination-slider:has(.empty-destination-slide) {
    margin-bottom: 20px !important;
    min-height: auto !important;
}

.home1-destination-slider .swiper-wrapper:has(.empty-destination-slide) {
    min-height: auto !important;
    height: auto !important;
}

/* Hide pagination when empty state is shown */
.tab-pane.active:has(.empty-destination-slide) .slider-pagi-wrap {
    display: none !important;
}

/* Reduce section margin when active tab has no destinations */
.home1-destination-section:has(.tab-pane.active .empty-destination-slide) {
    margin-bottom: 60px !important;
}

@media (max-width: 991px) {
    .home1-destination-section:has(.tab-pane.active .empty-destination-slide) {
        margin-bottom: 50px !important;
    }
}

@media (max-width: 767px) {
    .home1-destination-section:has(.tab-pane.active .empty-destination-slide) {
        margin-bottom: 40px !important;
    }
}

