.ndn-booking {
    --ndn-b-accent: #A9834A;
    --ndn-b-accent-soft: rgba(200, 164, 106, 0.12);
    --ndn-b-primary: #1A1A1A;
    --ndn-b-gold: #c9a557;
    --ndn-b-ink: #0f1a2b;
    --ndn-b-muted: #546070;
    --ndn-b-bg: #ffffff;
    --ndn-b-surface: #f8fafb;
    --ndn-b-border: rgba(26, 26, 26, 0.08);
    --ndn-b-radius: 20px;
    --ndn-b-shadow: 0 32px 80px -32px rgba(26, 26, 26, 0.25);
    --ndn-b-t: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    padding: clamp(40px, 6vw, 90px) 20px;
    font-family: 'DM Sans', 'Jost', system-ui, sans-serif;
    color: var(--ndn-b-ink);
    isolation: isolate;
}
.ndn-booking::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1200px 400px at 85% -20%, rgba(200, 164, 106, 0.10), transparent 60%),
        radial-gradient(900px 500px at 15% 110%, rgba(201,165,87,0.10), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #fafcfc 100%);
    z-index: -1;
}
.ndn-booking__wrap {
    max-width: 1200px;
    margin: 0 auto;
}

/* ── INTRO ─────────────────────────────────── */
.ndn-booking__intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
}
/* Eyebrow — uses shared hero-eyebrow + laser-device seed SVG.
   Wrapper styling only; seed-device animations live globally. */
.ndn-booking__intro .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto 14px;
    color: var(--ndn-b-accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.ndn-booking__intro .hero-eyebrow__seed {
    width: 18px;
    height: 34px;
}
.ndn-booking__title {
    font-family: "Times New Roman", Times, serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--ndn-b-primary);
    margin: 0 0 14px;
    letter-spacing: -0.01em;
}
.ndn-booking__subtitle {
    font-size: 16px;
    line-height: 1.65;
    color: var(--ndn-b-muted);
    margin: 0;
}

/* ── PROGRESS RAIL ──────────────────────────────────────────
   Each step is a vertical dot+label. Connector lines sit behind
   the dots, span edge-to-edge between neighbouring dots, and fill
   with accent colour as soon as the step on the LEFT is done.
   ──────────────────────────────────────────────────────────── */
.ndn-booking__progress {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    list-style: none;
    margin: 0 auto 32px;
    padding: 0 10px;
    max-width: 720px;
    counter-reset: ndn-pstep;
}
.ndn-booking__pstep {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

/* Connector line: sits behind the dots, spans to the next step */
.ndn-booking__pstep:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 18px;                          /* half of dot height (36/2) */
    left: calc(50% + 20px);             /* just past current dot's edge */
    width: calc(100% - 40px);           /* reach the next dot's edge */
    height: 2px;
    background: var(--ndn-b-border);
    border-radius: 2px;
    transition: background-color var(--ndn-b-t);
    z-index: 0;
}
.ndn-booking__pstep.is-done:not(:last-child)::after {
    background: linear-gradient(90deg, var(--ndn-b-accent) 0%, var(--ndn-b-accent) 100%);
}
/* When current step is active AND the previous is done, half-fill the line
   coming into this step to signal "halfway there". */
.ndn-booking__pstep.is-active:not(:first-child):not(:last-child)::after {
    background: linear-gradient(90deg,
        var(--ndn-b-border) 0%, var(--ndn-b-border) 100%);
}

/* The dot (circle) */
.ndn-booking__pdot {
    position: relative;
    z-index: 1;
    width: 36px; height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid var(--ndn-b-border);
    color: var(--ndn-b-muted);
    font-family: "Times New Roman", Times, serif;
    font-weight: 700;
    font-size: 14px;
    transition:
        background-color var(--ndn-b-t),
        border-color var(--ndn-b-t),
        color var(--ndn-b-t),
        transform var(--ndn-b-t),
        box-shadow var(--ndn-b-t);
}

/* Active state — current step */
.ndn-booking__pstep.is-active .ndn-booking__pdot {
    background: var(--ndn-b-primary);
    border-color: var(--ndn-b-primary);
    color: #fff;
    transform: scale(1.08);
    box-shadow:
        0 0 0 6px rgba(200, 164, 106, 0.14),
        0 10px 24px -8px rgba(26, 26, 26, 0.35);
}

