/* ============================================================
   Deal Page — scoped styles
   All selectors are prefixed with .deal-page to avoid global
   collisions with PackagePage / other new-experience styles.
   ============================================================ */

/* Prevent layout shift when modals lock background scroll */
html {
    scrollbar-gutter: stable;
}

body.dp-modal-active {
    /* Do not set overflow:hidden on body — it breaks position:sticky on .dp-side-col */
    touch-action: none;
    overscroll-behavior: none;
}

/* Keep booking sidebar pinned in place while modals are open (see dealpage.js freeze) */
body.dp-modal-active .deal-page .dp-side-col.dp-side-col--frozen {
    position: fixed !important;
    z-index: 1;
    margin-top: 0 !important;
    align-self: auto !important;
}

/* ---- CSS custom properties (deal-page scope) ------------- */
.deal-page {
    /* Canonical DealPage tokens */
    --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-section-title: 'Noto Serif', ui-serif, Georgia, 'Times New Roman', serif;
    --font-section-title-size: 24px;
    --font-section-title-leading: 40px;
    --font-section-title-weight: 400;
    --color-section-title: #1A1C1C;

    --color-page-bg: #F9F9F9;
    --color-surface: #FFFFFF;
    --color-ink-08: rgba(26, 28, 28, 0.08);
    --color-brand-blue-border-soft: rgba(0, 128, 255, 0.12);

    --color-text-heading: #1a1a1a;
    --color-text-strong: #1A1C1C;
    --color-text-muted: #6F7978;
    --color-text-secondary: #5A6A7D;
    --color-text-on-dark: #FFFFFF;

    --color-btn-speak: #039E00;
    --color-btn-speak-hover: #038601;
    --color-btn-speak-text: #FFFFFF;

    --color-explore-border: #BEC9C8;
    --color-explore-fill: #FFFFFF;

    --radius-ui: 2px;
    --border-ui: 1px;

    --color-brand-blue: #0080FF;
    --color-brand-blue-hover: #0066cc;
    --color-brand-blue-soft: #F2F9FF;
    --color-brand-blue-light: #31b6ff;
    --color-date-card-blue: #007bff;
    --color-date-hover-tint: #e6f7ff;
    --color-date-hover-border: #57b5ff;

    --color-success: #039E00;
    --color-success-hover: #038601;
    --color-success-solid: #00A600;

    --color-accent-warm: #0080FF;

    --color-neutral-50: #f8f9fa;
    --color-neutral-200: #e5e7eb;
    --color-neutral-500: #6b7280;
    --color-neutral-900: #111827;
    --color-quote-surface: #f5f6f8;
    --color-scrollbar-thumb: #cbd5e1;
    --color-facilities-panel: #F3F3F3;

    --color-cta-gradient-from: #003B24;
    --color-cta-gradient-to: #B39D73;

    --shadow-card: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-footer-lift: 0 -4px 10px rgba(0, 0, 0, 0.05);
    --shadow-nav-soft: 0 4px 10px rgba(0, 0, 0, 0.02);
    --shadow-nav-sticky-rail: 0 2px 8px rgba(17, 24, 39, 0.07);
    --shadow-form-soft: 0 2px 10px rgba(0, 0, 0, 0.03);

    /* Compatibility alias layer for existing DealPage variables */
    --dp-primary: var(--color-text-strong);
    --dp-accent: var(--color-accent-warm);
    --dp-accent-light: var(--color-brand-blue-soft);
    --dp-text: var(--color-text-strong);
    --dp-text-muted: var(--color-text-muted);
    --dp-surface: var(--color-surface);
    --dp-surface-alt: var(--color-page-bg);
    --dp-border: var(--color-neutral-200);
    --dp-success: var(--color-success);
    --dp-radius: var(--radius-ui);
    --dp-radius-sm: var(--radius-ui);
    --dp-radius-lg: var(--radius-ui);
    --dp-shadow: var(--shadow-card);
    --dp-shadow-lg: var(--shadow-nav-sticky-rail);
    --dp-transition: .25s ease;
    --dp-booking-sticky-gap: 24px;
    --dp-sticky-nav-measured-height: 53px;
    --dp-sticky-nav-stack-height: 0px;
    --dp-sticky-top: calc(var(--cnt-strip-height, 0px) + var(--dp-sticky-nav-stack-height) + var(--dp-booking-sticky-gap));
    --dp-sticky-stack-duration: 0.35s;
    --dp-sticky-stack-ease: ease;
    --dp-sticky-stack-transition: var(--dp-sticky-stack-duration) var(--dp-sticky-stack-ease);
    /* Main content column + aligned full-width blocks (banners, etc.) */
    --dp-layout-max: 1280px;
    --dp-gutter-inline-mobile: 16px;
    --dp-section-stack-gap-mobile: 60px;
    --dp-gutter-inline-tablet: 24px;
    --dp-gutter-tablet: clamp(24px, calc(24px + (100vw - 600px) * 36 / 424), 60px);
    /* 1025–1327px: viewport narrower than centered 1280px shell — match tablet-style side inset */
    --dp-gutter-desktop: clamp(24px, calc(24px + (100vw - 1025px) * 36 / 255), 60px);
    --dp-breadcrumb-font-mobile: clamp(10px, 2.8vw, 12px);
    --dp-breadcrumb-line-mobile: clamp(13px, 3.5vw, 15px);

    --dp-nav-bg: var(--color-surface);
    --dp-nav-border: var(--color-neutral-200);
    --dp-nav-text: #404040;
    --dp-nav-text-hover: var(--color-text-strong);
    --dp-nav-active: var(--color-brand-blue);
    --dp-nav-underline: 6px;
    --dp-deal-cta-blue: var(--color-brand-blue);
    --dp-deal-cta-blue-hover: var(--color-brand-blue-hover);
    --dp-deal-cta-green: var(--color-btn-speak);
    --dp-deal-cta-green-hover: var(--color-btn-speak-hover);
    --dp-rating-pill-bg: var(--color-brand-blue-soft);
    font-family: inherit;
    color: var(--dp-text);
    background: var(--dp-surface-alt);
}

.deal-page.is-sticky-stack-pinned {
    --dp-sticky-nav-stack-height: var(--dp-sticky-nav-measured-height);
}

@media (prefers-reduced-motion: reduce) {
    .deal-page .dp-side-col {
        transition: none;
    }
}

/* ---- Icon sizing utilities -------------------------------- */
.deal-page .deal-icon--xs  { width: 12px; height: 12px; }
.deal-page .deal-icon--sm  { width: 14px; height: 14px; }
.deal-page .deal-icon--md  { width: 20px; height: 20px; }
.deal-page .deal-icon--lg  { width: 24px; height: 24px; }
.deal-page .deal-icon--xl  { width: 32px; height: 32px; }
.deal-page .deal-icon--xxl { width: 48px; height: 48px; }

/* dealpagelocation.svg is 24×24 with inset pin; render full artboard */
.deal-page .icon.deal-page-location-icon {
    aspect-ratio: 1;
    flex-shrink: 0;
    -webkit-mask-size: contain !important;
    mask-size: contain !important;
    mask-position: center;
    background-color: #6F7978;
}

/* ---- Layout shell ---------------------------------------- */
.deal-page { display: block; padding-top: 90px; }

.deal-page .dp-section {
    background: #F9F9F9;
    border-radius: var(--dp-radius);
    margin: 47px 0 16px;
    overflow: hidden;
}

/* Hero dots are runtime-generated; keep overrides global. */
.deal-page .dp-hero {
    --dp-hero-dot-gap: 6px;
}
.deal-page .dp-hero .dp-hero__dots.dp-hero__dots--windowed {
    width: var(--dp-hero-dots-visible-width) !important;
    max-width: var(--dp-hero-dots-visible-width) !important;
    overflow: hidden;
    justify-content: flex-start;
}
.deal-page .dp-hero .dp-hero__dots-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: var(--dp-hero-dot-gap);
    transition: transform 0.3s ease;
    will-change: transform;
}
.deal-page .dp-hero .dp-hero__dot {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background-color: #fff;
    opacity: 1;
    margin: 0;
    flex-shrink: 0;
    transition: background-color 0.25s ease, transform 0.25s ease;
}
.deal-page .dp-hero .dp-hero__dot--active {
    background-color: #0080ff;
    transform: scale(1.15);
}

.deal-page .dp-section--alt { background: var(--dp-surface-alt); }

.deal-page .dp-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 24px 24px 0 0;
}
.deal-page .dp-section-header h2 {
    font-size: 24px;
    font-weight: 400;
    font-family: "Noto Serif", ui-serif, Georgia, "Times New Roman", serif;
    color: var(--dp-primary);
    margin: 0;
}

/* Desktop grid (content + sidebar) */
/* Base: 2-col from 600px+ */
@media (min-width: 600px) {
    .deal-page .dp-desktop-grid {
        display: grid;
        gap: 16px;
        align-items: start;
    }
    .deal-page .dp-main-col { min-width: 0; }
    .deal-page .dp-side-col {
        position: sticky;
        top: var(--dp-sticky-top);
        align-self: start;
        margin-top: 36px;
        transition: transform var(--dp-sticky-stack-transition);
    }
}
/* Mobile: single column with gutters */
@media (max-width: 599px) {
    .deal-page .dp-desktop-grid {
        display: block;
        padding-left: var(--dp-gutter-inline-mobile);
        padding-right: var(--dp-gutter-inline-mobile);
    }
    .deal-page .dp-banners {
        padding: 0;
    }
    .deal-page .dp-banners .dp-whatsapp-banner {
        box-sizing: border-box;
        width: calc(100% - (var(--dp-gutter-inline-mobile) * 2));
        margin-left: auto;
        margin-right: auto;
    }
    .deal-page .dp-section.dp-similar {
        padding-left: var(--dp-gutter-inline-mobile);
        padding-right: var(--dp-gutter-inline-mobile);
        box-sizing: border-box;
    }
    .deal-page .dp-side-col { display: none; }
}
/* Tablet: fluid sidebar width + fluid gutters */
@media (min-width: 600px) and (max-width: 1024px) {
    .deal-page .dp-desktop-grid {
        grid-template-columns: minmax(0, 1fr) clamp(280px, 36vw, 395px);
        gap: clamp(12px, 2.4vw, 24px);
        padding-left: var(--dp-gutter-tablet);
        padding-right: var(--dp-gutter-tablet);
    }
    .deal-page .dp-side-col { width: auto; }
}
/* Desktop: centered 1280px, fixed 360px sidebar */
@media (min-width: 1025px) {
    .deal-page .dp-desktop-grid {
        grid-template-columns: 1fr 408px;
        gap: 0px;
        max-width: var(--dp-layout-max);
        margin: 0 auto;
        padding-top: 0;
        padding-bottom: 8px;
    }
    .deal-page .dp-main-col {
        padding-right: 70px;
    }
    .deal-page .dp-side-col { width: 408px; justify-self: end; }
}

