:root {
      --navy: #2D3C69;
      --blue: #4E6BB8;
      --blue-lt: #8AA3E0;
      --blue-hover: #3E5AA3;
      --deep: #16223F;
      --gold: #D9AE33;
      --gold-lt: #EBC85E;
      --gold-deep: #B8901F;
      --bg: #101A33;
      --bg-2: #182444;
      --bg-3: #213056;
      --ink: #EFF2FA;
      --ink-soft: rgba(239, 242, 250, .66);
      --ink-faint: rgba(239, 242, 250, .42);
      --line: rgba(255, 255, 255, .1);
      --line-2: rgba(255, 255, 255, .18);
      --grad-gold: linear-gradient(135deg, var(--gold-lt), var(--gold-deep));
      --grad-blue: linear-gradient(135deg, var(--blue), var(--navy));
      --serif: 'Playfair Display', Georgia, serif;
      --sans: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      --ease: cubic-bezier(.16, 1, .3, 1);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    body {
      font-family: var(--sans);
      background: var(--bg);
      color: var(--ink);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      background-image: radial-gradient(60% 40% at 100% 0%, rgba(78, 107, 184, .16), transparent 60%), radial-gradient(50% 40% at 0% 20%, rgba(217, 174, 51, .06), transparent 60%);
      background-attachment: fixed;
      overflow-x: hidden
    }

    img {
      max-width: 100%;
      display: block
    }

    a {
      text-decoration: none;
      color: inherit
    }

    .wrap {
      max-width: 1080px;
      margin: 0 auto;
      padding: 0 clamp(18px, 4vw, 32px)
    }

    h1,
    h2,
    h3 {
      font-family: var(--serif);
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -.015em
    }

    ::selection {
      background: var(--gold);
      color: var(--deep)
    }

    .eyebrow {
      font-family: var(--sans);
      font-weight: 700;
      font-size: .72rem;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--gold);
      display: inline-flex;
      align-items: center;
      gap: 10px
    }

    .eyebrow::before {
      content: "";
      width: 28px;
      height: 1.5px;
      background: var(--grad-gold)
    }

    /* top bar */
    .topbar {
      border-bottom: 1px solid var(--line);
      background: rgba(16, 26, 51, .85);
      backdrop-filter: blur(14px);
      position: sticky;
      top: 0;
      z-index: 50
    }

    .tb {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 0
    }

    .tb .logo {
      height: 38px;
      width: auto
    }

    .back {
      font-size: .9rem;
      font-weight: 700;
      color: var(--ink-soft);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: .3s
    }

    .back:hover {
      color: var(--gold-lt)
    }

    /* hero band */
    .hero2 {
      padding: clamp(34px, 5vw, 60px) 0 clamp(24px, 3vw, 36px)
    }

    .h2grid {
      display: grid;
      grid-template-columns: 1.25fr .85fr;
      gap: 44px;
      align-items: center
    }

    .h2info h1 {
      font-size: clamp(2rem, 4.4vw, 3.2rem);
      margin: 16px 0 14px
    }

    .status-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: .66rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      font-weight: 700;
      padding: 5px 13px;
      border-radius: 100px;
      margin-bottom: 4px
    }

    .status-pill.open {
      background: rgba(217, 174, 51, .2);
      color: var(--gold-lt);
      border: 1px solid rgba(217, 174, 51, .4)
    }

    .status-pill.soon {
      background: rgba(138, 163, 224, .16);
      color: var(--blue-lt);
      border: 1px solid rgba(138, 163, 224, .35)
    }

    .status-pill .d {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: currentColor
    }

    .facts {
      display: flex;
      flex-direction: column;
      gap: 7px;
      margin-bottom: 16px
    }

    .facts .f {
      display: flex;
      align-items: center;
      gap: 9px;
      color: var(--ink-soft);
      font-size: .98rem
    }

    .facts .f svg {
      width: 16px;
      height: 16px;
      color: var(--blue-lt);
      flex: none
    }

    .facts .f.date {
      color: var(--gold-lt);
      font-weight: 700
    }

    .h2info p {
      color: var(--ink-soft);
      font-weight: 300;
      font-size: 1.06rem;
      max-width: 560px
    }

    .h2media {
      position: relative
    }

    .h2media img {
      width: 100%;
      height: clamp(220px, 26vw, 320px);
      object-fit: cover;
      border-radius: 20px;
      border: 1px solid var(--line-2);
      box-shadow: 0 34px 70px -34px rgba(0, 0, 0, .7)
    }

    /* main grid */
    .applygrid {
      display: grid;
      grid-template-columns: 1fr 1.05fr;
      gap: 34px;
      align-items: start;
      padding-bottom: clamp(40px, 6vw, 80px)
    }

    .excol {
      display: flex;
      flex-direction: column;
      gap: 18px
    }

    .ex-card {
      position: relative;
      border: 1px solid var(--line);
      border-top: 3px solid var(--blue);
      border-radius: 18px;
      padding: 26px 24px;
      overflow: hidden;
      background: linear-gradient(165deg, rgba(78, 107, 184, .16), rgba(255, 255, 255, .012))
    }

    .ex-card.fee {
      border-top-color: var(--gold);
      background: linear-gradient(165deg, rgba(217, 174, 51, .2), rgba(255, 255, 255, .02))
    }

    .ex-card.incl {
      border-top-color: var(--blue-lt);
      background: linear-gradient(165deg, rgba(138, 163, 224, .16), rgba(255, 255, 255, .012))
    }

    .ex-head {
      display: flex;
      align-items: center;
      gap: 13px;
      margin-bottom: 15px
    }

    .ex-ico {
      width: 46px;
      height: 46px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      color: #fff;
      flex: none;
      background: var(--grad-blue);
      box-shadow: 0 10px 22px -12px rgba(0, 0, 0, .6)
    }

    .ex-card.fee .ex-ico {
      background: var(--grad-gold);
      color: var(--deep)
    }

    .ex-ico svg {
      width: 23px;
      height: 23px
    }

    .ex-head h3 {
      font-size: 1.22rem;
      color: #fff
    }

    .ex-intro {
      font-size: .88rem;
      color: var(--ink-soft);
      font-weight: 400;
      line-height: 1.5;
      margin-bottom: 12px;
    }

    .ex-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px
    }

    .ex-list li {
      display: flex;
      gap: 11px;
      color: var(--ink-soft);
      font-size: .95rem;
      font-weight: 400;
      line-height: 1.45
    }

    .ex-list li svg {
      width: 16px;
      height: 16px;
      flex: none;
      margin-top: 3px;
      color: var(--blue-lt)
    }

    .ex-card.incl .ex-list li svg {
      color: var(--blue-lt)
    }

    .fee .big {
      font-family: var(--serif);
      font-size: 2.4rem;
      font-weight: 800;
      background: var(--grad-gold);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      line-height: 1
    }

    .fee .fsub {
      color: var(--ink-soft);
      font-size: .85rem;
      margin: 5px 0 14px
    }

    .fee .frow {
      display: flex;
      flex-direction: column;
      gap: 8px
    }

    .fee .frow .p {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(0, 0, 0, .2);
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: 11px;
      padding: 10px 14px;
      font-size: .87rem;
      color: var(--ink-soft)
    }

    .fee .frow .p b {
      color: #fff;
      font-family: var(--serif);
      font-size: 1.05rem
    }

    .fee .fnote {
      font-size: .76rem;
      color: var(--ink-faint);
      margin-top: 12px;
      border-top: 1px solid var(--line);
      padding-top: 11px
    }

    /* form */
    .formcol {
      position: sticky;
      top: 96px
    }

    .form-card {
      background: linear-gradient(160deg, var(--bg-2), var(--bg-3));
      border: 1px solid var(--line-2);
      border-radius: 22px;
      padding: clamp(26px, 3.2vw, 40px);
      box-shadow: 0 40px 80px -44px rgba(0, 0, 0, .75)
    }

    .form-card h3 {
      color: #fff;
      font-size: 1.5rem;
      margin-bottom: 6px
    }

    .form-card h3 span {
      color: var(--gold-lt)
    }

    .fc-sub {
      color: var(--ink-soft);
      font-size: .9rem;
      margin-bottom: 22px
    }

    .field {
      margin-bottom: 15px
    }

    .field label {
      display: block;
      font-size: .74rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--ink-faint);
      margin-bottom: 7px
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      padding: 13px 15px;
      border: 1.5px solid var(--line);
      border-radius: 11px;
      font-family: var(--sans);
      font-size: .95rem;
      color: var(--ink);
      background: rgba(255, 255, 255, .03);
      transition: .25s
    }

    .field input::placeholder,
    .field textarea::placeholder {
      color: var(--ink-faint)
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      outline: none;
      border-color: var(--gold);
      background: rgba(255, 255, 255, .05);
      box-shadow: 0 0 0 4px rgba(217, 174, 51, .13)
    }

    .field textarea {
      resize: vertical;
      min-height: 88px
    }

    .field.tour input {
      background: rgba(78, 107, 184, .14);
      border-color: rgba(138, 163, 224, .35);
      color: #fff;
      font-weight: 700
    }
    .tour-display {
      background: rgba(78, 107, 184, .14);
      border: 1px solid rgba(138, 163, 224, .35);
      border-radius: 8px;
      padding: 11px 14px;
      color: #fff;
      font-weight: 700;
      font-size: .95rem;
    }

    .field.row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 0
    }

    .field.row>div {
      margin-bottom: 15px
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      width: 100%;
      font-family: var(--sans);
      font-weight: 700;
      font-size: 1rem;
      padding: 17px 30px;
      border: none;
      border-radius: 100px;
      cursor: pointer;
      color: var(--deep);
      background: var(--grad-gold);
      background-size: 160% 160%;
      transition: .35s var(--ease)
    }

    .btn:hover {
      background-position: 100% 50%;
      transform: translateY(-2px);
      box-shadow: 0 16px 36px -14px rgba(217, 174, 51, .7)
    }

    .form-note {
      font-size: .78rem;
      color: var(--ink-faint);
      margin-top: 9px;
      text-align: center
    }

    .form-ok {
      display: none;
      background: rgba(78, 107, 184, .18);
      border: 1px solid var(--blue);
      color: var(--blue-lt);
      padding: 14px;
      border-radius: 12px;
      font-size: .9rem;
      text-align: center;
      margin-bottom: 16px
    }

    /* footer */
    footer {
      border-top: 1px solid var(--line);
      background: var(--bg-2);
      padding: 28px 0;
      color: var(--ink-faint);
      font-size: .85rem
    }

    .foot {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap
    }

    @media(max-width:900px) {
      .h2grid {
        grid-template-columns: 1fr;
        gap: 26px
      }

      .h2media {
        order: -1
      }

      .applygrid {
        grid-template-columns: 1fr
      }

      .formcol {
        position: static
      }
    }

    @media(max-width:600px) {
      .field.row {
        grid-template-columns: 1fr
      }
      .step-nav {
        flex-direction: column;
      }
      .step-nav button {
        width: 100%;
      }
    }
