:root {
    --sal2-lime: #BFFF3A;
    --sal2-lime-hover: #AEEB25;
    --sal2-lime-soft: rgba(191, 255, 58, .17);
    --sal2-ink: #07111F;
    --sal2-navy: #101828;
    --sal2-text: #344054;
    --sal2-muted: #667085;
    --sal2-border: #E4E7EC;
    --sal2-surface: #F6F8FB;
    --sal2-white: #FFFFFF;
    --sal2-success: #17B26A;
    --sal2-radius: 24px;
    --sal2-shadow: 0 18px 48px rgba(16, 24, 40, .10);
}

.sal2-page,
.sal2-page *,
.sal2-page *::before,
.sal2-page *::after {
    box-sizing: border-box;
}

.sal2-page {
    min-height: 100vh;
    overflow: hidden;
    color: var(--sal2-text);
    background: var(--sal2-surface);
}

.sal2-page a {
    color: inherit;
    text-decoration: none;
}

.sal2-page img {
    display: block;
    max-width: 100%;
}

.sal2-container {
    width: min(1240px, calc(100% - 48px));
    margin-inline: auto;
}


/* HERO */

.sal2-hero {
    position: relative;
    isolation: isolate;
    min-height: 490px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
    background:
        linear-gradient(
            90deg,
            rgba(7, 17, 31, .97) 0%,
            rgba(7, 17, 31, .90) 45%,
            rgba(7, 17, 31, .48) 100%
        ),
        var(--sal2-city-image) center / cover no-repeat;
}

.sal2-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(
            circle at 76% 20%,
            rgba(191, 255, 58, .18),
            transparent 30%
        );
}

.sal2-hero__content {
    position: relative;
    z-index: 2;
    padding-top: 70px;
    padding-bottom: 78px;
}

.sal2-back {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .74);
    font-size: 13px;
    font-weight: 700;
}

.sal2-back:hover {
    color: var(--sal2-lime);
}

.sal2-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--sal2-lime);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .12em;
}

.sal2-eyebrow i {
    width: 30px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.sal2-hero h1 {
    max-width: 840px;
    margin: 18px 0 20px;
    color: white;
    font-size: clamp(45px, 5.5vw, 75px);
    line-height: .98;
    letter-spacing: -.055em;
}

.sal2-hero h1 strong {
    display: block;
    color: var(--sal2-lime);
}

.sal2-hero__content > p {
    max-width: 690px;
    margin: 0;
    color: rgba(255, 255, 255, .74);
    font-size: 18px;
    line-height: 1.7;
}

.sal2-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.sal2-hero__stats article {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 18px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 16px;
    background: rgba(7, 17, 31, .74);
    backdrop-filter: blur(14px);
}

.sal2-hero__stats article > span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: var(--sal2-ink);
    background: var(--sal2-lime);
    font-weight: 900;
}

.sal2-hero__stats strong,
.sal2-hero__stats small {
    display: block;
}

.sal2-hero__stats strong {
    color: white;
    font-size: 18px;
}

.sal2-hero__stats small {
    margin-top: 3px;
    color: rgba(255, 255, 255, .62);
    font-size: 11px;
}


/* MAIN GRID */

.sal2-main {
    padding: 76px 0 105px;
}

.sal2-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}


/* CARD */

.sal2-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--sal2-border);
    border-radius: var(--sal2-radius);
    background: white;
    box-shadow: 0 9px 30px rgba(16, 24, 40, .06);
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.sal2-card:hover {
    border-color: rgba(125, 169, 0, .28);
    box-shadow: var(--sal2-shadow);
    transform: translateY(-7px);
}

.sal2-card__media {
    position: relative;
    height: 235px;
    overflow: hidden;
    background: #DCE3EA;
}

.sal2-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.sal2-card:hover .sal2-card__media img {
    transform: scale(1.05);
}

.sal2-card__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(7, 17, 31, .65),
            transparent 58%
        );
}

.sal2-verified,
.sal2-rating {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .22);
    color: white;
    background: rgba(7, 17, 31, .79);
    backdrop-filter: blur(11px);
}

.sal2-verified {
    left: 15px;
    top: 15px;
    gap: 7px;
    padding: 8px 11px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
}

.sal2-verified b {
    color: var(--sal2-lime);
}

.sal2-rating {
    right: 15px;
    bottom: 15px;
    padding: 8px 10px;
    border-radius: 10px;
    color: var(--sal2-lime);
    font-size: 11px;
    font-weight: 850;
}

.sal2-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.sal2-card__title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.sal2-area {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 7px;
    color: var(--sal2-muted);
    font-size: 12px;
    font-weight: 700;
}

.sal2-area span {
    color: #769F00;
}