/* Done state — step completed */
.ndn-booking__pstep.is-done .ndn-booking__pdot {
    background: var(--ndn-b-accent);
    border-color: var(--ndn-b-accent);
    color: transparent;          /* hide the number */
}
.ndn-booking__pstep.is-done .ndn-booking__pdot > span { visibility: hidden; }

/* Checkmark for done steps — CSS-drawn tick centered in the dot */
.ndn-booking__pstep.is-done .ndn-booking__pdot::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 10px; height: 6px;
    border-left:   2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translate(-50%, -65%) rotate(-45deg);
}

/* Labels below the dot */
.ndn-booking__plabel {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ndn-b-muted);
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color var(--ndn-b-t);
}
.ndn-booking__pstep.is-active .ndn-booking__plabel,
.ndn-booking__pstep.is-done   .ndn-booking__plabel {
    color: var(--ndn-b-primary);
}
.ndn-booking__pstep.is-active .ndn-booking__plabel {
    font-weight: 700;
}

@media (max-width: 640px) {
    .ndn-booking__progress { padding: 0 4px; }
    .ndn-booking__plabel   { font-size: 11px; }
    .ndn-booking__pdot     { width: 32px; height: 32px; font-size: 13px; }
    .ndn-booking__pstep:not(:last-child)::after {
        top: 16px;
        left: calc(50% + 18px);
        width: calc(100% - 36px);
    }
}

/* ── PANEL (steps container) ───────────────── */
.ndn-booking__panel {
    position: relative;
    background: var(--ndn-b-bg);
    border: 1px solid var(--ndn-b-border);
    border-radius: var(--ndn-b-radius);
    padding: clamp(22px, 3vw, 40px);
    box-shadow: var(--ndn-b-shadow);
    overflow: hidden;
}
.ndn-booking__gold {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--ndn-b-gold) 20%,
        var(--ndn-b-accent) 50%,
        var(--ndn-b-gold) 80%,
        transparent 100%);
}

.ndn-booking__step {
    display: none;
    animation: ndn-b-fade 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.ndn-booking__step.is-active { display: block; }
@keyframes ndn-b-fade {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.ndn-booking__step-title {
    font-family: "Times New Roman", Times, serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--ndn-b-primary);
    margin: 0 0 6px;
}
.ndn-booking__step-hint {
    font-size: 14px;
    color: var(--ndn-b-muted);
    margin: 0 0 22px;
}

/* ── TREATMENTS GRID ───────────────────────── */
.ndn-booking__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}
.ndn-booking__card {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 0;
    border: 2px solid var(--ndn-b-border);
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
    transition: border-color var(--ndn-b-t), transform var(--ndn-b-t), box-shadow var(--ndn-b-t);
}
.ndn-booking__card:hover,
.ndn-booking__card:focus-visible {
    border-color: var(--ndn-b-accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -18px rgba(26, 26, 26, 0.28);
    outline: none;
}
.ndn-booking__card.is-selected {
    border-color: var(--ndn-b-accent);
    box-shadow: 0 0 0 6px var(--ndn-b-accent-soft), 0 20px 40px -18px rgba(26, 26, 26, 0.28);
}
.ndn-booking__card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--ndn-b-surface);
}
.ndn-booking__card-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}
.ndn-booking__card:hover .ndn-booking__card-media img { transform: scale(1.08); }
.ndn-booking__card-badge {
    position: absolute;
    top: 12px; left: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(26, 26, 26, 0.72);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.ndn-booking__card-check {
    position: absolute;
    top: 12px; right: 12px;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.6);
    transition: opacity var(--ndn-b-t), transform var(--ndn-b-t), background-color var(--ndn-b-t);
    box-shadow: 0 6px 16px -6px rgba(26, 26, 26, 0.3);
}
.ndn-booking__card.is-selected .ndn-booking__card-check {
    opacity: 1;
    transform: scale(1);
    background: var(--ndn-b-accent);
    color: #fff;
}
.ndn-booking__card-check svg { width: 16px; height: 16px; }
.ndn-booking__card-body {
    padding: 16px 18px 18px;
}
.ndn-booking__card-title {
    font-family: "Times New Roman", Times, serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ndn-b-primary);
    margin: 0 0 4px;
    line-height: 1.25;
}
.ndn-booking__card-subtitle {
    font-size: 13.5px;
    color: var(--ndn-b-muted);
    margin: 0;
    line-height: 1.45;
}