/* Promotional banners region (tree + WhatsApp partials) */
.deal-page .dp-banners {
    display: flex;
    flex-direction: column;
    gap: 100px;
    margin: 16px 0;
    padding: 0;
    box-sizing: border-box;
}

@media (min-width: 600px) {
    .deal-page .dp-banners {
        padding-left: var(--dp-gutter-inline-mobile, 16px);
        padding-right: var(--dp-gutter-inline-mobile, 16px);
    }
}

@media (min-width: 1025px) {
    .deal-page .dp-banners {
        max-width: var(--dp-layout-max, 1280px);
        margin-left: auto;
        margin-right: auto;
    }
}

/* Certificates (ATOL / ABTA / IATA) */
.deal-page #certificates {
    padding-top: 99px;
    padding-bottom: 99px;
}
@media (max-width: 599px) {
    .deal-page #certificates {
        padding-top: 88px;
        padding-bottom: 88px;
    }
}

/* Narrow desktop (1025–1327px): side gutters until margin:auto clears 24px each side */
@media (min-width: 1025px) and (max-width: 1327px) {
    .deal-page .dp-desktop-grid,
    .deal-page .dp-hero-region,
    .deal-page .dp-banners,
    .deal-page .dp-section.dp-similar,
    .deal-page .dp-newsletter {
        padding-left: var(--dp-gutter-desktop);
        padding-right: var(--dp-gutter-desktop);
        box-sizing: border-box;
    }

    .deal-page .dp-desktop-grid {
        grid-template-columns: minmax(0, 1fr) clamp(320px, 34vw, 408px);
        gap: clamp(24px, 3vw, 48px);
    }

    .deal-page .dp-main-col {
        padding-right: clamp(24px, 5vw, 70px);
    }

    .deal-page .dp-side-col {
        width: clamp(320px, 34vw, 408px);
    }
}

/* Hero + StickyNav moved to scoped partial css files. */

/* =====================================================================
   BOOKING CARD (mobile widget + desktop sidebar)
   ===================================================================== */
/* Mobile floating widget */
.deal-page .dp-booking-mobile {
    background: var(--dp-surface);
    padding: 32px 16px 16px;
    margin: -40px 0;
    border-radius: 2px;
    border-top: 4px solid var(--dp-nav-active);
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
@media (min-width: 600px) {
    .deal-page .dp-booking-mobile { display: none; }
}
.deal-page .dp-booking-mobile__headline {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.deal-page .dp-booking-mobile__hotel-name {
    margin: 0;
    font-family: var(--font-section-title);
    font-size: 30px;
    font-weight: 400;
    color: var(--color-text-strong);
    word-break: break-word;
}
.deal-page .dp-booking-mobile__location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dp-text-muted);
}
.deal-page .dp-booking-mobile__location .icon.deal-page-location-icon {
    width: 18.73px;
    height: 18.73px;
}
.deal-page .dp-booking-mobile__rating-pill {
    align-self: flex-start;
}
.deal-page .dp-booking-mobile__pricing {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.deal-page .dp-booking-mobile__starting-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dp-text-muted);
}
.deal-page .dp-booking-mobile__was-price {
    margin: 0;
    font-size: 14px;
    color: var(--dp-text-muted);
    text-decoration: line-through;
}
.deal-page .dp-booking-mobile__price-row {
    margin: 0;
    gap: 4px;
}
.deal-page .dp-booking-mobile__price-row .dp-price-block__amount {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    line-height: 36px;
    font-weight: 600;
    color: var(--color-text-strong);
}
.deal-page .dp-booking-mobile__price-row .dp-price-block__pp {
    font-size: 14px;
    color: var(--dp-text-muted);
    font-weight: 400;
}

/* Desktop sidebar card */
.deal-page .dp-booking-sidebar {
    background: var(--dp-surface);
    border-radius: 2px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05), 0 -4px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: none;
    border-top: 4px solid #0080FF;
}
@media (max-width: 599px) {
    .deal-page .dp-booking-sidebar { display: none; }
}

.deal-page .dp-booking-sidebar__inner {
    padding: 32px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.deal-page .dp-booking-sidebar__top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 0;
}
.deal-page .dp-booking-sidebar__price-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}
.deal-page .dp-booking-sidebar__label {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 20px;
    text-transform: uppercase;
    color: #6F7978;
}
.deal-page .dp-booking-sidebar__rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 12px;
    background: #F2F9FF;
    color: #0080FF;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 16.25px;
    flex-shrink: 0;
}
.deal-page .dp-booking-sidebar__was {
    margin: 0;
}
.deal-page .dp-booking-sidebar .dp-price-block__was {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #6F7978;
    text-decoration: line-through;
}
.deal-page .dp-booking-sidebar__price-row {
    margin: 0;
    flex-wrap: wrap;
    gap: 4px;
}
.deal-page .dp-booking-sidebar .dp-price-block__amount {
    font-family: var(--font-section-title);
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    color: #1A1C1C;
    letter-spacing: 0;
}
.deal-page .dp-booking-sidebar .dp-price-block__pp {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #6F7978;
    font-weight: 400;
}

.deal-page .dp-booking-sidebar .dp-booking-feature-list {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.deal-page .dp-booking-sidebar .dp-booking-feature-list__item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.39;
    color: #6F7978;
    margin-bottom: 0;
}
.deal-page .dp-booking-sidebar__inner span.icon {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    background-color: #6F7978;
    flex-shrink: 0;
}
.deal-page .dp-booking-sidebar .dp-booking-feature-list__item .dp-booking-feature-list__icon {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(48%) sepia(6%) saturate(459%) hue-rotate(125deg) brightness(94%) contrast(83%);
}
.deal-page .dp-booking-sidebar .dp-booking-feature-list__item--travel-period .dp-booking-feature-list__icon {
    filter: brightness(0) saturate(100%) invert(48%) sepia(6%) saturate(459%) hue-rotate(125deg) brightness(112%) contrast(72%);
    opacity: 0.88;
}
.deal-page .dp-booking-sidebar__rating-pill span.icon {
    margin-top: 0;
    background-color: #0080FF;
}
.deal-page .dp-booking-sidebar .dp-booking-feature-list__text {
    flex: 1;
    min-width: 0;
    overflow-wrap: anywhere;
}
.deal-page .dp-booking-mobile__feature-list {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.deal-page .dp-booking-mobile__feature-list .dp-booking-feature-list__item {
    margin-bottom: 0;
    gap: 8px;
    align-items: center;
    font-size: 14px;
    color: var(--dp-text-muted);
    display: flex;
}
.deal-page .dp-booking-mobile__feature-list .dp-booking-feature-list__item .dp-booking-feature-list__icon {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(48%) sepia(6%) saturate(459%) hue-rotate(125deg) brightness(94%) contrast(83%);
}
.deal-page .dp-booking-mobile__feature-list .dp-booking-feature-list__item--travel-period .dp-booking-feature-list__icon {
    filter: brightness(0) saturate(100%) invert(48%) sepia(6%) saturate(459%) hue-rotate(125deg) brightness(112%) contrast(72%);
    opacity: 0.88;
}
.deal-page .dp-booking-mobile__feature-list .dp-booking-feature-list__text {
    overflow-wrap: anywhere;
}

.deal-page .dp-booking-customise {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    min-height: 86px;
    padding: 15px 16px;
    box-sizing: border-box;
    background: #F2F7FF;
    border: 1px solid #D2E3FD;
    border-radius: 8px;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.deal-page .dp-booking-customise__icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    display: block;
}
.deal-page .dp-booking-customise__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.deal-page .dp-booking-customise__title {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 19.5px;
    color: #1A1C1C;
}
.deal-page .dp-booking-customise__desc {
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 19.5px;
    color: #6F7978;
}
.deal-page .dp-booking-customise__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #0080FF;
    text-decoration: none;
}
.deal-page .dp-booking-customise__link-text {
    line-height: 19.5px;
}
.deal-page .dp-booking-customise__link:hover .dp-booking-customise__link-text {
    text-decoration: underline;
}
.deal-page .dp-booking-customise__link .dp-booking-customise__arrow {
    flex: 0 0 auto;
    display: block;
    width: 4px;
    height: 7.63px;
    margin-top: 2.5px;
}
@media (max-width: 599px) {
    .deal-page .dp-booking-customise {
        min-height: 89px;
        padding: 9px 8px;
    }
}

.deal-page .dp-booking-sidebar__cta {
    margin-top: 0;
    gap: 12px;
}
.deal-page .dp-booking-sidebar__cta .dp-btn {
    padding: 16px 20px;
    border-radius: 2px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 20px;
}
.deal-page .dp-booking-sidebar__cta .dp-btn--deal-blue {
    background: #0080FF;
}
.deal-page .dp-booking-sidebar__cta .dp-btn--deal-blue:hover {
    background: var(--dp-deal-cta-blue-hover);
}
.deal-page .dp-booking-sidebar__cta .dp-btn--deal-green {
    background: #039E00;
}
.deal-page .dp-booking-sidebar__cta .dp-btn--deal-green:hover {
    background: var(--dp-deal-cta-green-hover);
}

.deal-page .dp-price-block {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 6px;
}
.deal-page .dp-price-block__from {
    font-size: 13px;
    color: var(--dp-text-muted);
}
.deal-page .dp-price-block__amount {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--dp-primary);
}
.deal-page .dp-price-block__pp {
    font-size: 13px;
    color: var(--dp-text-muted);
}
.deal-page .dp-price-block__was {
    font-size: 14px;
    color: var(--dp-text-muted);
    text-decoration: line-through;
}

.deal-page .dp-price-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.deal-page .dp-price-meta__pill {
    background: var(--dp-surface-alt);
    border: 1px solid var(--dp-border);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 12px;
    color: var(--dp-text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.deal-page .dp-booking-card__cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.deal-page .dp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: var(--dp-radius-sm);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: transform .15s ease, box-shadow .15s ease;
    text-decoration: none;
}
.deal-page .dp-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,.15); }
.deal-page .dp-btn--primary {
    background: var(--dp-accent);
    color: var(--dp-primary);
}
.deal-page .dp-btn--outline {
    background: transparent;
    border: 1px solid var(--dp-primary);
    color: var(--dp-primary);
}
.deal-page .dp-btn--dark {
    background: var(--dp-primary);
    color: #fff;
}
.deal-page .dp-btn--full { width: 100%; }
.deal-page .dp-btn--deal-blue {
    background: var(--dp-deal-cta-blue);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 14px;
}
.deal-page .dp-btn--deal-blue:hover {
    background: var(--dp-deal-cta-blue-hover);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}
.deal-page .dp-btn--deal-green {
    background: var(--dp-deal-cta-green);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 14px;
}
.deal-page .dp-btn--deal-green:hover {
    background: var(--dp-deal-cta-green-hover);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.35);
}

