  .reserve-layout{
    display:grid;
    grid-template-columns: 1fr 340px;
    gap: 22px;
    align-items:start;
    margin-top: 12px;
  }
  .reserve-main{ min-width: 0; }

  .reserve-aside{
    position: sticky;
    top: 18px;
  }
  .reserve-aside__card{
    padding: 18px;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 20px;
    background: #fff;
  }
  .reserve-aside__title{
    margin: 0 0 12px;
    font-size: 16px;
  }
  .reserve-summary{
    display:grid;
    gap: 10px;
    margin-bottom: 14px;
  }
  .sum-row{
    display:flex;
    justify-content:space-between;
    gap: 14px;
    font-size: 14px;
  }
  .sum-label{ opacity:.65; }
  .sum-value{ font-weight: 700; }
  .sum-row--total{
    padding-top: 10px;
    border-top: 1px solid rgba(0,0,0,.12);
  }
  .reserve-aside__note{
    margin: 12px 0 0;
    font-size: 12px;
    opacity: .7;
  }
  .btn-block{
    width: 100%;
  }

  .reserve-billboard{
    display:grid;
    grid-template-columns:180px 1fr;
    gap:20px;
    padding:22px;
    border:1px solid rgba(0,0,0,.1);
    border-radius:20px;
  }

  .reserve-billboard__media{
    position:relative;
    width:100%;
    aspect-ratio:1 / 1;
    overflow:hidden;
    border-radius:16px;
  }

  .reserve-billboard__media img{
    width:100%;
    height:100%;
    object-fit:cover;
  }

  .reserve-billboard__content{
    padding-right:10px;
  }

  .reserve-billboard__title{
    margin:0 0 16px;
    font-size:24px;
    line-height:1.2;
  }

  .reserve-billboard__meta{
    display:grid;
    gap:12px;
    max-width:720px;
  }

  .meta-row{
    display:grid;
    grid-template-columns:90px 1fr;
    gap:10px;
    font-size:14px;
  }
  .meta-label{opacity:.6;}
  .meta-value{font-weight:600;}

  .reserve-details{
    margin-top: 18px;
    padding: 20px;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 20px;
  }
  .reserve-details__title{
    margin: 0;
    font-size: 16px;
  }
  .reserve-details__head{
    margin-bottom: 14px;
  }
  .reserve-details__sub{
    margin: 8px 0 0;
    font-size: 13px;
    opacity: .72;
  }

  .qty-row{
    display:flex;
    flex-wrap:wrap;
    gap:12px 14px;
    align-items:center;
    margin-top: 6px;
  }
  .qty-label{ font-weight:700; opacity:.75; }

  .qty-stepper{
    display:flex;
    align-items:center;
    border:1px solid rgba(0,0,0,.15);
    border-radius:12px;
    overflow:hidden;
    height:42px;
  }

  .qty-btn{
    width:44px;
    height:42px;
    border:0;
    background:transparent;
    font-size:20px;
    cursor:pointer;
  }

  .qty-input{
    width:64px;
    height:42px;
    border:0;
    text-align:center;
    font-weight:700;
  }

  .qty-note{
    margin: 10px 0 0;
    font-size: 12px;
    opacity: .7;
  }

  .attendee-fields{
    display:grid;
    gap:16px;
  }
  .attendee-card{
    padding:16px;
    border:1px solid rgba(0,0,0,.08);
    border-radius:16px;
    background:#fcfcfc;
  }
  .attendee-card__head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    margin-bottom:12px;
  }
  .attendee-card__title{
    margin:0;
    font-size:15px;
  }
  .attendee-badge{
    display:inline-flex;
    align-items:center;
    padding:5px 10px;
    border-radius:999px;
    background:rgba(0,0,0,.06);
    font-size:11px;
    font-weight:700;
    letter-spacing:.02em;
    text-transform:uppercase;
  }
  .attendee-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:12px;
  }
  .field{
    display:grid;
    gap:6px;
  }
  .field--full{
    grid-column:1 / -1;
  }
  .field label{
    font-size:12px;
    font-weight:700;
    opacity:.8;
  }
  .field input{
    width:100%;
    min-width:0;
    height:46px;
    padding:0 14px;
    border:1px solid rgba(0,0,0,.14);
    border-radius:12px;
    background:#fff;
  }
  .field input:focus{
    outline:none;
    border-color:rgba(0,0,0,.35);
  }

  .reserve-error{
    margin-top:12px;
    color:#a12626;
    font-size:13px;
  }

  @media(max-width:980px){
    .reserve-layout{ grid-template-columns:1fr; }
    .reserve-aside{ position:static; }
    .reserve-billboard{ grid-template-columns:1fr; }
    .reserve-billboard__media{ aspect-ratio:16 / 9; }
  }
  @media(max-width:700px){
    .attendee-grid{ grid-template-columns:1fr; }
  }
  .reserve-agreement {
    margin-top: 18px;
    margin-bottom: 10px;
    padding-top: 16px;
    border-top: 1px solid rgba(17, 24, 39, 0.10);
  }

  .reserve-agreement__label {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    align-items: start;
    cursor: pointer;
    position: relative;
  }

  .reserve-agreement__checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .reserve-agreement__box {
    width: 22px;
    height: 22px;
    border: 1.5px solid rgba(17, 24, 39, 0.22);
    border-radius: 6px;
    background: #fff;
    transition: all 0.2s ease;
    position: relative;
    margin-top: 2px;
  }

  .reserve-agreement__checkbox:focus-visible + .reserve-agreement__box {
    outline: 3px solid rgba(42, 167, 148, 0.18);
    outline-offset: 2px;
    border-color: #2aa794;
  }

  .reserve-agreement__checkbox:checked + .reserve-agreement__box {
    background: #2aa794;
    border-color: #2aa794;
  }

  .reserve-agreement__checkbox:checked + .reserve-agreement__box::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }

  .reserve-agreement__text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #374151;
  }

  .reserve-agreement__text a {
    color: #2aa794;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .reserve-agreement__text a:hover {
    color: #218b7b;
  }

  .reserve-agreement__error {
    margin: 10px 0 0 34px;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #b42318;
  }
  #reserveContinue:disabled {
    opacity: 0.55;
    cursor: not-allowed;
  }
  .reserve-layout--single {
    grid-template-columns: minmax(0, 1fr);
  }