/* ── TIME SLOTS ────────────────────────────── */
.ndn-booking__slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}
.ndn-booking__slot {
    position: relative;
    padding: 20px 22px;
    border: 2px solid var(--ndn-b-border);
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
    text-align: left;
    transition: border-color var(--ndn-b-t), background var(--ndn-b-t), transform var(--ndn-b-t);
}
.ndn-booking__slot:hover,
.ndn-booking__slot:focus-visible {
    border-color: var(--ndn-b-accent);
    transform: translateY(-2px);
    outline: none;
}
.ndn-booking__slot.is-selected {
    border-color: var(--ndn-b-accent);
    background: var(--ndn-b-accent-soft);
}
.ndn-booking__slot-label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--ndn-b-primary);
    margin-bottom: 2px;
}
.ndn-booking__slot-hours {
    font-size: 13.5px;
    color: var(--ndn-b-muted);
}

/* ── PREFERRED DAY + SUB-HEADINGS ──────────────── */
.ndn-booking__subhead {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--ndn-b-muted);
    margin: 4px 0 12px;
}
.ndn-booking__subhead + .ndn-booking__days { margin-bottom: 26px; }

.ndn-booking__days {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.ndn-booking__day {
    padding: 11px 18px;
    border: 2px solid var(--ndn-b-border);
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
    font-family: inherit;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ndn-b-primary);
    transition: border-color var(--ndn-b-t), background var(--ndn-b-t), transform var(--ndn-b-t);
}
.ndn-booking__day:hover,
.ndn-booking__day:focus-visible {
    border-color: var(--ndn-b-accent);
    transform: translateY(-2px);
    outline: none;
}
.ndn-booking__day.is-selected {
    border-color: var(--ndn-b-accent);
    background: var(--ndn-b-accent-soft);
}

/* ── CONFIRMATION — split layout (form left, summary right) ── */
.ndn-booking__confirm-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 28px;
    align-items: start;
}
@media (max-width: 860px) {
    .ndn-booking__confirm-grid { grid-template-columns: 1fr; }
}