.deal-page .dp-booking-card__trust {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--dp-border);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.deal-page .dp-booking-card__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--dp-text-muted);
}
.deal-page .dp-booking-card__trust-item .icon { flex-shrink: 0; }
.deal-page .dp-booking-mobile__cta {
    gap: 12px;
}
.deal-page .dp-booking-mobile__cta .dp-btn {
    padding: 16px 20px;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 2px;
}
.deal-page .dp-booking-mobile__trust,
.deal-page .dp-booking-sidebar .dp-booking-card__trust {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
    overflow: hidden;
    width: 100%;
}

.deal-page .dp-booking-trust__viewport {
    overflow: hidden;
    width: 100%;
}

.deal-page .dp-booking-trust__track {
    display: flex;
    align-items: center;
    transition: transform 0.4s ease;
    will-change: transform;
}

.deal-page .dp-booking-trust__page {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    min-width: 0;
}

.deal-page .dp-booking-trust--mobile .dp-booking-trust__page {
    gap: 12px;
}

.deal-page .dp-booking-trust--sidebar .dp-booking-trust__page {
    gap: 16px;
}

.deal-page .dp-booking-trust__item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    min-width: 0;
    flex: 1 1 0;
}

.deal-page .dp-booking-trust__item--sidebar {
    font-family: Poppins, sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #5A6A7D;
}

.deal-page .dp-booking-trust__item--mobile {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-text-secondary);
}

.deal-page .dp-booking-trust__icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    object-fit: contain;
    display: block;
}

/* Mobile booking card */
@media (max-width: 599px) {
    .deal-page .dp-booking-mobile {
        padding: 32px 16px 16px;
        gap: 16px;
    }

    .deal-page .dp-booking-mobile__hotel-name {
        grid-column: 1 / -1;
        font-size: 30px;
        line-height: 36px;
    }

    .deal-page .dp-booking-mobile__headline {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        column-gap: 8px;
        row-gap: 8px;
    }

    .deal-page .dp-booking-mobile__location {
        grid-column: 1;
        min-width: 0;
        gap: 2px;
        min-height: 29px;
        align-items: center;
        font-family: "Plus Jakarta Sans", var(--font-sans);
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        color: #6F7978;
    }

    .deal-page .dp-booking-mobile__location .icon.deal-page-location-icon {
        width: 18.73px;
        height: 18.73px;
    }

    .deal-page .dp-booking-mobile__rating-pill {
        grid-column: 2;
        justify-self: end;
        align-self: center;
        background: rgba(1, 128, 255, 0.05);
        padding: 4px 12px;
        border-radius: 12px;
        gap: 4px;
        font-family: "Plus Jakarta Sans", var(--font-sans);
        font-size: 12px;
        font-weight: 700;
        line-height: 16.25px;
        color: #0080FF;
    }

    .deal-page .dp-booking-mobile__rating-pill .icon.star-icon {
        width: 10px;
        height: 10px;
        background-color: #0080FF;
    }

    .deal-page .dp-booking-mobile__pricing {
        gap: 12px;
    }

    .deal-page .dp-booking-mobile__starting-label {
        font-family: "Plus Jakarta Sans", var(--font-sans);
        letter-spacing: 0.1em;
        line-height: 20px;
    }

    .deal-page .dp-booking-mobile__was-price {
        font-family: "Plus Jakarta Sans", var(--font-sans);
        font-weight: 400;
        line-height: 20px;
    }

    .deal-page .dp-booking-mobile__price-row .dp-price-block__amount {
        font-family: var(--font-section-title);
        font-size: 30px;
        font-weight: 600;
        line-height: 36px;
        color: #1A1C1C;
    }

    .deal-page .dp-booking-mobile__price-row .dp-price-block__pp {
        font-family: "Plus Jakarta Sans", var(--font-sans);
        line-height: 20px;
    }

    .deal-page .dp-booking-mobile__feature-list .dp-booking-feature-list__item {
        font-family: "Plus Jakarta Sans", var(--font-sans);
    }

    .deal-page .dp-booking-mobile__feature-list .dp-booking-feature-list__text {
        line-height: 19.5px;
    }

    .deal-page .dp-booking-mobile__cta .dp-btn {
        font-family: "Plus Jakarta Sans", var(--font-sans);
        letter-spacing: 0.1em;
        line-height: 20px;
    }

    .deal-page .dp-booking-trust__item--mobile {
        font-family: Poppins, sans-serif;
        font-size: 10px;
        font-weight: 600;
        color: #5A6A7D;
        text-transform: none;
    }
}


/* Iconic/About/Facilities moved to scoped partial css files. */

/* =====================================================================
   CAROUSELS (Rooms / Restaurants / Things To Do)
   ===================================================================== */
.deal-page .dp-carousel { padding: 24px; }
.deal-page .dp-carousel__track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    margin-top: 16px;
}
.deal-page .dp-carousel__track::-webkit-scrollbar { height: 4px; }
.deal-page .dp-carousel__track::-webkit-scrollbar-track { background: var(--dp-border); border-radius: 2px; }
.deal-page .dp-carousel__track::-webkit-scrollbar-thumb { background: var(--dp-accent); border-radius: 2px; }

.deal-page .dp-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: var(--dp-surface);
    border-radius: var(--dp-radius);
    border: 1px solid var(--dp-border);
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow var(--dp-transition), transform var(--dp-transition);
}
.deal-page .dp-card:hover {
    box-shadow: var(--dp-shadow);
    transform: translateY(-2px);
}
@media (min-width: 640px) { .deal-page .dp-card { flex: 0 0 320px; } }

.deal-page .dp-card__img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}
.deal-page .dp-card__img-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--dp-surface-alt);
    display: flex;
    align-items: center;
    justify-content: center;
}
.deal-page .dp-card__body { padding: 14px; }
.deal-page .dp-card__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--dp-primary);
    margin: 0 0 6px;
}
.deal-page .dp-card__desc {
    font-size: 13px;
    color: var(--dp-text-muted);
    line-height: 1.5;
    line-clamp: 2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}
.deal-page .dp-card__link {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dp-accent);
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

/* Carousel navigation arrows */
.deal-page .dp-carousel__nav {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 12px;
}
.deal-page .dp-carousel__arrow {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--dp-border);
    background: var(--dp-surface);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--dp-transition), border-color var(--dp-transition);
}
.deal-page .dp-carousel__arrow:hover {
    background: var(--dp-primary);
    border-color: var(--dp-primary);
}
.deal-page .dp-carousel__arrow:hover .icon { background-color: #fff; }

/* ---- Feature carousel (Rooms & Suites / Dining / Activities) --- */
.deal-page .dp-section.dp-carousel.dp-carousel--feature {
    background: transparent;
    border-radius: 0;
    /* Clip horizontal bleed from flex track/cards; inner .dp-carousel__track still scrolls. */
    overflow-x: clip;
    overflow-y: visible;
    padding: 0px 0px;
    margin: 0px 0;
}
@media (min-width: 1025px) {
    .deal-page .dp-section.dp-carousel.dp-carousel--feature {
        padding: 24px 0;
    }
}
.deal-page .dp-carousel--feature .dp-carousel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}
.deal-page .dp-carousel--feature .dp-carousel__title {
    font-family: var(--font-section-title);
    font-size: var(--font-section-title-size);
    font-weight: var(--font-section-title-weight);
    line-height: var(--font-section-title-leading);
    color: var(--color-section-title);
    margin: 0;
}
.deal-page .dp-carousel--feature .dp-carousel__nav--header {
    margin-top: 0;
    flex-shrink: 0;
}
@media (max-width: 599px) {
    .deal-page .dp-carousel--feature .dp-carousel__nav--header {
        display: none;
    }
}
.deal-page .dp-carousel--feature .dp-carousel__track {
    margin-top: 0;
    padding-bottom: 0px;
    align-items: stretch;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.deal-page .dp-carousel--feature .dp-carousel__track::-webkit-scrollbar {
    display: none;
}
.deal-page .dp-carousel--feature .dp-card.dp-card--feature {
    flex: 0 0 85%;
    min-width: 0;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-self: stretch;
}
@media (min-width: 1025px) {
    .deal-page .dp-carousel--feature .dp-card.dp-card--feature {
        flex: 0 0 calc(50% - 8px);
    }
}

.deal-page .dp-card--feature {
    border: none;
    border-radius: 0;
    background: transparent;
    cursor: default;
    overflow: visible;
}
.deal-page .dp-card--feature:hover {
    box-shadow: none;
    transform: none;
}
.deal-page .dp-card--feature .dp-card__img,
.deal-page .dp-card--feature .dp-card__img-placeholder {
    aspect-ratio: 4 / 3;
    border-radius: var(--dp-radius);
    overflow: hidden;
    flex-shrink: 0;
}
.deal-page .dp-card--feature .dp-card__img {
    display: block;
    width: 100%;
    object-fit: cover;
}
.deal-page .dp-card--feature .dp-card__img-placeholder {
    width: 100%;
    background: var(--dp-surface-alt);
    display: flex;
    align-items: center;
    justify-content: center;
}
.deal-page .dp-card--feature .dp-card__body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    padding: 0 0 0;
}
.deal-page .dp-card--feature .dp-card__title {
    font-family: var(--font-section-title);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-strong);
    margin: 12px 0 8px;
}
.deal-page .dp-card--feature .dp-card__desc {
    font-family: "Plus Jakarta Sans", var(--font-sans);
    font-size: 14px;
    line-height: 1.55;
    color: #3F4948;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    margin: 0 0 16px;
}
.deal-page .dp-card__cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.deal-page .dp-card--feature .dp-card__cta-row {
    margin-top: auto;
}
.deal-page .dp-card--feature .dp-card__cta-row .dp-btn {
    flex: 1 1 0;
    min-width: min(120px, 100%);
    padding: 10px 16px;
    font-size: 13px;
}
.deal-page .dp-card--feature .dp-card__cta-row .dp-btn:only-child {
    flex: 0 0 auto;
    min-width: 168px;
}
.deal-page .dp-card--feature .dp-card__cta-explore {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-color: var(--color-brand-blue);
    color: var(--color-brand-blue);
}
.deal-page .dp-card--feature .dp-card__cta-explore:hover {
    background: var(--color-brand-blue-soft);
    border-color: var(--color-brand-blue);
    color: var(--color-brand-blue-hover);
}





/* Tailor Escape placement wrappers live in Default.cshtml (not the partial), so these must stay global */
.deal-page .dp-deal-tailor-escape--mobile-only {
    display: none;
}
.deal-page .dp-deal-tailor-escape--desktop-only {
    display: block;
}
@media (max-width: 1024px) {
    .deal-page .dp-deal-tailor-escape--mobile-only {
        display: block;
    }
    .deal-page .dp-deal-tailor-escape--desktop-only {
        display: none;
    }
}