/* ===== Inline validation & alert styles ===== */
.f-error {
  display: block;
  font-size: .78rem;
  color: #e85555;
  margin-top: 4px;
  min-height: 1em;
}
.form-alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: .9rem;
  margin-bottom: 14px;
}
.form-alert-success {
  background: rgba(46,196,134,.12);
  border: 1px solid rgba(46,196,134,.35);
  color: #2ec486;
}
.form-alert-error {
  background: rgba(232,85,85,.1);
  border: 1px solid rgba(232,85,85,.3);
  color: #e85555;
}

/* ── jQuery Validate — invalid field state ── */
.field input.field-invalid,
.field select.field-invalid,
.field textarea.field-invalid {
    border-color: #e05555;
    box-shadow: 0 0 0 3px rgba(224, 85, 85, .12);
}

/* ── Payment section ── */
.pay-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 28px 0 20px;
}
.pay-divider::before,
.pay-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--line);
}
.pay-divider span {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
}

/* ── Attendee stepper ── */
.attendee-section {
    margin-bottom: 18px;
}
.attendee-label {
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 10px;
}
.attendee-row {
    display: flex;
    align-items: center;
    gap: 18px;
}
.attendee-ctrl {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.04);
    border: 1.5px solid var(--line);
    border-radius: 11px;
    overflow: hidden;
}
.attn-btn {
    background: none;
    border: none;
    color: var(--ink);
    font-size: 1.35rem;
    font-weight: 700;
    width: 42px;
    height: 44px;
    cursor: pointer;
    transition: background .2s, color .2s;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.attn-btn:hover {
    background: rgba(217,174,51,.18);
    color: var(--gold-lt);
}
.attn-num {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    min-width: 34px;
    text-align: center;
}
.attn-info {
    font-size: .88rem;
    color: var(--ink-soft);
}

/* ── Guest blocks ── */
#guestsContainer {
    margin-bottom: 4px;
}
.guest-block {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--line);
    border-left: 3px solid rgba(217,174,51,.4);
    border-radius: 14px;
    padding: 20px 20px 6px;
    margin-bottom: 14px;
}
.guest-block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.guest-block-title {
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
}
.guest-remove-btn {
    background: none;
    border: 1px solid rgba(232,85,85,.4);
    color: #e85555;
    font-size: .68rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .05em;
    transition: .2s;
}
.guest-remove-btn:hover {
    background: rgba(232,85,85,.14);
}
.guest-field-error {
    display: none;
    font-size: .78rem;
    color: #e85555;
    margin-top: 4px;
}