.ndn-booking__summary {
    display: grid;
    gap: 14px;
    padding: 26px;
    border-radius: 16px;
    background: var(--ndn-b-surface);
    border: 1px solid var(--ndn-b-border);
    margin-bottom: 0;
    position: sticky;
    top: 20px;
}
.ndn-booking__summary-title {
    font-family: var(--ndn-font-heading, "Times New Roman", serif);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ndn-b-accent);
    margin: 0 0 6px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--ndn-b-border);
}
.ndn-booking__sum-trust {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 6px;
    padding-top: 16px;
    border-top: 1px solid var(--ndn-b-border);
    font-size: 12.5px;
    color: var(--ndn-b-muted);
    line-height: 1.5;
}
.ndn-booking__sum-trust svg {
    width: 16px; height: 16px;
    color: var(--ndn-success, #2E7D32);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ══════════════════════════════════════════════
   CF7 form — full NDN override
   (forces premium look over default CF7 markup)
   ══════════════════════════════════════════════ */
.ndn-cf {
    padding: 28px;
    background: var(--ndn-b-bg);
    border: 1px solid var(--ndn-b-border);
    border-radius: 18px;
    box-shadow: 0 18px 40px -20px rgba(26, 26, 26, 0.12);
}
.ndn-cf .wpcf7-form { margin: 0; padding: 0; }
.ndn-cf .wpcf7 { margin: 0; }
.ndn-cf .screen-reader-response { position: absolute; left: -9999px; }
.ndn-cf .wpcf7 p { margin: 0; }
.ndn-cf br { display: none; }

/* Layout helpers inside form (declared by our CF7 template) */
.ndn-cf .ndn-cf__row      { display: block; margin-bottom: 16px; }
.ndn-cf .ndn-cf__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
@media (max-width: 520px) { .ndn-cf .ndn-cf__grid { grid-template-columns: 1fr; } }

/* Labels */
.ndn-cf__label {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ndn-b-muted);
    margin-bottom: 8px;
}
.ndn-cf__req { color: var(--ndn-cta, #B91C1C); font-weight: 700; margin-left: 2px; }

/* Inputs — kill all CF7 defaults, rebuild NDN style */
.ndn-cf input[type="text"],
.ndn-cf input[type="email"],
.ndn-cf input[type="tel"],
.ndn-cf input[type="url"],
.ndn-cf input[type="number"],
.ndn-cf input[type="date"],
.ndn-cf textarea,
.ndn-cf select {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 13px 15px;
    margin-top: 6px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    color: var(--ndn-b-ink);
    background: #fff;
    border: 1.5px solid var(--ndn-b-border);
    border-radius: 10px;
    outline: none;
    transition:
        border-color var(--ndn-b-t),
        box-shadow var(--ndn-b-t),
        background var(--ndn-b-t);
    -webkit-appearance: none;
            appearance: none;
    box-shadow: none;
}
.ndn-cf textarea {
    min-height: 110px;
    resize: vertical;
    line-height: 1.55;
}
.ndn-cf input::placeholder,
.ndn-cf textarea::placeholder {
    color: rgba(107, 94, 75, 0.55);
    font-weight: 400;
}
.ndn-cf input:focus,
.ndn-cf textarea:focus,
.ndn-cf select:focus {
    border-color: var(--ndn-b-accent);
    box-shadow: 0 0 0 4px rgba(200, 164, 106, 0.14);
    background: #fffdf9;
}
.ndn-cf input.ndn-cf__readonly,
.ndn-cf textarea.ndn-cf__readonly {
    background: var(--ndn-b-surface);
    color: var(--ndn-b-accent);
    font-weight: 600;
    cursor: default;
    font-style: italic;
}
.ndn-cf input.ndn-cf__readonly:focus {
    background: var(--ndn-b-surface);
    box-shadow: none;
    border-color: var(--ndn-b-border);
}

/* Acceptance checkbox */
.ndn-cf__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 18px 0 20px;
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--ndn-b-muted);
    cursor: pointer;
}
.ndn-cf__checkbox .wpcf7-list-item { margin: 0; }
.ndn-cf__checkbox .wpcf7-list-item-label { display: none; }
.ndn-cf__checkbox a {
    color: var(--ndn-b-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.ndn-cf__checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px; height: 20px;
    flex-shrink: 0;
    margin: 1px 0 0;
    border: 1.5px solid var(--ndn-b-border);
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    background: #fff;
    transition: border-color var(--ndn-b-t), background var(--ndn-b-t);
}
.ndn-cf__checkbox input[type="checkbox"]:hover { border-color: var(--ndn-b-accent); }
.ndn-cf__checkbox input[type="checkbox"]:checked {
    background: var(--ndn-b-accent);
    border-color: var(--ndn-b-accent);
}
.ndn-cf__checkbox input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 3px; left: 6px;
    width: 5px; height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Submit button — premium gold gradient, matches design system */
.ndn-cf .ndn-cf__submit { margin-top: 6px; }
.ndn-cf input[type="submit"],
.ndn-cf button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #fff;
    background: linear-gradient(135deg, var(--ndn-b-accent) 0%, var(--ndn-accent-dark, #A9834A) 100%);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    box-shadow:
        0 14px 30px -12px rgba(169, 131, 74, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition:
        transform var(--ndn-b-t),
        box-shadow var(--ndn-b-t),
        background var(--ndn-b-t);
    -webkit-appearance: none;
            appearance: none;
}
.ndn-cf input[type="submit"]:hover,
.ndn-cf button[type="submit"]:hover {
    background: linear-gradient(135deg, var(--ndn-accent-dark, #A9834A) 0%, #8a6b3a 100%);
    transform: translateY(-2px);
    box-shadow:
        0 20px 38px -12px rgba(169, 131, 74, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.ndn-cf input[type="submit"]:active,
.ndn-cf button[type="submit"]:active { transform: translateY(0); }

/* Loading spinner */
.ndn-cf .wpcf7-spinner {
    display: inline-block;
    background: var(--ndn-b-accent);
    margin-left: 10px;
}

/* Validation messages */
.ndn-cf .wpcf7-not-valid-tip {
    display: block;
    margin-top: 6px;
    padding-left: 2px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ndn-cta, #B91C1C);
}
.ndn-cf input.wpcf7-not-valid,
.ndn-cf textarea.wpcf7-not-valid {
    border-color: var(--ndn-cta, #B91C1C);
    box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.08);
}

/* Response messages */
.ndn-cf .wpcf7-response-output {
    margin: 20px 0 0;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--ndn-b-border);
    background: var(--ndn-b-surface);
    color: var(--ndn-b-ink);
}
.ndn-cf .wpcf7 form.sent .wpcf7-response-output {
    background: rgba(46, 125, 50, 0.08);
    border-color: rgba(46, 125, 50, 0.35);
    color: #1b5e20;
}
.ndn-cf .wpcf7 form.invalid .wpcf7-response-output,
.ndn-cf .wpcf7 form.failed .wpcf7-response-output {
    background: rgba(185, 28, 28, 0.06);
    border-color: rgba(185, 28, 28, 0.3);
    color: #7a1515;
}

.ndn-cf__fallback {
    padding: 24px;
    text-align: center;
    color: var(--ndn-b-muted);
    font-size: 14px;
    font-style: italic;
}
.ndn-booking__sum-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.ndn-booking__sum-icon {
    flex-shrink: 0;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--ndn-b-accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.ndn-booking__sum-icon svg { width: 16px; height: 16px; }
.ndn-booking__sum-body { min-width: 0; flex: 1; }
.ndn-booking__sum-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ndn-b-muted);
}
.ndn-booking__sum-value {
    font-size: 17px;
    font-weight: 600;
    color: var(--ndn-b-primary);
    line-height: 1.4;
}

.ndn-booking__confirm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ndn-b-accent) 0%, #8a6b3a 100%);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.01em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 18px 36px -14px rgba(200, 164, 106, 0.55);
    transition: transform var(--ndn-b-t), box-shadow var(--ndn-b-t);
    position: relative;
    overflow: hidden;
}
.ndn-booking__confirm::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35), transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.9s ease;
}
.ndn-booking__confirm:hover,
.ndn-booking__confirm:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 24px 46px -14px rgba(200, 164, 106, 0.65);
    outline: none;
}
.ndn-booking__confirm:hover::after { transform: translateX(100%); }
.ndn-booking__confirm svg { width: 18px; height: 18px; }

/* ── STEP NAV ──────────────────────────────── */
.ndn-booking__nav {
    display: flex;
    justify-content: space-between;
    margin-top: 22px;
    gap: 10px;
}
.ndn-booking__nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border: 1px solid var(--ndn-b-border);
    background: #fff;
    border-radius: 999px;
    color: var(--ndn-b-primary);
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    transition: background var(--ndn-b-t), border-color var(--ndn-b-t);
}
.ndn-booking__nav-btn:hover { background: var(--ndn-b-surface); border-color: var(--ndn-b-accent); }
.ndn-booking__nav-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}
.ndn-booking__nav-btn svg { width: 14px; height: 14px; }