.sal2-card h2 {
    margin: 0;
    color: var(--sal2-ink);
    font-size: 25px;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.sal2-price {
    flex: 0 0 auto;
    text-align: right;
}

.sal2-price span,
.sal2-price strong,
.sal2-price small {
    display: block;
}

.sal2-price span,
.sal2-price small {
    color: var(--sal2-muted);
    font-size: 9px;
    font-weight: 650;
}

.sal2-price strong {
    margin: 3px 0;
    color: #648900;
    font-size: 19px;
    font-weight: 900;
}

.sal2-description {
    min-height: 68px;
    margin: 18px 0;
    color: var(--sal2-muted);
    font-size: 13px;
    line-height: 1.6;
}

.sal2-status-row {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.sal2-hours,
.sal2-capacity {
    min-width: 0;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 12px;
    background: #F2F4F7;
}

.sal2-hours > span {
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #98A2B3;
}

.sal2-hours.is-open {
    background: rgba(23, 178, 106, .10);
}

.sal2-hours.is-open > span {
    background: var(--sal2-success);
    box-shadow: 0 0 0 4px rgba(23, 178, 106, .11);
}

.sal2-hours small,
.sal2-hours strong,
.sal2-capacity small,
.sal2-capacity strong {
    display: block;
}

.sal2-hours small,
.sal2-capacity small {
    color: var(--sal2-muted);
    font-size: 9px;
}

.sal2-hours strong,
.sal2-capacity strong {
    margin-top: 3px;
    color: var(--sal2-ink);
    font-size: 11px;
}

.sal2-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin: 18px 0;
    color: #52606D;
    font-size: 10px;
    font-weight: 700;
}

.sal2-actions {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 10px;
    margin-top: auto;
}

.sal2-button {
    min-height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 11px 15px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 850;
    transition:
        transform .2s ease,
        background .2s ease,
        border-color .2s ease;
}

.sal2-button:hover {
    transform: translateY(-2px);
}

.sal2-button--primary {
    color: var(--sal2-ink);
    background: var(--sal2-lime);
    box-shadow: 0 10px 25px rgba(191, 255, 58, .18);
}

.sal2-button--primary:hover {
    background: var(--sal2-lime-hover);
}

.sal2-button--secondary {
    color: var(--sal2-ink);
    border: 1px solid var(--sal2-border);
    background: white;
}

.sal2-button--secondary:hover {
    border-color: var(--sal2-lime);
    background: var(--sal2-lime-soft);
}


/* EMPTY */

.sal2-empty {
    padding: 80px 25px;
    border: 1px dashed #C9D3DD;
    border-radius: 25px;
    background: white;
    text-align: center;
}

.sal2-empty > span {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    margin: 0 auto 19px;
    border-radius: 20px;
    color: #658A00;
    background: var(--sal2-lime-soft);
    font-size: 30px;
}

.sal2-empty h2 {
    margin: 0 0 10px;
    color: var(--sal2-ink);
}

.sal2-empty p {
    max-width: 570px;
    margin: auto;
    color: var(--sal2-muted);
}


/* PAGINATION */

.sal2-pagination {
    margin-top: 42px;
}

.sal2-pagination nav {
    display: flex;
    justify-content: center;
}


/* RESPONSIVE */

@media (max-width: 1080px) {
    .sal2-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .sal2-container {
        width: calc(100% - 28px);
    }

    .sal2-hero {
        min-height: auto;
    }

    .sal2-hero__content {
        padding-top: 55px;
        padding-bottom: 65px;
    }

    .sal2-hero h1 {
        font-size: clamp(42px, 13vw, 60px);
    }

    .sal2-hero__stats {
        display: grid;
        grid-template-columns: 1fr;
    }

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

    .sal2-card__media {
        height: 245px;
    }

    .sal2-main {
        padding: 55px 0 80px;
    }
}

@media (max-width: 440px) {
    .sal2-card__body {
        padding: 20px;
    }

    .sal2-card__title-row {
        display: block;
    }

    .sal2-price {
        margin-top: 13px;
        text-align: left;
    }

    .sal2-status-row {
        display: grid;
    }

    .sal2-actions {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   CITY HERO STATS — UNIFIED LINE ICONS
   ========================================================= */

.sal2-hero__stats article > span svg {
    width: 21px;
    height: 21px;
    display: block;
}

.sal2-hero__stats article > .sal2-currency-icon {
    font-size: 16px;
    font-weight: 850;
}



/* =========================================================
   CITY LOCATION CARDS — SINGLE BOOKING CTA
   ========================================================= */

.sal2-page .sal2-actions {
    grid-template-columns: 1fr !important;
}

.sal2-page .sal2-button--primary {
    width: 100%;
    min-height: 52px;
}



/* =========================================================
   BOOKING CTA — FULL WIDTH FINAL
   ========================================================= */

.sal2-page .sal2-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
}

.sal2-page .sal2-button--primary {
    width: 100% !important;
    min-height: 52px !important;
}

.sal2-page .sal2-button--secondary {
    display: none !important;
}