/* ── Stepper progress ── */
.step-progress {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
}
.step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.step-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.04);
    color: var(--ink-faint);
    font-size: .82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .3s, background .3s, color .3s;
    flex: none;
}
.step-circle.active {
    border-color: var(--gold);
    background: rgba(217,174,51,.15);
    color: var(--gold);
}
.step-circle.done {
    border-color: rgba(78,107,184,.7);
    background: rgba(78,107,184,.22);
    color: var(--blue-lt);
    font-size: .75rem;
}
.step-label {
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink-faint);
    white-space: nowrap;
    transition: color .3s;
}
.step-label.active {
    color: var(--gold);
}
.step-connector {
    flex: 1;
    height: 1.5px;
    background: rgba(255,255,255,.12);
    margin: 0 10px;
    margin-bottom: 22px;
}

/* ── Step nav (Back / Next buttons) ── */
.step-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}
.step-nav .btn {
    flex: 1;
}
.btn-step-back {
    flex: none;
    background: rgba(255,255,255,.05);
    border: 1.5px solid var(--line);
    color: var(--ink-soft);
    font-family: var(--sans);
    font-size: .9rem;
    font-weight: 700;
    padding: 13px 20px;
    border-radius: 100px;
    cursor: pointer;
    transition: background .2s, color .2s;
    white-space: nowrap;
}
.btn-step-back:hover {
    background: rgba(255,255,255,.09);
    color: var(--ink);
}