/* Bottom padding to prevent mobile footer overlap (mobile only) */
@media (max-width: 599px) {
    .deal-page { padding-bottom: 80px; }

    /* Uniform 60px vertical */
    .deal-page .dp-main-col {
        display: flex;
        flex-direction: column;
        gap: var(--dp-section-stack-gap-mobile);
    }

    .deal-page .dp-post-grid-stack {
        display: flex;
        flex-direction: column;
        gap: var(--dp-section-stack-gap-mobile);
        margin-top: calc(var(--dp-section-stack-gap-mobile) - 1px);
    }

    .deal-page .dp-main-col > * .dp-section,
    .deal-page .dp-main-col > .dp-section.dp-carousel.dp-carousel--feature {
        margin-block: 0;
    }

    .deal-page .dp-main-col > .dp-section.dp-booking-mobile {
        margin-block: 0;
        margin-top: -40px;
    }

    .deal-page .dp-main-col #faq .dp-deal-faq,
    .deal-page .dp-main-col .dp-deal-tailor-escape {
        margin-block: 0;
    }

    .deal-page .dp-post-grid-stack .dp-section.dp-similar,
    .deal-page .dp-post-grid-stack .dp-banners {
        margin-block: 0;
    }

    .deal-page .dp-post-grid-stack .dp-banners {
        gap: var(--dp-section-stack-gap-mobile);
    }

    .deal-page .dp-post-grid-stack #trust-pilot {
        padding-top: 0;
        padding-bottom: 0;
    }

    .deal-page .dp-post-grid-stack #certificates {
        padding-top: 0;
        padding-bottom: 0;
    }

    .deal-page .dp-similar-sentinel {
        height: 1px;
        margin: 0;
        flex-shrink: 0;
    }

    /*
      Blocks below the main grid often are not .dp-section (which uses overflow:hidden).
      Swipers, Trustpilot, AsSeenOn marquee grids, etc. can make scrollWidth > viewport.
    */
    .deal-page .dp-desktop-grid,
    .deal-page .dp-post-grid-stack,
    .deal-page .dp-section.dp-similar,
    .deal-page .dp-hero,
    .deal-page .dp-banners,
    .deal-page .dp-newsletter,
    .deal-page #trust-pilot,
    .deal-page #certificates,
    .deal-page #partners,
    .deal-page #travel-inspiration,
    .deal-page > .wrap,
    .deal-page .dp-deal-footer {
        max-width: 100%;
        overflow-x: clip;
    }
}

/* Tablet (600px–1024px): fluid gutters for full-width blocks */
@media (min-width: 600px) and (max-width: 1024px) {
    .deal-page .dp-hero-region,
    .deal-page .dp-banners,
    .deal-page .dp-section.dp-similar,
    .deal-page .dp-newsletter {
        padding-left: var(--dp-gutter-tablet);
        padding-right: var(--dp-gutter-tablet);
        box-sizing: border-box;
    }
}

/* =====================================================================
   MODALS (bottom-sheet pattern)
   ===================================================================== */
/*
 * Backdrop layer — must be a sibling of .dp-modal-sheet, not inside it.
 * A transformed sheet creates a containing block; fixed children would move with the sheet.
 * Open instantly (no fade-in) so scroll-lock never shows through transparent backdrop.
 */
.dp-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: none;
    background: rgba(0, 0, 0, .55);
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .35s cubic-bezier(.32,.72,0,1), visibility 0s linear .35s;
}
.dp-modal-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: none;
}
.dp-modal-overlay.dp-modal-overlay--closing {
    opacity: 0;
    visibility: visible;
    pointer-events: none;
    transition: opacity .35s cubic-bezier(.32,.72,0,1), visibility 0s linear .35s;
}

.dp-modal-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1201;
    background: #fff;
    border-radius: 20px 20px 0 0;
    max-height: 92dvh;
    overflow-y: auto;
    transform: translate3d(0, 100%, 0);
    transition: transform .35s cubic-bezier(.32,.72,0,1), opacity .35s cubic-bezier(.32,.72,0,1);
    overscroll-behavior: contain;
    /* Never intercept page events when modal is visually off-screen */
    pointer-events: none;
}
.dp-modal-sheet.open,
.dp-modal-sheet.dp-modal-sheet--closing {
    will-change: transform, opacity;
}
@media (min-width: 600px) {
    .dp-modal-sheet {
        left: 50%;
        right: auto;
        transform: translate3d(-50%, 100%, 0);
        width: 520px;
        border-radius: 20px 20px 0 0;
    }
}
.dp-modal-sheet.open {
    pointer-events: auto;
}
.dp-modal-sheet.dp-modal-sheet--closing {
    pointer-events: none;
}
.dp-modal-sheet.open {
    transform: translate3d(0, 0, 0);
}
@media (min-width: 600px) {
    .dp-modal-sheet.open {
        transform: translate3d(-50%, 0, 0);
    }
}

.dp-modal-sheet__handle-bar {
    width: 40px; height: 4px;
    background: var(--dp-border);
    border-radius: 2px;
    margin: 12px auto 0;
}
.dp-modal-sheet__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 0;
}
.dp-modal-sheet__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dp-primary);
}
.dp-modal-sheet__close {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid var(--dp-border);
    background: var(--dp-surface);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dp-modal-sheet__body { padding: 20px; }

/*
 * Details modal (#dp-details-sheet): markup is always in the DOM for room/restaurant/activity drill-down.
 * Scoped partial CSS can fail to hide the closed sheet in some builds; keep it fully non-visible until .open.
 */
#dp-details-sheet:not(.open):not(.dp-modal-sheet--closing) {
    visibility: hidden !important;
    pointer-events: none !important;
}
#dp-details-sheet.open,
#dp-details-sheet.dp-modal-sheet--closing {
    visibility: visible !important;
}

/*
 * Facility detail drill-down sheet: desktop CSS centers the sheet (overrides bottom-sheet translateY),
 * so without these rules it stays visibly on-screen when closed. Match #dp-details-sheet behaviour.
 */
#dp-facility-detail-sheet:not(.open):not(.dp-modal-sheet--closing) {
    visibility: hidden !important;
    pointer-events: none !important;
}
#dp-facility-detail-sheet.open,
#dp-facility-detail-sheet.dp-modal-sheet--closing {
    visibility: visible !important;
}

/* Quote calendar: global #dp-quote-sheet rules */
#dp-quote-sheet .dp-s2-field--date.is-open .dp-s2-chevron {
    transform: translateY(-50%) rotate(180deg);
}

#dp-quote-sheet .dp-s2-calendar {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    width: 100%;
    margin-top: 8px;
    padding: 24px;
    background: #FFFFFF;
    border: 1px solid #BEC9C8;
    border-radius: 2px;
    box-sizing: border-box;
    overflow: hidden;
}

#dp-quote-sheet .dp-s2-field--date.is-open .dp-s2-calendar {
    display: flex;
}

#dp-quote-sheet .dp-s2-calendar__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-self: stretch;
    min-height: 28px;
}

#dp-quote-sheet .dp-s2-calendar__title {
    flex: 1;
    text-align: center;
    font-family: "Noto Serif", ui-serif, Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: #1A1C1C;
}

#dp-quote-sheet .dp-s2-calendar__nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border: none;
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.25s ease;
}

#dp-quote-sheet .dp-s2-calendar__nav-btn:hover {
    background: #F3F3F3;
}

#dp-quote-sheet .dp-s2-calendar__nav-btn .icon {
    width: 8px;
    height: 12px;
    background-color: #0080FF;
}

#dp-quote-sheet .dp-s2-calendar__weekdays {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    align-self: stretch;
    width: 100%;
    padding-top: 16px;
}

#dp-quote-sheet .dp-s2-calendar__weekdays span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 15px;
    text-align: center;
    font-family: "Inter", "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6F7978;
}

#dp-quote-sheet .dp-s2-calendar__grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    align-self: stretch;
    width: 100%;
    padding-bottom: 16px;
}

#dp-quote-sheet .dp-s2-calendar__day {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 42px;
    margin: 0;
    padding: 10px 0 12px;
    border: none;
    border-radius: 2px;
    background: transparent;
    font-family: "Inter", "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 19.5px;
    color: #1A1C1C;
    cursor: pointer;
    box-sizing: border-box;
    transition: background-color 0.25s ease, color 0.25s ease;
}

#dp-quote-sheet .dp-s2-calendar__day:hover:not(:disabled):not(.dp-s2-calendar__day--empty):not(.dp-s2-calendar__day--selected) {
    background: #F3F3F3;
}

#dp-quote-sheet .dp-s2-calendar__day:disabled,
#dp-quote-sheet .dp-s2-calendar__day--disabled {
    color: rgba(111, 121, 120, 0.3);
    cursor: default;
    background: transparent;
}

#dp-quote-sheet .dp-s2-calendar__day--today:not(.dp-s2-calendar__day--selected) {
    font-weight: 500;
    color: #1A1C1C;
}

#dp-quote-sheet .dp-s2-calendar__day--selected {
    background: #0080FF;
    color: #FFFFFF;
    font-weight: 500;
}

#dp-quote-sheet .dp-s2-calendar__day--selected:hover {
    background: #0080FF;
    color: #FFFFFF;
}

#dp-quote-sheet .dp-s2-calendar__day--empty {
    visibility: hidden;
    pointer-events: none;
    height: 42px;
    padding: 0;
}

/* =====================================================================
   HERO LIGHTBOX (show all photos)
   ===================================================================== */
