/* Explore Our Suites Section */
.explore-suites-section {
    width: 100%;
    background: var(--ess-bg, #f4f4f1);
    padding: 64px 0 70px;
    overflow: hidden;
}

.explore-suites-section * {
    box-sizing: border-box;
}

.ess-shell {
    width: 100%;
    background: var(--ess-bg, #f4f4f1);
}

.ess-topbar {
    width: min(1220px, calc(100% - 80px));
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.ess-heading {
    margin: 0;
    color: var(--ess-heading, #111111);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(30px, 3.2vw, 44px);
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -0.045em;
}

.ess-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    padding-right: 10px;
}

.ess-arrow {
    border: 0;
    background: transparent;
    color: var(--ess-heading, #111111);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1;
    cursor: pointer;
    padding: 6px;
    transition: transform .2s ease, opacity .2s ease;
}

.ess-arrow:hover {
    transform: translateX(2px);
    opacity: .72;
}

.ess-prev:hover {
    transform: translateX(-2px);
}

.ess-carousel {
    width: 100%;
    overflow: hidden;
}

.ess-track {
    display: flex;
    gap: 24px;
    align-items: stretch;
    padding-left: max(40px, calc((100vw - 1220px) / 2));
    padding-right: 40px;
    will-change: transform;
    transition: transform .52s cubic-bezier(.22,.61,.36,1);
}

.ess-card {
    position: relative;
    flex: 0 0 var(--ess-card-width, 590px);
    width: var(--ess-card-width, 590px);
    height: var(--ess-card-height, 405px);
    border-radius: var(--ess-card-radius, 22px);
    overflow: hidden;
    background: #d8d8d2;
    isolation: isolate;
}

.ess-image-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ess-image,
.ess-image-fallback {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.ess-image-fallback {
    background:
        radial-gradient(circle at 30% 35%, rgba(255,255,255,.35), transparent 30%),
        linear-gradient(135deg, #b4c4c9, #d8d2c5 52%, #a6b0a0);
}

.ess-content-panel {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 0;
    z-index: 2;
    min-height: 148px;
    padding: 25px 22px 22px;
    border-radius: 18px 18px 16px 16px;
    background: var(--ess-panel-bg, rgba(238,238,235,0.88));
    color: var(--ess-text, #111111);
    backdrop-filter: blur(14px);
    box-shadow: 0 -12px 34px rgba(0,0,0,.08);
}

.ess-content-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: start;
}

.ess-suite-title {
    margin: 0;
    color: var(--ess-text, #111111);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(22px, 2vw, 28px);
    line-height: 1.05;
    font-weight: 650;
    letter-spacing: -0.045em;
}

.ess-suite-subtitle {
    margin: 7px 0 0;
    color: var(--ess-muted, #4f4f4f);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 400;
}

.ess-price {
    white-space: nowrap;
    color: var(--ess-text, #111111);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    text-align: right;
}

.ess-price span {
    font-size: clamp(34px, 3.2vw, 46px);
    line-height: .9;
    font-weight: 400;
    letter-spacing: -0.06em;
}

.ess-price small {
    font-size: 15px;
    font-weight: 600;
    margin-left: 3px;
}

.ess-bottom-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: end;
    margin-top: 17px;
}

.ess-amenities {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    gap: 8px 24px;
    color: var(--ess-text, #111111);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 13px;
    line-height: 1.1;
}

.ess-amenities li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.ess-amenities li span {
    width: 7px;
    height: 12px;
    border-radius: 2px;
    background: var(--ess-amenity-icon, #555555);
    display: inline-block;
}

.ess-actions {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.ess-heart {
    width: 51px;
    height: 36px;
    border-radius: 999px;
    border: 1.5px solid var(--ess-heart-border, #111111);
    background: var(--ess-heart-bg, rgba(255,255,255,0.52));
    color: var(--ess-text, #111111);
    display: grid;
    place-items: center;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.ess-heart.is-liked {
    background: #111111;
    color: #ffffff;
}

.ess-book-btn {
    height: 36px;
    min-width: 124px;
    padding: 0 17px 0 19px;
    border-radius: 999px;
    background: var(--ess-btn-bg, #111111);
    color: var(--ess-btn-text, #ffffff);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-decoration: none;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    line-height: 1;
    font-weight: 500;
    white-space: nowrap;
    transition: transform .2s ease, opacity .2s ease;
}

.ess-book-btn:hover,
.ess-heart:hover {
    transform: translateY(-2px);
}

@media (max-width: 1180px) {
    .ess-topbar {
        width: min(100% - 40px, 1220px);
    }

    .ess-track {
        padding-left: 20px;
        padding-right: 20px;
    }

    .ess-card {
        flex-basis: min(560px, 78vw);
        width: min(560px, 78vw);
    }
}

@media (max-width: 760px) {
    .explore-suites-section {
        padding: 44px 0 50px;
    }

    .ess-topbar {
        align-items: flex-start;
        margin-bottom: 16px;
    }

    .ess-nav {
        gap: 12px;
    }

    .ess-card {
        flex-basis: calc(100vw - 34px);
        width: calc(100vw - 34px);
        height: 430px;
    }

    .ess-content-panel {
        left: 10px;
        right: 10px;
        min-height: 178px;
        padding: 20px 16px 18px;
    }

    .ess-content-top,
    .ess-bottom-row {
        grid-template-columns: 1fr;
    }

    .ess-price {
        text-align: left;
    }

    .ess-actions {
        justify-content: space-between;
        width: 100%;
    }

    .ess-amenities {
        grid-template-columns: 1fr 1fr;
        gap: 8px 12px;
    }
}