/* ── Refund policy box ── */
.refund-box {
    background: rgba(217,174,51,.07);
    border: 1px solid rgba(217,174,51,.28);
    border-left: 3px solid var(--gold);
    border-radius: 10px;
    padding: 13px 16px;
    margin-bottom: 18px;
    font-size: .87rem;
}
.refund-box strong {
    display: block;
    color: var(--gold-lt);
    margin-bottom: 5px;
    font-size: .78rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.refund-box p {
    color: var(--ink-soft);
    line-height: 1.55;
}

/* ── Payment summary ── */
.pay-summary {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pay-sum-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .88rem;
    color: var(--ink-soft);
}
.pay-sum-row.total {
    border-top: 1px solid var(--line);
    padding-top: 8px;
    margin-top: 2px;
    color: var(--ink);
    font-size: .95rem;
}
.pay-sum-row.total strong {
    color: var(--gold-lt);
    font-size: 1.05rem;
    font-family: var(--serif);
}

/* ── Terms row ── */
.terms-row {
    margin-bottom: 16px;
}
.terms-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: .88rem;
    color: var(--ink-soft);
    user-select: none;
    line-height: 1.4;
}
.terms-check-box {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid rgba(255,255,255,.25);
    border-radius: 5px;
    background: rgba(255,255,255,.03);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s, background .2s;
}
.terms-check-box.checked {
    background: rgba(78,107,184,.3);
    border-color: var(--blue-lt);
}
.terms-check-box.checked::after {
    content: '✓';
    font-size: .74rem;
    color: var(--blue-lt);
    font-weight: 700;
}
.terms-link {
    color: var(--gold-lt);
    text-decoration: underline;
    text-decoration-style: dotted;
}