.dp-hero-lightbox {
    position: fixed;
    inset: 0;
    /* Above .promo-banner (z-index: 1100) */
    z-index: 1300;
    --dp-lightbox-inset-y: clamp(
        max(16px, calc(var(--cnt-strip-height, 0px) + 16px)),
        18vh,
        217px
    );
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .35s cubic-bezier(.32,.72,0,1), visibility .35s cubic-bezier(.32,.72,0,1);
}
/* Children default to auto; must disable when closed or they block the page (z-index 1300). */
.dp-hero-lightbox:not(.open):not(.dp-hero-lightbox--closing),
.dp-hero-lightbox:not(.open):not(.dp-hero-lightbox--closing) * {
    pointer-events: none !important;
}
.dp-hero-lightbox.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.dp-hero-lightbox.dp-hero-lightbox--closing {
    opacity: 0;
    visibility: visible;
    pointer-events: none;
}
.dp-hero-lightbox__backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(0, 0, 0, .82);
}
.dp-hero-lightbox.open .dp-hero-lightbox__backdrop {
    cursor: pointer;
    pointer-events: auto;
}
.dp-hero-lightbox__dialog {
    position: absolute;
    left: 24px;
    right: 24px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    pointer-events: none;
    --dp-lightbox-width: min(92vw, 1280px);
    --dp-lightbox-half-width: min(46vw, 640px);
    height: 100%;
}
/* Let backdrop receive clicks outside image/controls */
.dp-hero-lightbox.open .dp-hero-lightbox__dialog > * {
    pointer-events: auto;
}
.dp-hero-lightbox__swiper { width: var(--dp-lightbox-width); }
.dp-hero-lightbox__track {
    display: flex;
}
.dp-hero-lightbox__slide {
    border-radius: 14px;
    overflow: hidden;
    background: #0f0f0f;
}
.dp-hero-lightbox__slide img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: min(860px, calc(100vh - (2 * var(--dp-lightbox-inset-y)) - 48px));
    margin: 0 auto;
    object-fit: contain;
    background: #0f0f0f;
    cursor: default;
}
.dp-hero-lightbox__close {
    position: absolute;
    top: 24px;
    right: 8px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    background: rgba(17, 24, 39, .72);
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .28);
    transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
    z-index: 2;
}
.dp-hero-lightbox__close svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    fill: none;
}
.dp-hero-lightbox__counter {
    position: absolute;
    top: 24px;
    left: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
}
.dp-hero-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    background: rgba(17, 24, 39, .72);
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .28);
    transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
    z-index: 2;
}
.dp-hero-lightbox__nav svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}
.dp-hero-lightbox__close:hover,
.dp-hero-lightbox__nav:hover {
    background: rgba(17, 24, 39, .92);
}
.dp-hero-lightbox__close:hover {
    transform: scale(1.04);
}
.dp-hero-lightbox__nav:hover {
    transform: translateY(-50%) scale(1.04);
}
.dp-hero-lightbox__close:focus-visible,
.dp-hero-lightbox__nav:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}
.dp-hero-lightbox__nav:disabled {
    opacity: .35;
    cursor: not-allowed;
}
.dp-hero-lightbox__nav:disabled:hover {
    transform: translateY(-50%);
}
.dp-hero-lightbox__nav--prev { left: max(12px, calc(50% - var(--dp-lightbox-half-width) - 56px)); }
.dp-hero-lightbox__nav--next { right: max(12px, calc(50% - var(--dp-lightbox-half-width) - 56px)); }

@media (max-width: 1024px) {
    .dp-hero-lightbox {
        --dp-lightbox-inset-y: clamp(
            max(16px, calc(var(--cnt-strip-height, 80px) + 16px)),
            18vh,
            217px
        );
    }
    .dp-hero-lightbox__dialog {
        left: 16px;
        right: 16px;
        padding-top: 0;
    }
    .dp-hero-lightbox__swiper {
        width: 100%;
    }
    .dp-hero-lightbox__slide img {
        max-height: min(460px, calc(100vh - (2 * var(--dp-lightbox-inset-y)) - 40px));
    }
    .dp-hero-lightbox__counter {
        left: 6px;
        top: 24px;
    }
    .dp-hero-lightbox__close {
        right: 4px;
        top: 24px;
    }
    .dp-hero-lightbox__nav {
        width: 44px;
        height: 44px;
    }
    .dp-hero-lightbox__nav--prev {
        left: 8px;
    }
    .dp-hero-lightbox__nav--next {
        right: 8px;
    }
}

/* =====================================================================
   UTILITY / misc
   ===================================================================== */
.deal-page .dp-divider {
    border: none;
    border-top: 1px solid var(--dp-border);
    margin: 0;
}
.deal-page .dp-rating-stars {
    display: flex;
    gap: 2px;
}
.deal-page .dp-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}
.deal-page .dp-pill--gold {
    background: var(--dp-accent-light);
    color: var(--dp-accent);
    border: 1px solid var(--dp-accent);
}
.deal-page .dp-pill--green {
    background: #dcfce7;
    color: var(--dp-success);
    border: 1px solid #86efac;
}

/* Spinner moved to _QuoteModal.cshtml.css */
@keyframes dp-spin { to { transform: rotate(360deg); } }

/* =====================================================================
   BREADCRUMB (inside .dp-hero-region: mobile overlay on carousel)
   ===================================================================== */
.deal-page .dp-hero-region {
    position: relative;
}

/* Mobile: compact overlay on hero imagery */
.deal-page .dp-hero-region .dp-breadcrumb {
    position: absolute;
    top: 12px;
    left: 12px;
    right: auto;
    z-index: 6;
    max-width: calc(100% - 24px);
    margin: 0;
    padding: 1px;
    font-size: var(--dp-breadcrumb-font-mobile);
    font-weight: 500;
    font-family: "Plus Jakarta Sans", sans-serif;
    letter-spacing: normal;
    line-height: var(--dp-breadcrumb-line-mobile);
    color: #fff;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}
.deal-page .dp-hero-region .dp-breadcrumb__list {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    overflow: hidden;
    margin: 0;
    padding: 0;
    list-style: none;
}
.deal-page .dp-hero-region .dp-breadcrumb__item,
.deal-page .dp-hero-region .dp-breadcrumb__ellipsis {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.deal-page .dp-hero-region .dp-breadcrumb__ellipsis[hidden] {
    display: none !important;
}
.deal-page .dp-hero-region .dp-breadcrumb__item--current {
    min-width: 0;
    flex-shrink: 1;
}
.deal-page .dp-hero-region .dp-breadcrumb__item--current span[itemprop="name"] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.deal-page .dp-hero-region .dp-breadcrumb__item--hidden {
    display: none !important;
}
.deal-page .dp-hero-region .dp-breadcrumb__ellipsis-btn {
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    font: inherit;
    color: inherit;
    text-transform: inherit;
    cursor: pointer;
    line-height: inherit;
}
.deal-page .dp-hero-region .dp-breadcrumb__ellipsis-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
    border-radius: 2px;
}
.deal-page .dp-hero-region .dp-breadcrumb a {
    color: #fff;
    text-decoration: none;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: inherit;
    font-weight: 500;
}
.deal-page .dp-hero-region .dp-breadcrumb a:visited {
    color: #FFFFFF;
}
.deal-page .dp-hero-region .dp-breadcrumb a:hover {
    color: #fff;
    text-decoration: underline;
}
.deal-page .dp-hero-region .dp-breadcrumb a:focus-visible {
    color: #fff;
    outline: 2px solid #fff;
    outline-offset: 2px;
    border-radius: 2px;
}
.deal-page .dp-hero-region .dp-breadcrumb__item--current > a {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}
.deal-page .dp-hero-region .dp-breadcrumb__sep {
    opacity: 1;
    flex-shrink: 0;
    font-size: inherit;
    font-weight: 500;
    color: #fff;
    padding-inline: 5px;
    margin-bottom: 3px;
}
.deal-page .dp-hero-region .dp-breadcrumb__sep::before {
    content: ">";
}

@media (max-width: 599px) {
    .deal-page .dp-hero-region .dp-breadcrumb {
        display: inline-block;
        width: auto;
        max-width: calc(100% - 24px);
        vertical-align: top;
    }
    .deal-page .dp-hero-region .dp-breadcrumb__list {
        display: inline-flex;
        max-width: 100%;
    }
}

@media (min-width: 390px) and (max-width: 599px) {
    .deal-page .dp-hero-region .dp-breadcrumb {
        top: 14px;
        left: 15px;
        max-width: calc(100% - 30px);
        font-size: 12px;
        line-height: 15px;
    }
}

@media (min-width: 600px) {
    .deal-page .dp-sticky-nav {
        margin-bottom: 0;
    }

    .deal-page .dp-hero-region {
        margin-top: 45px;
    }

    .deal-page .dp-hero-region .dp-breadcrumb__ellipsis {
        display: none !important;
    }

    .deal-page .dp-hero-region .dp-breadcrumb {
        position: static;
        z-index: auto;
        top: auto;
        left: auto;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 0 21px;
        font-size: 14px;
        font-weight: 500;
        font-family: "Plus Jakarta Sans", sans-serif;
        letter-spacing: normal;
        line-height: 1.5;
        color: #000000;
        text-transform: uppercase;
        background: rgba(249, 249, 249, 1);
        border-radius: 0;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }
    .deal-page .dp-hero-region .dp-breadcrumb a {
        color: #000000;
        font-weight: 500;
        text-transform: inherit;
    }
    .deal-page .dp-hero-region .dp-breadcrumb a:visited {
        color: #000000;
    }
    .deal-page .dp-hero-region .dp-breadcrumb a:hover {
        color: #000000;
        text-decoration: underline;
    }
    .deal-page .dp-hero-region .dp-breadcrumb a:focus-visible {
        color: #000000;
        outline: 2px solid var(--dp-accent);
        outline-offset: 2px;
    }
    .deal-page .dp-hero-region .dp-breadcrumb__ellipsis-btn:focus-visible {
        outline: 2px solid var(--dp-accent);
        outline-offset: 2px;
    }
    .deal-page .dp-hero-region .dp-breadcrumb__item--current > span[itemprop="name"] {
        color: #000000;
        font-weight: 500;
        text-transform: inherit;
    }
    .deal-page .dp-hero-region .dp-breadcrumb__sep {
        color: inherit;
    }
}

@media (min-width: 1025px) {
    .deal-page .dp-hero-region .dp-breadcrumb a {
        font-size: 14px;
    }
}

/* Desktop hotel heading block below hero gallery — shown from 600px+ */
.deal-page .dp-page-header--desktop-only {
    display: none;
}
@media (min-width: 600px) {
    .deal-page .dp-page-header--desktop-only {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0 0 6px;
        padding: 24px 0 0;
    }
    .deal-page .dp-page-header__title {
        margin: 0;
        font-family: "Noto Serif", ui-serif, Georgia, "Times New Roman", serif;
        font-size: 36px;
        line-height: 36px;
        font-weight: 400;
        color: #1A1C1C;
    }
    .deal-page .dp-page-header__location {
        margin-top: 16px;
        display: inline-flex;
        align-items: center;
        gap: 2px;
        min-height: 29px;
        font-family: "Plus Jakarta Sans", var(--font-sans), sans-serif;
        font-size: 20px;
        line-height: 29px;
        font-weight: 500;
        color: #6F7978;
    }
    .deal-page .dp-page-header__location .icon.deal-page-location-icon {
        width: 24px;
        height: 24px;
    }
}

@media (min-width: 1025px) and (max-width: 1327px) {
    .deal-page .dp-page-header__title {
        font-size: clamp(28px, 2.8vw, 36px);
        line-height: 1.1;
    }

    .deal-page .dp-page-header__location {
        font-size: clamp(16px, 1.6vw, 20px);
        line-height: 1.45;
    }
}

/* Optional destination line below hero gallery — shown from 600px+ */
.deal-page .dp-gallery-destination--desktop-only {
    display: none;
}
@media (min-width: 600px) {
    .deal-page .dp-gallery-destination--desktop-only {
        display: flex;
        align-items: center;
        gap: 8px;
        max-width: var(--dp-layout-max);
        margin: 0 auto;
        padding: 12px 24px 0;
        font-size: 15px;
        font-weight: 500;
        color: var(--dp-text-muted);
    }
    .deal-page .dp-gallery-destination--desktop-only .icon.deal-page-location-icon {
        width: 24px;
        height: 24px;
    }
}

/* Scroll sentinel: nav price reveal when user reaches similar / end of main grid */
.deal-page .dp-similar-sentinel {
    height: 1px;
    width: 100%;
    pointer-events: none;
}

/* Sticky mobile footer — left-aligned price line on mobile */
@media (max-width: 599px) {
    .deal-page .dp-mobile-footer {
        align-items: stretch;
    }

    .deal-page .dp-mobile-footer__headline {
        width: 100%;
        align-self: stretch;
        text-align: left;
    }
}

@media (min-width: 600px) and (max-width: 1024px) {
    .deal-page .dp-mobile-footer {
        align-items: stretch;
    }

    .deal-page .dp-mobile-footer__headline {
        width: 100%;
        align-self: stretch;
        text-align: left;
    }
}

/*
   Mobile chat widgets: tighter to the safe area when the book bar is off-screen.
   Raise when .dp-mobile-footer-visible (set from dealpage.js) matches bar height (~85px).
*/
@media (max-width: 1024px) {
    div#superchat-widget,
    div#superchat-widget-content-root {
        bottom: 24px !important;
    }

    div#responseiq_app_frame_container > * {
        bottom: 36px !important;
        left: 0 !important;
    }

    body.dp-mobile-footer-visible div#superchat-widget,
    body.dp-mobile-footer-visible div#superchat-widget-content-root {
        bottom: 0px !important;
    }

    body.dp-mobile-footer-visible div#responseiq_app_frame_container > * {
        bottom: 20px !important;
    }
}

