

.no-results-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #ffffff;
    border-radius: 16px;
    padding: 64px 40px;
    margin: 0 auto;
}

.no-results-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1A1C1C;
    margin-bottom: 14px;
}

.no-results-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    color: #737A85;
    line-height: 1.6;
    max-width: 400px;
    margin-bottom: 32px;
}

.no-results-clear-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0080FF;
    color: #ffffff;
    border: none;
    border-radius: 2px;
    padding: 12px 32px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-bottom: 0;
}
.reset-reset-icon{
    background-color: #fff;
}
.no-results-clear-btn:hover {
    background: #006FDD;
}

.no-results-browse-link {
    background: none;
    border: none;
    color: #0080FF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.no-results-browse-link:hover {
    opacity: 0.75;
    text-decoration: underline;
}

/* ── Active filter pill ──────────────────────────────────────────── */

/* Quick-filter pills (top bar): filled blue */
.pill.is-active {
    background-color: #0080FF;
    border-color: #0080FF;
    color: #fff;
}

.pill.is-active .icon {
    background-color: #fff;
}

/* Filter-panel pills (inside sidebar): border-only blue */
.sidebar .pill.is-active {
    background-color: #fff;
    border-color: #0080FF;
    color: #0080FF;
}

.sidebar .pill.is-active .icon {
    background-color: #0080FF;
}

/* ── Swiper slide sizing ─────────────────────────────────────────── */
.package-data-swiper .swiper-slide {
    width: 434px;
    padding: 15px 10px;
    height: 666px !important;
}
@media screen and (max-width: 1550px) {

    .package-data-swiper .swiper-slide{
        height: 530px !important;
        padding:10px;
    }
}
@media screen and (max-width: 1080px) {
    .package-data-swiper .swiper-slide {
        height: 630px !important;
        width: 330px;
        padding: 10px 0 10px 10px;
    }
    .package-data-swiper .swiper-slide:last-child {
        width: 340px;
        padding-right: 10px;
    }
}



/* ── Dot carousel ────────────────────────────────────────────────── */
.package-data-swiper-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 6px auto 0;
    padding: 6px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 2px;
}

.package-data-swiper-dots.package-data-swiper-dots--windowed {
    width: var(--swiper-dots-visible-width) !important;
    max-width: var(--swiper-dots-visible-width) !important;
    overflow: hidden;
    justify-content: flex-start;
}

.package-data-swiper-dots-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 6px;
    transition: transform 0.3s ease;
    will-change: transform;
}

.package-data-swiper-dot {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background-color: #C4C4C4;
    flex-shrink: 0;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.package-data-swiper-dot--active {
    background-color: #868889;
    transform: scale(1.15);
}

/* ---- Deal Info Tooltip ---- */
.package-info {
    position: relative;
}

.deal-info-tooltip {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    padding-top: 6px;
    z-index: 200;
    box-sizing: border-box;
    white-space: normal;
}

.deal-info-tooltip-inner {
    position: relative;
    background: #EDF7ED;
    border: 1px solid #037801;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 16px 24px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: capitalize;
    color: #037801;
}

.package-info:hover .deal-info-tooltip,
.deal-info-tooltip:hover {
    display: block;
}

/* Close button — hidden on desktop */
.deal-info-close-btn {
    display: none;
    position: absolute;
    top: -8px;
    right: -8px;
    width: 16px;
    height: 16px;
    background: #037801;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #EDF7ED;
    font-size: 9px;
    line-height: 16px;
    text-align: center;
    padding: 0;
    align-items: center;
    justify-content: center;
}

/* Mobile / tablet (≤ 1079px): disable CSS hover so JS takes over */
@media (max-width: 1079px) {
    .package-info:hover .deal-info-tooltip,
    .deal-info-tooltip:hover,
    .search-card:has(.package-info:hover) .deal-info-tooltip-vertical,
    .deal-info-tooltip-vertical:hover {
        display: none !important;
    }
}

/* Body-level modal — always outside any transform/swiper container */
#deal-info-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 323px;
    max-width: calc(100% - 32px);
    z-index: 1000;
}
#deal-info-modal.is-active {
    display: block;
}
#deal-info-modal .deal-info-close-btn {
    display: flex;
}

/* Full-screen overlay */
#deal-info-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: #00000033;
    z-index: 999;
}
#deal-info-overlay.is-active {
    display: block;
}

/* ── Top Search Input Centering ──────────────────────────────────── */
.search-input-area input.search,
#searchInput {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    color: #6F7978 !important;
    width: 100% !important;
    height: 100% !important;
    flex: 1 !important;
    min-width: 0 !important;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    padding: 0 16px !important;
    margin: 0 !important;
    line-height: normal !important;
    box-sizing: border-box !important;
    vertical-align: middle !important;
}

#searchInput::placeholder {
    color: #6F7978 !important;
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-weight: 400 !important;
    line-height: normal !important;
    vertical-align: middle !important;
}

.top-content.search-focused input.search {
    color: #000000 !important;
}

.top-content.search-focused #searchInput::placeholder {
    color: #000000 !important;
    line-height: normal !important;
}