/* ── TRUST ROW ─────────────────────────────── */
.ndn-booking__trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 28px;
    list-style: none;
    padding: 0;
}
.ndn-booking__trust li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--ndn-b-muted);
    font-weight: 500;
}
.ndn-booking__trust svg {
    width: 16px; height: 16px;
    color: var(--ndn-b-accent);
    flex-shrink: 0;
}
/* Mobile — tighter gap + smaller type, still readable.
   On very narrow phones stack items 2-per-row with centered alignment. */
@media (max-width: 640px) {
    /* Hide the trust badges row and the phone/WhatsApp side links on mobile */
    .ndn-booking__trust,
    .ndn-booking__side { display: none; }
}
@media (max-width: 420px) {
    .ndn-booking__trust {
        gap: 8px 14px;
        padding: 0 8px;
    }
    .ndn-booking__trust li { font-size: 12px; gap: 6px; }
}

/* ── FALLBACK SIDE ACTIONS ─────────────────── */
.ndn-booking__side {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 22px;
    font-size: 14px;
    color: var(--ndn-b-muted);
    flex-wrap: wrap;
}
.ndn-booking__side a {
    color: var(--ndn-b-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.ndn-booking__side a:hover { color: var(--ndn-b-accent); }
.ndn-booking__side svg { width: 14px; height: 14px; }

/* ── PROMO POP-UP ───────────────────────────────────────────
   Brand-styled modal: gold accent, serif heading, soft shadow.
   Inherits the booking palette via CSS vars; no duplication.
   ──────────────────────────────────────────────────────────── */
/* The modal is portalled to <body> (outside .ndn-booking), so it needs its
   own box-sizing reset — otherwise width:100% + padding overflows on the right. */
.ndn-promo-modal,
.ndn-promo-modal *,
.ndn-promo-modal *::before,
.ndn-promo-modal *::after { box-sizing: border-box; }
.ndn-promo-modal {
    --pm-gold: #c9a557;
    --pm-gold-deep: #A9834A;
    --pm-ink: #0f1a2b;
    --pm-primary: #1A1A1A;
    --pm-muted: #546070;
    --pm-bg: #ffffff;
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: 'DM Sans', 'Jost', system-ui, sans-serif;
    color: var(--pm-ink);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.ndn-promo-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}
.ndn-promo-modal[hidden] { display: none; }
.ndn-promo-modal__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(800px 400px at 70% 20%, rgba(201,165,87,0.20), transparent 60%),
        rgba(15, 26, 43, 0.62);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
}
.ndn-promo-modal__dialog {
    position: relative;
    width: min(440px, 100%);
    background: var(--pm-bg);
    border-radius: 22px;
    padding: 40px 32px 28px;
    text-align: center;
    box-shadow: 0 32px 80px -20px rgba(15, 26, 43, 0.45);
    overflow: hidden;
    transform: translateY(20px) scale(0.96);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.ndn-promo-modal.is-open .ndn-promo-modal__dialog {
    transform: translateY(0) scale(1);
}
.ndn-promo-modal__dialog::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pm-gold-deep), var(--pm-gold), var(--pm-gold-deep));
}
.ndn-promo-modal__dialog::after {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,165,87,0.18), transparent 65%);
    pointer-events: none;
}
.ndn-promo-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 0;
    background: rgba(15, 26, 43, 0.06);
    border-radius: 50%;
    color: var(--pm-ink);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 2;
}
.ndn-promo-modal__close:hover {
    background: rgba(15, 26, 43, 0.12);
    transform: rotate(90deg);
}
.ndn-promo-modal__close svg { width: 18px; height: 18px; }
.ndn-promo-modal__logo {
    margin: 0 auto 18px;
    position: relative;
    z-index: 1;
}
.ndn-promo-modal__logo img {
    max-width: 130px;
    max-height: 60px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}