/* ── Modal overlay ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,17,35,.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-box {
    background: var(--bg-2);
    border: 1px solid var(--line-2);
    border-radius: 18px;
    width: 100%;
    max-width: 560px;
    max-height: 82vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 40px 80px -20px rgba(0,0,0,.8);
}
.modal-box h3 {
    font-family: var(--serif);
    font-size: 1.22rem;
    color: #fff;
    padding: 22px 24px 14px;
    border-bottom: 1px solid var(--line);
    flex: none;
}
.modal-body {
    overflow-y: auto;
    padding: 18px 24px;
    font-size: .87rem;
    color: var(--ink-soft);
    line-height: 1.65;
    flex: 1;
}
.modal-body p {
    margin-bottom: 8px;
}
.modal-body ul {
    padding-left: 18px;
    margin: 5px 0 8px;
}
.modal-body li {
    margin-bottom: 5px;
}
.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 24px;
    border-top: 1px solid var(--line);
    flex: none;
}
.modal-cancel-btn {
    background: none;
    border: 1px solid var(--line-2);
    color: var(--ink-soft);
    font-family: var(--sans);
    font-size: .9rem;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 100px;
    cursor: pointer;
    transition: background .2s, color .2s;
}
.modal-cancel-btn:hover {
    background: rgba(255,255,255,.06);
    color: var(--ink);
}
.modal-accept-btn {
    background: var(--grad-gold);
    border: none;
    color: var(--deep);
    font-family: var(--sans);
    font-size: .9rem;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 100px;
    cursor: pointer;
    transition: opacity .2s, transform .2s;
}
.modal-accept-btn:hover {
    opacity: .88;
    transform: translateY(-1px);
}

/* ── Remove sticky from form column so stepper doesn't clip ── */
.formcol {
    position: static;
}

/* ── intl-tel-input dark theme overrides ── */
.iti {
    width: 100%;
    display: block;
}
.iti__selected-flag {
    background: rgba(255,255,255,.04) !important;
    border-right: 1px solid rgba(255,255,255,.1) !important;
    outline: none;
}
.iti__selected-flag:hover,
.iti__selected-flag:focus {
    background: rgba(255,255,255,.08) !important;
}
.iti__flag-container:focus .iti__selected-flag {
    background: rgba(217,174,51,.12) !important;
}
.iti__country-list {
    background: #182444 !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    border-radius: 10px;
    color: #eff2fa !important;
    box-shadow: 0 12px 32px rgba(0,0,0,.6);
    max-height: 220px;
}
.iti__country.iti__highlight {
    background: rgba(217,174,51,.18) !important;
}
.iti__country:hover {
    background: rgba(255,255,255,.07) !important;
}
.iti__divider {
    border-bottom-color: rgba(255,255,255,.1) !important;
}
.iti__dial-code {
    color: rgba(239,242,250,.5) !important;
}
.iti__arrow {
    border-top-color: rgba(255,255,255,.5) !important;
}
.iti__arrow--up {
    border-bottom-color: rgba(255,255,255,.5) !important;
    border-top-color: transparent !important;
}
.iti__country-name {
    color: #eff2fa;
}