@media (max-width: 599px) {
    body.dp-mobile-footer-visible div#superchat-widget,
    body.dp-mobile-footer-visible div#superchat-widget-content-root {
        bottom: 107px !important;
    }

    body.dp-mobile-footer-visible div#responseiq_app_frame_container > * {
        bottom: 122px !important;
    }
}

/* Filters (_DatePricesFilters partial) — chart + contact */
.deal-page #prices .dp-dates__filters-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    align-items: flex-end;
}
.deal-page #prices .dp-dates__filter-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
}
.deal-page #prices .dp-dates__filter-label {
    font-family: "Plus Jakarta Sans", var(--font-sans, system-ui, sans-serif);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: normal;
    text-transform: uppercase;
    color: #6F7978;
    margin: 0;
    line-height: 1.2;
}
.deal-page #prices .dp-dates__filter-select {
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
    min-width: 140px;
    width: 172px;
    height: 38px;
    padding: 0 32px 0 14px;
    border: 1px solid #BEC9C8;
    border-radius: 2px;
    box-shadow: none;
    font-family: "Plus Jakarta Sans", var(--font-sans, system-ui, sans-serif);
    font-size: 14px;
    font-weight: 500;
    line-height: 36px;
    color: #000000;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px 8px;
    cursor: pointer;
}
.deal-page #prices .dp-dates__filter-select:hover {
    border-color: #BEC9C8;
}
.deal-page #prices .dp-dates__filter-select:focus {
    outline: none;
    border-color: #0080FF;
    box-shadow: 0 0 0 2px rgba(0, 128, 255, .15);
}
.deal-page #prices .dp-dropdown {
    position: relative;
}
.deal-page #prices .dp-dropdown__header,
.deal-page #prices .dp-dropdown__menu {
    display: none;
}
.deal-page #prices .dp-dropdown__native {
    display: block;
}
.deal-page #prices .dp-dropdown__check.icon {
    background-color: var(--color-brand-blue);
}
@media (min-width: 1025px) {
    .deal-page #prices .dp-dates__header {
        display: flex;
        flex-wrap: nowrap;
        align-items: flex-start;
        justify-content: space-between;
        gap: 16px 24px;
        min-height: 60px;
    }
    .deal-page #prices .dp-dates__title {
        font-family: "Noto Serif", var(--font-section-title, ui-serif, Georgia, "Times New Roman", serif);
        font-size: 24px;
        font-weight: 400;
        line-height: 40px;
        color: #000000;
        margin: 0;
    }
    .deal-page #prices .dp-dates__filters-wrap {
        margin-left: auto;
        flex-shrink: 0;
        flex-wrap: nowrap;
        gap: 17px;
        align-items: flex-start;
    }
    .deal-page #prices .dp-dates__year-bar {
        overflow: hidden;
        border-bottom: 1px solid #BEC9C8;
        min-height: 59px;
    }
    .deal-page #prices .dp-dates__years {
        align-items: flex-end;
    }
    .deal-page #prices .dp-dates__year-tab {
        font-family: "Plus Jakarta Sans", var(--font-sans, system-ui, sans-serif);
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        color: #6F7978;
        padding: 16.5px 32px 17.5px;
        margin-right: 0;
        margin-bottom: -1px;
        border: none;
        border-bottom: 2px solid transparent;
        border-radius: 0;
        text-align: center;
    }
    .deal-page #prices .dp-dates__year-tab:hover:not(.active) {
        color: #6F7978;
        border-bottom-color: transparent;
    }
    .deal-page #prices .dp-dates__year-tab.active {
        padding: 16px 32px;
        color: #0080FF;
        font-weight: 700;
        border-bottom-color: #0080FF;
    }
}
@media (max-width: 1024px) {
    .deal-page #prices .dp-dates__header {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        gap: 24px;
    }
    .deal-page #prices .dp-dates__filters-wrap {
        width: 100%;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 24px;
        margin-left: 0;
    }
    .deal-page #prices .dp-dates__filter-field {
        width: 100%;
        gap: 16px;
    }
    .deal-page #prices .dp-dates__filter-label {
        font-weight: 400;
        letter-spacing: 0.1em;
        line-height: 20px;
    }
    /* Hide native selects; custom UI for class (chips/list) and duration (dropdown) */
    .deal-page #prices .dp-dropdown__native,
    .deal-page #prices .dp-dates__filter-field--class .dp-dates__filter-select--class,
    .deal-page #prices .dp-dates__filter-field--duration .dp-dates__filter-select--duration,
    .deal-page #prices .dp-dates--contact-cta .dp-dates__filter-select {
        display: none !important;
        position: absolute !important;
        width: 1px !important;
        height: 1px !important;
        padding: 0 !important;
        margin: -1px !important;
        border: 0 !important;
        opacity: 0 !important;
        pointer-events: none !important;
        clip: rect(0 0 0 0) !important;
        overflow: hidden !important;
        visibility: hidden !important;
    }
    /* Cabin class: always-visible options (no dropdown header) */
    .deal-page #prices .dp-dropdown--class .dp-dropdown__header,
    .deal-page #prices .dp-dropdown--class .dp-dropdown__chevron {
        display: none !important;
    }
    .deal-page #prices .dp-dropdown--class .dp-dropdown__menu {
        display: flex !important;
        width: 100%;
        max-height: none;
        overflow: visible;
        opacity: 1;
        margin-top: 0;
    }
    /* Duration: collapsible dropdown */
    .deal-page #prices .dp-dropdown--duration .dp-dropdown__header {
        display: flex;
        width: 100%;
        height: 62px;
        border: 1px solid #BEC9C8;
        border-radius: 0;
        background: transparent;
        padding: 0 16px;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }
    .deal-page #prices .dp-dropdown--duration .dp-dropdown__value {
        color: #1A1C1C;
        font-family: "Plus Jakarta Sans", var(--font-sans, system-ui, sans-serif);
        font-size: 18px;
        font-weight: 400;
        line-height: 28px;
    }
    .deal-page #prices .dp-dropdown--duration .dp-dropdown__chevron {
        display: inline-block;
        width: 16px;
        height: 16px;
        background-color: #6B7280;
        transition: transform 0.25s ease;
    }
    .deal-page #prices .dp-dropdown--duration.open .dp-dropdown__chevron {
        transform: rotate(180deg);
    }
    .deal-page #prices .dp-dropdown--duration .dp-dropdown__menu {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        margin-top: 0;
        gap: 8px;
        transition: max-height 0.3s ease, opacity 0.2s ease, margin-top 0.2s ease;
    }
    .deal-page #prices .dp-dropdown--duration.open .dp-dropdown__menu {
        max-height: 420px;
        opacity: 1;
        margin-top: 16px;
    }
    .deal-page #prices .dp-dropdown__option {
        box-sizing: border-box;
        border: none;
        display: flex;
        align-items: center;
        cursor: pointer;
        font-family: "Plus Jakarta Sans", var(--font-sans, system-ui, sans-serif);
    }
    .deal-page #prices .dp-dropdown__option-text {
        font-family: "Plus Jakarta Sans", var(--font-sans, system-ui, sans-serif);
        font-size: 16px;
        line-height: 24px;
    }
}
/* Tablet: cabin class vertical list */
@media (min-width: 600px) and (max-width: 1024px) {
    .deal-page #prices .dp-dropdown--class .dp-dropdown__menu {
        flex-direction: column;
        gap: 12px;
    }
    .deal-page #prices .dp-dropdown--class .dp-dropdown__option {
        width: 100%;
        justify-content: space-between;
        padding: 16px 20px;
        border-radius: 2px;
        border-left: 4px solid transparent;
        background: transparent;
        text-align: left;
    }
    .deal-page #prices .dp-dropdown--class .dp-dropdown__option:not(.active) {
        box-shadow: none;
    }
    .deal-page #prices .dp-dropdown--class .dp-dropdown__option:not(.active) .dp-dropdown__option-text {
        color: #3F4948;
        font-weight: 400;
    }
    .deal-page #prices .dp-dropdown--class .dp-dropdown__option.active {
        background-color: #fff;
        border-left-color: #0080FF;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    }
    .deal-page #prices .dp-dropdown--class .dp-dropdown__option.active .dp-dropdown__option-text {
        color: #0080FF;
        font-weight: 700;
    }
    .deal-page #prices .dp-dropdown--class .dp-dropdown__check {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
        opacity: 0;
        transform: scale(0.85);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }
    .deal-page #prices .dp-dropdown--class .dp-dropdown__option.active .dp-dropdown__check {
        opacity: 1;
        transform: scale(1);
    }
    /* Duration dropdown options when open */
    .deal-page #prices .dp-dropdown--duration .dp-dropdown__option {
        width: 100%;
        justify-content: space-between;
        padding: 16px 20px;
        border-radius: 2px;
        border-left: 4px solid transparent;
        background: transparent;
        text-align: left;
    }
    .deal-page #prices .dp-dropdown--duration .dp-dropdown__option.active {
        background-color: #fff;
        border-left-color: #0080FF;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    }
    .deal-page #prices .dp-dropdown--duration .dp-dropdown__option.active .dp-dropdown__option-text {
        color: #0080FF;
        font-weight: 700;
    }
    .deal-page #prices .dp-dropdown--duration .dp-dropdown__check {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
        opacity: 0;
        transform: scale(0.85);
    }
    .deal-page #prices .dp-dropdown--duration .dp-dropdown__option.active .dp-dropdown__check {
        opacity: 1;
        transform: scale(1);
    }
}
/* Mobile: cabin class horizontal chips only */
@media (max-width: 599px) {
    .deal-page #prices .dp-dates__filters-wrap {
        gap: 32px;
    }
    .deal-page #prices .dp-dropdown--class .dp-dropdown__menu {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .deal-page #prices .dp-dropdown--class .dp-dropdown__option {
        min-width: 0;
        min-height: 56px;
        justify-content: center;
        padding: 16px 12px;
        border-radius: 2px;
        border: 1px solid transparent;
        background: #fff;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
        text-align: center;
    }
    /* 3 cabin classes: two on top row, third full width below */
    .deal-page #prices .dp-dropdown--class .dp-dropdown__option:nth-child(3):last-child {
        grid-column: 1 / -1;
    }
    .deal-page #prices .dp-dropdown--class .dp-dropdown__option:not(.active) .dp-dropdown__option-text {
        color: #000;
        font-weight: 400;
    }
    .deal-page #prices .dp-dropdown--class .dp-dropdown__option.active {
        background: rgba(0, 128, 255, 0.05);
        border-color: #0080FF;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
        border-left: 1px solid #0080FF;
    }
    .deal-page #prices .dp-dropdown--class .dp-dropdown__option.active .dp-dropdown__option-text {
        color: #0080FF;
        font-weight: 700;
    }
    .deal-page #prices .dp-dropdown--class .dp-dropdown__check {
        display: none !important;
    }
    /* Duration: dropdown list options when open */
    .deal-page #prices .dp-dropdown--duration .dp-dropdown__option {
        width: 100%;
        justify-content: space-between;
        padding: 16px 20px;
        border-left: 4px solid transparent;
        text-align: left;
    }
    .deal-page #prices .dp-dropdown--duration .dp-dropdown__option.active {
        background-color: #fff;
        border-left-color: #0080FF;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    }
    .deal-page #prices .dp-dropdown--duration .dp-dropdown__option.active .dp-dropdown__option-text {
        color: #0080FF;
        font-weight: 700;
    }
    .deal-page #prices .dp-dropdown--duration .dp-dropdown__check {
        opacity: 0;
    }
    .deal-page #prices .dp-dropdown--duration .dp-dropdown__option.active .dp-dropdown__check {
        opacity: 1;
    }
}
@media (min-width: 1025px) {
    .deal-page #prices .dp-dropdown__native.dp-dates__filter-select {
        position: static;
        width: 172px;
        min-width: 140px;
        height: 38px;
        opacity: 1;
        pointer-events: auto;
        clip: auto;
        overflow: visible;
        margin: 0;
    }
}

