/* Hotel Packages — teaser (dark) + lightbox (booking style) */

/* Standalone block below ticket box */
.tickets-main-container:has(+ .hotel-packages-mount) {
    margin-bottom: 1.25rem !important;
}

.hotel-packages-mount {
    width: 100%;
    margin: 0 0 3rem;
    padding: 0;
    position: relative;
    z-index: 5;
    box-sizing: border-box;
}

.hp-teaser {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        radial-gradient(110% 120% at 100% 0%, rgba(238, 118, 76, 0.28) 0%, transparent 52%),
        linear-gradient(155deg, rgba(14, 14, 14, 0.92) 0%, rgba(6, 6, 6, 0.96) 100%);
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
}

.hp-teaser__inner {
    padding: clamp(1.5rem, 3.2vw, 2.1rem) clamp(1.35rem, 3vw, 2rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.hp-teaser__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.hp-teaser__eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #EE764C;
    box-shadow: 0 0 10px rgba(238, 118, 76, 0.8);
}

.hp-teaser__title {
    margin: 0;
    width: 100%;
    text-align: left;
    font-family: 'Urban Shadow', 'Impact', 'Arial Black', sans-serif;
    font-size: clamp(1.75rem, 3.8vw, 2.5rem);
    line-height: 1.05;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
}

.hp-teaser__sub {
    margin: 0;
    width: 100%;
    text-align: left;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(0.84rem, 1.25vw, 0.98rem);
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.78);
    max-width: none;
    white-space: nowrap;
}

.hp-teaser__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    justify-content: flex-start;
    width: 100%;
}

.hp-teaser__chip {
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    font-family: 'DIN Condensed', 'Barlow Condensed', 'Arial Narrow', sans-serif;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.hp-teaser__chip--sold {
    opacity: 0.45;
    text-decoration: line-through;
}

.hp-teaser__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 0.35rem;
    width: 100%;
}

.hp-teaser__cta {
    appearance: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.82rem 1.25rem;
    border-radius: 999px;
    background: #EE764C;
    color: #111;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hp-teaser__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(238, 118, 76, 0.35);
    background: #ff8a62;
}

.hp-teaser__cta svg {
    width: 16px;
    height: 16px;
}

.hp-teaser__note {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.48);
    letter-spacing: 0.02em;
    line-height: 1.4;
}

/* Body scroll lock (iOS-safe) */
body.hp-lightbox-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
}

/* Lightbox */
.hp-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.65rem, 2vw, 1.25rem);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.hp-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hp-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hp-lightbox__panel {
    position: relative;
    width: min(1120px, 100%);
    max-height: min(92dvh, 920px);
    border-radius: 16px;
    background: rgba(10, 10, 10, 0.97);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.65);
    transform: translateY(18px) scale(0.98);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

#hotel-packages-lightbox-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
}

.hp-lightbox.is-open .hp-lightbox__panel {
    transform: translateY(0) scale(1);
}

.hp-lightbox__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.hp-lightbox__title-wrap h2 {
    margin: 0;
    font-family: 'Urban Shadow', 'Impact', 'Arial Black', sans-serif;
    font-size: clamp(1.25rem, 4vw, 1.65rem);
    font-weight: 400;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.05;
}

.hp-lightbox__title-wrap p {
    margin: 0.35rem 0 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.35;
}

.hp-lightbox__close {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.85);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
    touch-action: manipulation;
}

.hp-lightbox__close:hover {
    background: rgba(238, 118, 76, 0.15);
    border-color: rgba(238, 118, 76, 0.45);
    color: #EE764C;
}

.hp-lightbox__tabs {
    display: flex;
    gap: 0.45rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-shrink: 0;
}

.hp-lightbox__tabs::-webkit-scrollbar { display: none; }

.hp-tab {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 999px;
    padding: 0.5rem 0.95rem;
    font-family: 'DIN Condensed', 'Barlow Condensed', 'Arial Narrow', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    touch-action: manipulation;
    flex-shrink: 0;
}

.hp-tab.is-active {
    background: #EE764C;
    border-color: #EE764C;
    color: #111;
}

.hp-tab.is-sold {
    opacity: 0.5;
}

.hp-lightbox__body {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 1rem;
    flex: 1 1 auto;
    min-height: 0;
}

.hp-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 0;
    min-height: 0;
}

.hp-card__gallery {
    padding: 0.85rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    min-width: 0;
}

.hp-card__main-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #d1d5db 0%, #9ca3af 100%);
}

.hp-card__main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hp-card__badge {
    position: absolute;
    top: 0.55rem;
    left: 0.55rem;
    padding: 0.28rem 0.55rem;
    border-radius: 6px;
    background: #EE764C;
    color: #111;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hp-card__thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.35rem;
}

.hp-thumb {
    appearance: none;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.08);
    touch-action: manipulation;
}