/* ── Select2 dark theme overrides ── */
.select2-container {
    width: 100% !important;
}
.select2-container--default .select2-selection--single {
    background: rgba(255,255,255,.03);
    border: 1.5px solid rgba(255,255,255,.1);
    border-radius: 11px;
    height: auto;
    padding: 13px 15px;
    color: var(--ink);
    font-family: var(--sans);
    font-size: .95rem;
    transition: border-color .25s, background .25s, box-shadow .25s;
}
.select2-container--default.select2-container--open .select2-selection--single {
    border-color: var(--gold);
    background: rgba(255,255,255,.05);
    box-shadow: 0 0 0 4px rgba(217,174,51,.13);
    border-radius: 11px 11px 0 0;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--ink);
    line-height: 1.4;
    padding: 0;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: var(--ink-faint);
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    top: 0;
    right: 12px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: rgba(239,242,250,.5) transparent transparent transparent;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent rgba(239,242,250,.5) transparent;
}
.select2-dropdown {
    background: var(--bg-2);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 0 0 11px 11px;
    box-shadow: 0 12px 32px rgba(0,0,0,.5);
}
.select2-search--dropdown {
    padding: 8px;
}
.select2-search--dropdown .select2-search__field {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 7px;
    color: var(--ink);
    padding: 8px 12px;
    font-family: var(--sans);
    font-size: .88rem;
    outline: none;
    width: 100%;
}
.select2-search--dropdown .select2-search__field:focus {
    border-color: var(--gold);
}
.select2-results__options {
    max-height: 220px;
    overflow-y: auto;
}
.select2-container--default .select2-results__option {
    color: var(--ink);
    padding: 9px 14px;
    font-size: .9rem;
    background: transparent;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: rgba(217,174,51,.18);
    color: var(--ink);
}
.select2-container--default .select2-results__option[aria-selected=true] {
    background: rgba(78,107,184,.25);
    color: var(--ink);
}
.select2-container--default .select2-results__option--disabled {
    color: var(--ink-faint);
}
/* Invalid state: target the Select2 container when native select has field-invalid */
.field select.field-invalid + .select2-container .select2-selection--single {
    border-color: #e05555 !important;
    box-shadow: 0 0 0 3px rgba(224,85,85,.12) !important;
}

/* ── Coupon code row ── */
.coupon-row {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
}
.coupon-row input[type="text"] {
    flex: 1;
    background: rgba(255,255,255,.03);
    border: 1.5px solid rgba(255,255,255,.1);
    border-radius: 11px;
    padding: 12px 15px;
    color: var(--ink);
    font-family: var(--sans);
    font-size: .93rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    outline: none;
    transition: border-color .25s, background .25s;
}
.coupon-row input[type="text"]:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,.05);
    box-shadow: 0 0 0 4px rgba(217,174,51,.1);
}
.coupon-row input[type="text"]:read-only {
    opacity: .75;
    cursor: default;
}
.coupon-row button {
    padding: 0 20px;
    border-radius: 11px;
    font-family: var(--sans);
    font-size: .88rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: opacity .2s, transform .15s;
    white-space: nowrap;
}
.coupon-row button:hover {
    opacity: .88;
    transform: translateY(-1px);
}
#applyCouponBtn {
    background: var(--grad-gold);
    color: var(--deep);
}
#removeCouponBtn {
    background: rgba(255,255,255,.07);
    color: var(--ink-soft);
    border: 1px solid rgba(255,255,255,.12) !important;
}
#removeCouponBtn:hover {
    background: rgba(255,255,255,.12);
    color: var(--ink);
}
#couponMsg {
    min-height: 20px;
    margin-bottom: 12px;
    font-size: .85rem;
}
.coupon-success {
    color: #4cbb79;
    font-weight: 600;
}
.coupon-error {
    color: #e05555;
}
.coupon-discount-row span:last-child {
    font-weight: 600;
}

/* ── Submit error states ── */
.submit-alert-error {
    padding: 12px 16px;
    border-radius: 8px;
    background: rgba(232, 85, 85, .10);
    border: 1px solid rgba(232, 85, 85, .30);
    color: #e85555;
    font-size: 14px;
    line-height: 1.5;
}

.submit-inline-error {
    display: none;
    margin-bottom: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    background: rgba(232, 85, 85, .10);
    border: 1px solid rgba(232, 85, 85, .30);
    color: #e85555;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}