.reserve-layout{
  display:grid;
  grid-template-columns: 1fr 340px;
  gap: 22px;
  align-items:start;
  margin-top: 12px;
}
.reserve-main{ min-width: 0; }

.reserve-aside{
  position: sticky;
  top: 18px;
}
.reserve-aside__card{
  padding: 18px;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 20px;
  background: #fff;
}
.reserve-aside__title{
  margin: 0 0 12px;
  font-size: 16px;
}
.reserve-summary{
  display:grid;
  gap: 10px;
  margin-bottom: 14px;
}
.sum-row{
  display:flex;
  justify-content:space-between;
  gap: 14px;
  font-size: 14px;
}
.sum-label{ opacity:.65; }
.sum-value{ font-weight: 700; }
.sum-row--total{
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,.12);
}
@media(max-width: 980px){
  .reserve-layout{ grid-template-columns: 1fr; }
  .reserve-aside{ position: static; }
}

.field-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field--full{ grid-column: 1 / -1; }

.field label{
  display:block;
  font-size: 13px;
  opacity:.75;
  margin: 0 0 6px;
}
.field input{
  width:100%;
  height:44px;
  border:1px solid rgba(0,0,0,.15);
  border-radius:12px;
  padding: 0 12px;
}
.reserve-details{
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 20px;
  background:#fff;
}
.reserve-details__title{
  margin: 0 0 12px;
  font-size: 16px;
}
@media(max-width: 820px){
  .field-grid{ grid-template-columns: 1fr; }
}
.reserve-details--email-optin .reserve-details__sub{
  margin-bottom:12px;
}

.reserve-check{
  display:flex;
  gap:10px;
  align-items:flex-start;
  cursor:pointer;
  font-size:14px;
  line-height:1.45;
}

.reserve-check input{
  margin-top:2px;
}
.reserve-payment-free{
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 16px 18px;
  border-radius: 16px;

  background: rgba(16, 185, 129, 0.08); /* soft green */
  border: 1px solid rgba(16, 185, 129, 0.18);

  font-size: 15px;
  line-height: 1.4;
  color: #065f46;
  font-weight: 500;
}
.reserve-payment-free__icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 22px;
  height: 22px;

  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);

  font-size: 13px;
  font-weight: 700;
}
.reserve-payment-secure{
  display: flex;
  align-items: center;
  gap: 8px;

  margin-top: 10px;

  font-size: 13px;
  color: rgba(17, 24, 39, 0.6);
}