.ndn-promo-modal__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pm-gold-deep);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}
.ndn-promo-modal__eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pm-gold);
    box-shadow: 0 0 0 4px rgba(201, 165, 87, 0.18);
    animation: ndn-promo-pulse 1.8s ease-in-out infinite;
}
@keyframes ndn-promo-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(201, 165, 87, 0.18); }
    50%      { box-shadow: 0 0 0 8px rgba(201, 165, 87, 0.05); }
}
.ndn-promo-modal__title {
    font-family: "Times New Roman", Times, serif;
    font-size: clamp(22px, 4vw, 28px);
    font-weight: 700;
    line-height: 1.25;
    color: var(--pm-primary);
    margin: 0 0 10px;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}
.ndn-promo-modal__device {
    font-size: 14px;
    font-weight: 600;
    color: var(--pm-muted);
    margin: 0 0 18px;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
}
.ndn-promo-modal__price {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(201,165,87,0.10), rgba(169,131,74,0.06));
    border: 1px solid rgba(201, 165, 87, 0.30);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.ndn-promo-modal__price-amount {
    font-family: "Times New Roman", Times, serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--pm-gold-deep);
    line-height: 1;
}
.ndn-promo-modal__price-unit {
    font-size: 13px;
    font-weight: 600;
    color: var(--pm-muted);
    text-transform: lowercase;
}
.ndn-promo-modal__copy {
    font-size: 14px;
    line-height: 1.6;
    color: var(--pm-muted);
    margin: 0 0 22px;
    position: relative;
    z-index: 1;
}
.ndn-promo-modal__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--pm-gold-deep), var(--pm-gold));
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    border-radius: 12px;
    box-shadow: 0 12px 28px -10px rgba(169, 131, 74, 0.55);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    z-index: 1;
}
.ndn-promo-modal__cta:hover,
.ndn-promo-modal__cta:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px -10px rgba(169, 131, 74, 0.65);
    color: #fff;
}
.ndn-promo-modal__cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.25s ease;
}
.ndn-promo-modal__cta:hover svg { transform: translateX(3px); }
.ndn-promo-modal__dismiss {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 12px;
    border: 0;
    background: transparent;
    color: var(--pm-muted);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(84, 96, 112, 0.4);
    transition: color 0.2s ease;
    position: relative;
    z-index: 1;
}
.ndn-promo-modal__dismiss:hover { color: var(--pm-primary); }

/* ── Mobile tweaks ─────────────────────────── */
@media (max-width: 480px) {
    .ndn-promo-modal__dialog {
        padding: 34px 22px 22px;
        border-radius: 18px;
    }
    .ndn-promo-modal__price-amount { font-size: 32px; }
    .ndn-promo-modal__title { font-size: 20px; }
}

/* ── Reduced motion ─────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .ndn-promo-modal,
    .ndn-promo-modal__dialog,
    .ndn-promo-modal__cta,
    .ndn-promo-modal__close { transition: none; }
    .ndn-promo-modal__eyebrow-dot { animation: none; }
}