.hp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hp-thumb.is-active {
    border-color: #EE764C;
}

.hp-card__info {
    padding: 1rem 1rem 1rem 0.95rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    min-width: 0;
}

.hp-card__hotel-name {
    margin: 0 0 0.35rem;
    font-family: 'Heavitas', 'Arial Black', 'Impact', sans-serif;
    font-size: clamp(1.1rem, 3.5vw, 1.35rem);
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #fff;
}

.hp-card__stars {
    color: #EE764C;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.65rem;
}

.hp-card__desc {
    margin: 0 0 0.85rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
}

.hp-card__includes-title {
    margin: 0 0 0.55rem;
    font-family: 'DIN Condensed', 'Barlow Condensed', 'Arial Narrow', sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.52);
}

.hp-card__includes {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.45rem;
}

.hp-card__includes li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.86rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.88);
}

.hp-card__includes li::before {
    content: '';
    width: 16px;
    height: 16px;
    margin-top: 0.1rem;
    flex-shrink: 0;
    background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23EE764C' stroke-width='2.5'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}

.hp-card__pricing {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    background: rgba(0, 0, 0, 0.28);
    min-width: 0;
}

.hp-card__pricing-title {
    margin: 0;
    font-family: 'DIN Condensed', 'Barlow Condensed', 'Arial Narrow', sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.52);
}

.hp-card__prices {
    display: grid;
    gap: 0.45rem;
}

.hp-price-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.65rem;
    padding: 0.65rem 0.7rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.hp-price-row--sold {
    opacity: 0.55;
}

.hp-price-row--sold .hp-price-row__amount {
    text-decoration: line-through;
}

.hp-price-row__top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.65rem;
}

.hp-price-row__label {
    font-family: 'Heavitas', 'Arial Black', 'Impact', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.hp-price-row__amount {
    font-family: 'DIN Condensed', 'Barlow Condensed', 'Arial Narrow', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.hp-price-row__amount small {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hp-book-btn {
    appearance: none;
    border: none;
    cursor: pointer;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: #EE764C;
    color: #111;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    touch-action: manipulation;
}

.hp-book-btn:hover {
    background: #ff8a62;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(238, 118, 76, 0.28);
}

.hp-book-btn.is-disabled,
.hp-book-btn:disabled {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.38);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.hp-card__book {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
    padding-top: 0.25rem;
}

.hp-book-btn--main {
    width: auto;
    min-width: 9.5rem;
    padding: 0.72rem 1.25rem;
    font-size: 0.88rem;
}

.hp-card__trust {
    margin-top: auto;
    padding-top: 0.55rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.12);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.72rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.48);
}

.hp-lightbox__benefits {
    margin-top: 0.85rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hp-lightbox__benefits h3 {
    margin: 0 0 0.45rem;
    font-family: 'DIN Condensed', 'Barlow Condensed', 'Arial Narrow', sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.52);
}

.hp-lightbox__benefits ul {
    margin: 0;
    padding-left: 1.1rem;
    display: grid;
    gap: 0.3rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.84rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 960px) {
    .hp-card {
        grid-template-columns: 1fr;
    }

    .hp-card__gallery,
    .hp-card__info,
    .hp-card__pricing {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .hp-card__pricing {
        border-bottom: none;
    }

    .hp-card__thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .hotel-packages-mount {
        margin-bottom: 2rem;
    }

    .hp-teaser__inner {
        padding: 1.35rem 1.15rem;
        gap: 0.85rem;
    }

    .hp-teaser__title {
        font-size: clamp(1.45rem, 7vw, 1.85rem);
    }

    .hp-teaser__sub {
        white-space: normal;
        font-size: clamp(0.88rem, 3.2vw, 0.98rem);
    }

    .hp-teaser__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
    }

    .hp-teaser__cta {
        width: 100%;
        justify-content: center;
    }

    .hp-teaser__note {
        text-align: left;
    }

    .hp-lightbox {
        padding: 0;
        align-items: flex-end;
    }

    .hp-lightbox__panel {
        width: 100%;
        max-height: 94dvh;
        max-height: 94vh;
        border-radius: 16px 16px 0 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
    }

    .hp-lightbox__header {
        padding: 0.85rem 1rem;
        padding-top: calc(0.85rem + env(safe-area-inset-top, 0px));
    }

    .hp-lightbox__title-wrap h2 {
        font-size: 1.35rem;
        padding-right: 0.25rem;
    }

    .hp-lightbox__tabs {
        padding: 0.65rem 0.85rem;
    }

    .hp-lightbox__body {
        padding: 0.85rem;
        padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    }

    .hp-card__gallery,
    .hp-card__info,
    .hp-card__pricing {
        padding: 0.85rem;
    }

    .hp-card__thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hp-book-btn--main {
        width: auto;
        min-width: 9.5rem;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}