.reserve-payment-secure__icon{
  font-size: 14px;
  line-height: 1;
}
.reserve-submit-btn.is-processing,
.reserve-submit-btn:disabled {
  opacity: .7;
  cursor: not-allowed;
  pointer-events: none;
}

.reserve-submit-btn.is-processing::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 8px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  vertical-align: -2px;
  animation: reserveSpin .7s linear infinite;
}

@keyframes reserveSpin {
  to {
    transform: rotate(360deg);
  }
}
.reserve-discount--aside {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(17, 24, 39, 0.10);
}

.reserve-discount__title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.reserve-discount__note {
  margin: 6px 0 10px;
  font-size: 12px;
  opacity: .7;
}

.reserve-discount__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.reserve-discount__input {
  width: 100%;
  min-width: 0;
  height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 12px;
  background: #fff;
  text-transform: uppercase;
}

.reserve-discount__button {
  height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 12px;
  background: #2aa794;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.reserve-discount__applied {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.18);
  color: #065f46;
  font-size: 12px;
  line-height: 1.4;
}
.reserve-discount__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px; /* slightly tighter */
}

.reserve-discount__input {
  height: 38px;        /* was ~42–46 */
  padding: 0 10px;     /* slightly reduced */
  font-size: 13px;     /* a touch smaller */
  border-radius: 10px; /* slightly tighter */
}

.reserve-discount__button {
  height: 38px;        /* match input */
  padding: 0 12px;     /* less horizontal space */
  font-size: 13px;
  border-radius: 10px;
}
.reserve-discount__title {
  font-size: 13px;
}

.reserve-discount__note {
  font-size: 11px;
}
.reserve-discount__title {
  margin-bottom: 6px; /* was likely larger */
}
.reservation-payment-note,
.reservation-payment-timeout-note {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.45;
  color: #4b5563;
}

.reservation-payment-timeout-note {
  padding: 12px 14px;
  border: 1px solid rgba(191, 138, 44, 0.35);
  border-radius: 10px;
  background: rgba(191, 138, 44, 0.08);
}

.reservation-payment-note a,
.reservation-payment-timeout-note a {
  font-weight: 700;
  text-decoration: underline;
}
.reserve-tokenizer-error {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.18);
  color: #991b1b;
  font-size: 14px;
  line-height: 1.45;
}
@media (max-width: 767px) {

  /* Give the payment page the same breathing room as the reserve page */
  body.reserve-payment .container {
    padding: 34px 14px 40px !important;
  }

  body.reserve-payment h1 {
    margin: 0 0 22px;
    padding: 0 2px;
    font-size: 34px;
    line-height: 1.1;
  }

  body.reserve-payment .reserve-layout {
    gap: 26px;
    margin-top: 0;
  }

  body.reserve-payment .reserve-details {
    margin-top: 0;
    padding: 24px;
    border-radius: 20px;
  }

  body.reserve-payment .reserve-details + .reserve-details {
    margin-top: 24px;
  }

  /* Make the payment button behave like the reserve page CTA */
  body.reserve-payment .reserve-submit-btn {
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    margin-top: 18px !important;
  }

  /* Keep payment help copy aligned with the form instead of the viewport edge */
  body.reserve-payment .reservation-payment-note,
  body.reserve-payment .reservation-payment-timeout-note,
  body.reserve-payment #processingNote {
    margin-left: 2px;
    margin-right: 2px;
  }

  body.reserve-payment .reservation-payment-note {
    margin-top: 14px;
  }

  body.reserve-payment .reserve-aside {
    margin-top: 6px;
  }

  body.reserve-payment .reserve-aside__card {
    padding: 24px;
    border-radius: 20px;
  }

  body.reserve-payment .reserve-discount__row {
    gap: 8px;
  }

  body.reserve-payment .reserve-discount__input {
    height: 46px;
    font-size: 14px;
  }

  body.reserve-payment .reserve-discount__button {
    height: 46px;
    padding: 0 16px;
    font-size: 14px;
  }
}