/* Lowest price hero card + year panel grid (_DatePrices partial) — all viewports */
.deal-page #prices .dp-dates__year-panel {
    display: none;
}
.deal-page #prices .dp-dates__year-panel.active {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
    padding-top: 16px;
}
.deal-page #prices .dp-dates__year-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    row-gap: 24px;
    align-items: stretch;
    width: 100%;
}
.deal-page #prices .dp-dates__month-group {
    display: contents;
}
.deal-page #prices .dp-dates__price-row {
    display: contents;
}
.deal-page #prices .dp-dates__lowest-feature-container {
    container-type: inline-size;
    container-name: dp-lowest-feature;
    width: 100%;
}
.deal-page #prices .dp-dates__lowest-feature {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 6px;
    box-sizing: border-box;
    width: 100%;
    min-height: 142px;
    height: auto;
    padding: 16px;
    align-items: start;
    border: 1px solid #03C900;
    border-radius: 2px;
    background: #F4F9EF;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    text-align: left;
}
.deal-page #prices .dp-dates__lowest-feature-left {
    display: flex;
    flex-direction: column;
    grid-column: 1;
    grid-row: 1;
    gap: 12px;
    min-width: 0;
}
.deal-page #prices .dp-dates__lowest-feature-badge {
    width: fit-content;
    max-width: max-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 3px 8px;
    background: #fff;
    border: 1px solid #D3E6CE;
    border-radius: 4px;
    color: #0F6318;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
}
.deal-page #prices .dp-dates__lowest-feature-period {
    color: #000;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.14px;
}
.deal-page #prices .dp-dates__lowest-feature-copy {
    grid-column: 1;
    grid-row: 2;
    min-width: 0;
    width: fit-content;
    max-width: 100%;
    align-self: start;
}
.deal-page #prices .dp-dates__lowest-feature-headline {
    margin: 0;
    color: #000;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}
.deal-page #prices .dp-dates__lowest-feature-subtext {
    margin: 2px 0 0;
    color: #797979;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
}
.deal-page #prices .dp-dates__lowest-feature-price-wrap {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    align-self: stretch;
    justify-content: center;
    text-align: right;
    border-left: 1px solid #D3E6CE;
    padding-left: 16px;
    min-width: 0;
}
.deal-page #prices .dp-dates__lowest-feature-price {
    color: #000;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 28px;
}
.deal-page #prices .dp-dates__lowest-feature-pp {
    color: #404040;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.13px;
}
.deal-page #prices .dp-dates__lowest-feature.dp-price-tile.active {
    background: #F4F9EF;
    border: 1px solid #03C900;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
@container dp-lowest-feature (min-width: 600px) {
    .deal-page #prices .dp-dates__lowest-feature {
        grid-template-columns: auto 1fr auto;
        grid-template-rows: auto;
        align-items: center;
        column-gap: 24px;
        row-gap: 0;
        min-height: 110px;
        height: 110px;
        padding: 20px 24px;
    }
    .deal-page #prices .dp-dates__lowest-feature-left {
        grid-column: auto;
        grid-row: auto;
        flex-shrink: 0;
        gap: 8px;
    }
    .deal-page #prices .dp-dates__lowest-feature-copy {
        grid-column: auto;
        grid-row: auto;
        justify-self: start;
        padding-top: 5px;
    }
    .deal-page #prices .dp-dates__lowest-feature-price-wrap {
        grid-column: auto;
        grid-row: auto;
        flex-shrink: 0;
        align-self: center;
        justify-content: flex-start;
        padding-left: 24px;
    }
    .deal-page #prices .dp-dates__lowest-feature-badge {
        font-size: 14px;
        padding: 4px 10px;
    }
    .deal-page #prices .dp-dates__lowest-feature-period {
        line-height: 24px;
    }
    .deal-page #prices .dp-dates__lowest-feature-headline {
        font-size: 16px;
        line-height: 24px;
    }
    .deal-page #prices .dp-dates__lowest-feature-subtext {
        margin-top: 4px;
        font-size: 14px;
        line-height: 20px;
    }
    .deal-page #prices .dp-dates__lowest-feature-subtext-line2 {
        display: block;
    }
}
@supports not (container-type: inline-size) {
    @media (min-width: 600px) {
        .deal-page #prices .dp-dates__lowest-feature {
            grid-template-columns: auto 1fr auto;
            grid-template-rows: auto;
            align-items: center;
            column-gap: 24px;
            row-gap: 0;
            min-height: 110px;
            height: 110px;
            padding: 20px 24px;
        }
        .deal-page #prices .dp-dates__lowest-feature-left {
            grid-column: auto;
            grid-row: auto;
            flex-shrink: 0;
            gap: 8px;
        }
        .deal-page #prices .dp-dates__lowest-feature-copy {
            grid-column: auto;
            grid-row: auto;
            justify-self: start;
        }
        .deal-page #prices .dp-dates__lowest-feature-price-wrap {
            grid-column: auto;
            grid-row: auto;
            flex-shrink: 0;
            align-self: center;
            justify-content: flex-start;
            padding-left: 24px;
        }
        .deal-page #prices .dp-dates__lowest-feature-badge {
            font-size: 14px;
            padding: 4px 10px;
        }
        .deal-page #prices .dp-dates__lowest-feature-period {
            line-height: 24px;
        }
        .deal-page #prices .dp-dates__lowest-feature-headline {
            font-size: 16px;
            line-height: 24px;
        }
        .deal-page #prices .dp-dates__lowest-feature-subtext {
            margin-top: 4px;
            font-size: 14px;
            line-height: 20px;
        }
        .deal-page #prices .dp-dates__lowest-feature-subtext-line2 {
            display: block;
        }
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    .deal-page #prices .dp-dates__year-panel-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (min-width: 1025px) and (max-width: 1220px) {
    .deal-page #prices .dp-dates__year-panel-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (min-width: 1221px) and (max-width: 1500px) {
    .deal-page #prices .dp-dates__year-panel-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
@media (min-width: 1501px) {
    .deal-page #prices .dp-dates__year-panel-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

/* Contact-only section shell */
.deal-page #prices .dp-dates--contact-cta {
    padding: 20px 24px 32px;
    overflow: visible;
}
.deal-page #prices .dp-dates--contact-cta .dp-dates__header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px 24px;
    margin-bottom: 8px;
}
.deal-page #prices .dp-dates--contact-cta .dp-dates__title {
    font-family: "Noto Serif", var(--font-section-title, ui-serif, Georgia, "Times New Roman", serif);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    color: #1A1C1C;
    margin: 0;
}
@media (min-width: 1025px) {
    .deal-page #prices .dp-dates--contact-cta .dp-dates__title {
        line-height: 40px;
    }
}
@media (max-width: 1024px) {
    .deal-page #prices .dp-dates--contact-cta .dp-dates__title {
        font-weight: 600;
        color: #000000;
    }
}

.deal-page .dp-dates__contact-module-wrap {
    margin-top: 20px;
}
.deal-page .dp-dates__contact-module-wrap[hidden] {
    display: none !important;
}
.deal-page .dp-dates--layout-empty .dp-dates__year-bar,
.deal-page .dp-dates--layout-empty .dp-dates__year-panel {
    display: none !important;
}
.deal-page .dp-dates--layout-empty .dp-dates__contact-module-wrap {
    margin-top: 12px;
}
.deal-page .dp-dates--mode-single .dp-dates__year-panel-grid,
.deal-page .dp-dates--mode-single .dp-dates__lowest-feature {
    display: none !important;
}
.deal-page .dp-dates--layout-single-price .dp-dates__year-panel-grid {
    display: none !important;
}
.deal-page #prices .dp-dates--layout-single-price .dp-dates__lowest-feature,
.deal-page #prices .dp-dates--layout-single-price .dp-dates__lowest-feature.active,
.deal-page #prices .dp-dates--layout-single-price .dp-dates__lowest-feature.dp-price-tile.active {
    display: grid !important;
    border: 1px solid #0080FF;
    background: #FFFFFF;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.deal-page .dp-dates--layout-single-price .dp-dates__lowest-feature-badge,
.deal-page .dp-dates--layout-single-price .dp-dates__lowest-feature-pp {
    display: none !important;
}
.deal-page .dp-dates--mode-single .dp-dates__contact-module-wrap,
.deal-page .dp-dates--layout-single-price .dp-dates__contact-module-wrap {
    margin-top: 20px;
}
.deal-page .dp-booking-sidebar__contact-price,
.deal-page .dp-booking-mobile__contact-price,
.deal-page .dp-mobile-footer__contact-price,
.deal-page .dp-sticky-nav__contact-price {
    font-family: var(--font-section-title);
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    color: #1A1C1C;
}
.deal-page .dp-sticky-nav__contact-price {
    font-size: inherit;
    line-height: inherit;
}
.deal-page .dp-mobile-footer__contact-price {
    font-size: 16px;
    line-height: 1.3;
}

.deal-page .dp-dates__contact-module {
    box-sizing: border-box;
    width: 100%;
    max-width: 799px;
    margin-left: auto;
    margin-right: auto;
    padding: 24px 24px 28px;
    border-radius: 2px;
    border: 1px solid #E6E6E6;
    background: #F2FBFF;
    text-align: center;
    font-family: "Plus Jakarta Sans", var(--font-sans, system-ui, sans-serif);
}
.deal-page .dp-dates--contact-cta .dp-dates__contact-module {
    margin-top: 20px;
}
.deal-page .dp-dates__contact-module--compact {
    padding: 28px 24px;
}
.deal-page .dp-dates__contact-module--compact .dp-dates__contact-icon-wrap,
.deal-page .dp-dates__contact-module--compact .dp-dates__contact-heading {
    display: none;
}
.deal-page .dp-dates__contact-icon-wrap {
    width: 40px;
    height: 40px;
    margin: 0 auto 18px;
    border-radius: 9999px;
    background: #DAEDFF;
    display: flex;
    align-items: center;
    justify-content: center;
}
.deal-page .dp-dates__contact-icon {
    background-color: #0080FF !important;
}
.deal-page .dp-dates__contact-heading {
    font-family: "Plus Jakarta Sans", var(--font-sans, system-ui, sans-serif);
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 12px;
    line-height: 1.3;
}
.deal-page .dp-dates__contact-copy {
    margin: 0 auto 24px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #000000;
    max-width: 522px;
}
.deal-page .dp-dates__contact-module--compact .dp-dates__contact-copy {
    margin-top: 0;
    margin-bottom: 20px;
}
.deal-page .dp-dates__contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: stretch;
}
.deal-page .dp-dates__contact-action-btn {
    flex: 0 1 auto;
    min-width: 173px;
    min-height: 39px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: "Plus Jakarta Sans", var(--font-sans, system-ui, sans-serif);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 20px;
    border-radius: 2px;
    box-sizing: border-box;
    padding: 9px 28px;
    border: none;
    box-shadow:
        0 2.32px 3.47px -2.32px #BFDBFE,
        0 5.79px 8.68px -1.74px #BFDBFE;
}
.deal-page .dp-dates__contact-module .dp-btn--deal-blue {
    background: #0080FF;
    color: #fff;
}
.deal-page .dp-dates__contact-module .dp-btn--deal-blue:hover {
    background: #0070e6;
    color: #fff;
}
.deal-page .dp-dates__contact-module .dp-btn--deal-green {
    background: #039E00;
    color: #fff;
}
.deal-page .dp-dates__contact-module .dp-btn--deal-green:hover {
    background: #028700;
    color: #fff;
}
@media (max-width: 639px) {
    .deal-page .dp-dates__contact-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .deal-page .dp-dates__contact-action-btn {
        min-width: 0;
        width: 100%;
        max-width: none;
    }
}

/* Narrow phones (<390px): shared tokens, gutters, carousel cards, booking card */
@media (max-width: 389px) {
    .deal-page {
        --dp-gutter-inline-mobile: clamp(8px, 3.2vw, 12px);
        --dp-narrow-section-padding: var(--dp-gutter-inline-mobile);
        --dp-narrow-gap: clamp(6px, 2vw, 8px);
        --dp-narrow-cta-font: clamp(10px, 2.8vw, 12px);
        --dp-narrow-cta-padding-y: clamp(8px, 2.2vw, 10px);
        --dp-narrow-cta-padding-x: clamp(3px, 1vw, 8px);
        --dp-narrow-cta-min-height: clamp(36px, 10vw, 40px);
        --dp-narrow-cta-icon: clamp(12px, 3.6vw, 20px);
        --dp-narrow-cta-letter-spacing: 0.02em;
        --dp-narrow-btn-font: clamp(14px, 4vw, 18px);
        --dp-narrow-btn-min-height: clamp(44px, 12vw, 52px);
        --dp-narrow-btn-padding: clamp(12px, 3.5vw, 16px);
        --dp-narrow-title-font: clamp(20px, 5.5vw, 24px);
        --dp-narrow-body-font: clamp(13px, 3.6vw, 16px);
        --dp-narrow-card-width: min(310px, calc(100vw - (var(--dp-gutter-inline-mobile) * 2)));
        padding-bottom: 100px;
    }

    /* Grid owns side gutters; inner sections drop duplicate horizontal padding */
    .deal-page .dp-desktop-grid {
        padding-left: var(--dp-gutter-inline-mobile);
        padding-right: var(--dp-gutter-inline-mobile);
    }

    .deal-page .dp-section.dp-carousel.dp-carousel--feature {
        padding-left: 0;
        padding-right: 0;
    }

    .deal-page .dp-booking-mobile {
        padding-left: 0;
        padding-right: 0;
    }

    .deal-page .dp-deal-tailor-escape {
        padding-left: 0;
        padding-right: 0;
    }

    .deal-page .dp-section.dp-similar {
        padding-left: var(--dp-gutter-inline-mobile);
        padding-right: var(--dp-gutter-inline-mobile);
    }

    .deal-page .dp-carousel--feature .dp-card.dp-card--feature {
        flex: 0 0 var(--dp-narrow-card-width);
    }

    .deal-page .dp-booking-mobile {
        padding: 24px 0 0 4px;
        gap: 11px;
    }

    .deal-page .dp-booking-mobile__hotel-name {
        font-size: clamp(22px, 6vw, 30px);
        line-height: 1.2;
    }

    .deal-page .dp-booking-mobile__price-row .dp-price-block__amount {
        font-size: clamp(22px, 6vw, 30px);
        line-height: 1.2;
    }

    /* Dynamic button sizing — deal-page CTAs under 390px (mobile footer uses its own Figma sizing) */
    .deal-page .dp-btn:not(.dp-mobile-footer__cta) {
        font-size: var(--dp-narrow-cta-font);
        padding: var(--dp-narrow-cta-padding-y) var(--dp-narrow-cta-padding-x);
        min-height: var(--dp-narrow-cta-min-height);
        letter-spacing: var(--dp-narrow-cta-letter-spacing);
        line-height: 1.2;
        gap: clamp(4px, 1.2vw, 8px);
        min-width: 0;
    }

    .deal-page .dp-btn:not(.dp-mobile-footer__cta) .icon.deal-icon--md {
        width: var(--dp-narrow-cta-icon);
        height: var(--dp-narrow-cta-icon);
        flex-shrink: 0;
    }

    .deal-page .dp-booking-mobile__cta .dp-btn {
        font-size: clamp(11px, 3vw, 14px);
        padding: clamp(12px, 3.5vw, 16px) clamp(14px, 4vw, 20px);
    }

    .deal-page .dp-card__cta-row,
    .deal-page .dp-card--feature .dp-card__cta-row {
        gap: var(--dp-narrow-gap);
    }

    .deal-page .dp-card--feature .dp-card__cta-row .dp-btn {
        white-space: nowrap;
    }

    .deal-page .dp-card--feature .dp-card__cta-row .dp-btn:only-child {
        min-width: 0;
    }

    .deal-page #restaurants #dp-restaurants-track .dp-card__cta-row .dp-btn,
    .deal-page #activities #dp-activities-track .dp-card__cta-row .dp-btn {
        font-family: "Plus Jakarta Sans", var(--font-sans);
        font-size: var(--dp-narrow-cta-font);
        padding: var(--dp-narrow-cta-padding-y) var(--dp-narrow-cta-padding-x);
        min-height: var(--dp-narrow-cta-min-height);
        letter-spacing: var(--dp-narrow-cta-letter-spacing);
        line-height: 1.2;
        white-space: nowrap;
    }

    .deal-page #restaurants #dp-restaurants-track .dp-card__cta-row,
    .deal-page #activities #dp-activities-track .dp-card__cta-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--dp-narrow-gap);
    }

    .deal-page .dp-similar__cta {
        min-width: 0;
        min-height: var(--dp-narrow-cta-min-height);
        padding: var(--dp-narrow-cta-padding-y) var(--dp-narrow-cta-padding-x);
        font-size: var(--dp-narrow-cta-font);
        letter-spacing: var(--dp-narrow-cta-letter-spacing);
        white-space: nowrap;
    }

    .deal-page .dp-dates__contact-action-btn {
        font-size: var(--dp-narrow-cta-font);
        padding: var(--dp-narrow-cta-padding-y) clamp(12px, 4vw, 20px);
        min-height: var(--dp-narrow-cta-min-height);
        letter-spacing: var(--dp-narrow-cta-letter-spacing);
    }

    .deal-page .dp-deal-tailor-escape__cta {
        padding: var(--dp-narrow-cta-padding-y) clamp(10px, 3vw, 16px);
        font-size: var(--dp-narrow-cta-font);
        min-height: var(--dp-narrow-cta-min-height);
        letter-spacing: var(--dp-narrow-cta-letter-spacing);
    }

    .deal-page .dp-newsletter__submit {
        font-size: clamp(11px, 3vw, 14px);
        padding: var(--dp-narrow-cta-padding-y) clamp(14px, 4vw, 28px);
        min-height: var(--dp-narrow-cta-min-height);
    }

    .deal-page .dp-sticky-nav__enquire {
        padding: var(--dp-narrow-cta-padding-y) var(--dp-narrow-cta-padding-x);
        font-size: var(--dp-narrow-cta-font);
        min-height: var(--dp-narrow-cta-min-height);
        letter-spacing: var(--dp-narrow-cta-letter-spacing);
    }

    #dp-quote-sheet .dp-btn {
        font-size: var(--dp-narrow-btn-font);
    }

    #dp-quote-sheet .dp-btn--quote-primary {
        height: auto;
        min-height: var(--dp-narrow-btn-min-height);
        padding: var(--dp-narrow-btn-padding);
        min-width: 0;
        width: 100%;
    }

    #dp-quote-sheet .dp-s2-calendar {
        padding-left: 12px;
        padding-right: 12px;
    }

    #dp-quote-sheet .dp-s2-calendar__day {
        height: 36px;
        padding: 8px 0;
        font-size: 12px;
    }

    body.dp-mobile-footer-visible div#superchat-widget,
    body.dp-mobile-footer-visible div#superchat-widget-content-root {
        bottom: 82px !important;
    }

    body.dp-mobile-footer-visible div#responseiq_app_frame_container > * {
        bottom: 98px !important;
    }
}
