/* ============================================================
   VELORA — Rezervasyon akışı (checkout, başarı, sorgula)
   ============================================================ */

/* ---------- Adım çubuğu ---------- */
.res-steps {
  list-style: none; display: flex; align-items: center; gap: clamp(10px, 2vw, 22px);
  margin: 34px 0 0; padding: 22px 0 4px; border-top: 1px solid var(--line-d);
}
.res-steps li { display: flex; align-items: center; gap: 12px; color: var(--muted-2); }
.res-steps li:not(:last-child)::after {
  content: ''; display: block; width: clamp(22px, 6vw, 84px); height: 1px;
  background: linear-gradient(90deg, rgba(201, 169, 106, .55), var(--line-d));
  margin-left: clamp(10px, 2vw, 22px);
}
.rs-dot {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0;
  border: 1.5px solid var(--line-d); background: rgba(255, 255, 255, .04);
  font-weight: 800; font-size: 15px; transition: all .3s var(--ease);
}
.res-steps li.done .rs-dot {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-color: transparent; color: var(--ink); font-size: 17px;
}
.res-steps li.active .rs-dot { border-color: var(--gold); color: var(--gold-2); box-shadow: 0 0 0 5px rgba(201, 169, 106, .14); }
.rs-label { display: flex; flex-direction: column; line-height: 1.35; }
.rs-label small { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; opacity: .75; }
.rs-label b { font-size: 15px; }
.res-steps li.done .rs-label b, .res-steps li.active .rs-label b { color: var(--bone); }
.res-steps.compact { margin: 0; border-top: none; padding: 20px 0; }
.res-steps-strip { background: var(--ink); color: var(--bone); position: relative; }
.res-steps-strip::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 106, .5), transparent);
}
@media (max-width: 720px) {
  .res-steps { flex-wrap: wrap; gap: 12px; }
  .res-steps li:not(:last-child)::after { width: 16px; margin-left: 4px; }
  .rs-label small { display: none; }
  .rs-label b { font-size: 13px; }
  .rs-dot { width: 34px; height: 34px; font-size: 13.5px; }
}

/* ---------- Checkout yerleşimi ---------- */
.res-hero .page-hero-sub strong { color: var(--gold-2); font-weight: 700; }
.res-section { padding-top: clamp(44px, 5vw, 64px); }
.res-layout { display: grid; grid-template-columns: minmax(0, 1fr) 410px; gap: 34px; align-items: start; }
@media (max-width: 1080px) { .res-layout { grid-template-columns: 1fr; } }

.res-form { display: flex; flex-direction: column; gap: 26px; min-width: 0; }
.res-card { padding: clamp(24px, 3.4vw, 36px); }
.res-card-head { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 24px; }
.rc-num {
  width: 40px; height: 40px; border-radius: 13px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 60%, var(--gold-dark));
  color: var(--ink); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  box-shadow: 0 6px 18px rgba(201, 169, 106, .35);
}
.res-card-head h2 { font-size: 22px; margin: 0; line-height: 1.3; }
.res-card-head p { margin: 3px 0 0; font-size: 13.5px; color: var(--muted); }

.res-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.res-grid .span-2 { grid-column: 1 / -1; }
@media (max-width: 640px) { .res-grid { grid-template-columns: 1fr; } }
.field-hint { font-size: 12px; color: var(--muted); line-height: 1.5; }
.coupon-field { margin-top: 18px; }
.coupon-field .input { text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.coupon-field .input::placeholder { text-transform: none; letter-spacing: 0; font-weight: 400; }

.res-age-note {
  margin-top: 20px; display: flex; align-items: center; gap: 10px; padding: 12px 16px;
  border-radius: 12px; background: rgba(201, 169, 106, .08); border: 1px dashed rgba(201, 169, 106, .4);
  font-size: 13px; color: var(--muted); flex-wrap: wrap;
}
.res-age-note i { color: var(--gold-dark); font-size: 19px; flex-shrink: 0; }
.res-age-note b { color: var(--ink); }

/* ---------- Ek hizmet kutuları ---------- */
.extra-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 760px) { .extra-tiles { grid-template-columns: 1fr; } }
.extra-tile {
  display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px;
  border: 1.5px solid var(--line); border-radius: 14px; background: var(--paper);
  cursor: pointer; position: relative;
  transition: border-color .25s, background .25s, box-shadow .25s, transform .25s var(--ease);
}
.extra-tile:hover { border-color: rgba(201, 169, 106, .55); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.extra-tile.checked {
  border-color: var(--gold); background: rgba(201, 169, 106, .07);
  box-shadow: 0 0 0 4px rgba(201, 169, 106, .13);
}
.extra-tile input { position: absolute; opacity: 0; pointer-events: none; }
.xt-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(201, 169, 106, .12); color: var(--gold-dark);
  display: grid; place-items: center; font-size: 23px; transition: background .25s, color .25s;
}
.extra-tile.checked .xt-icon { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: var(--ink); }
.xt-body { flex: 1; min-width: 0; }
.xt-name { display: block; font-weight: 700; font-size: 15px; color: var(--ink); }
.xt-desc { display: block; margin-top: 3px; font-size: 12.5px; color: var(--muted); line-height: 1.55; }
.xt-price { flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-end; line-height: 1.3; }
.xt-price b { font-family: var(--font-display); font-size: 17px; color: var(--gold-dark); }
.xt-price small { font-size: 11px; color: var(--muted); font-weight: 700; }

/* ---------- Onay & gönder ---------- */
.res-agree { display: flex; flex-direction: column; gap: 20px; }
.res-secure {
  margin: 0; text-align: center; font-size: 12.5px; color: var(--muted);
  display: flex; align-items: center; justify-content: center; gap: 7px; flex-wrap: wrap;
}
.res-secure i { color: var(--gold-dark); font-size: 15px; }

/* ---------- Sağ özet ---------- */
.res-summary { position: sticky; top: calc(var(--nav-h) + 22px); display: flex; flex-direction: column; gap: 16px; min-width: 0; }
@media (max-width: 1080px) { .res-summary { position: static; } }
.res-sum-card > * { position: relative; z-index: 2; }
.sum-car { display: flex; gap: 14px; align-items: center; padding-bottom: 18px; border-bottom: 1px solid var(--line-d); }
.sum-car-img { width: 96px; height: 66px; object-fit: cover; border-radius: 10px; border: 1px solid rgba(201, 169, 106, .35); flex-shrink: 0; }
.sum-car small {
  display: flex; align-items: center; gap: 5px; font-size: 10.5px; letter-spacing: .16em;
  text-transform: uppercase; font-weight: 800; color: var(--gold-2);
}
.sum-car b { display: block; font-family: var(--font-display); font-size: 19px; line-height: 1.25; margin: 2px 0; }
.sum-car span { font-size: 12.5px; color: var(--muted-2); }

.sum-route { padding: 14px 0; border-bottom: 1px solid var(--line-d); }
.sum-loc { display: flex; gap: 12px; padding: 8px 0; position: relative; }
.sum-loc > i { color: var(--gold); font-size: 20px; margin-top: 2px; flex-shrink: 0; }
.sum-loc + .sum-loc::before {
  content: ''; position: absolute; left: 9px; top: -12px; height: 18px;
  border-left: 1px dashed rgba(201, 169, 106, .45);
}
.sum-loc small {
  display: block; font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 800; color: var(--muted-2);
}
.sum-loc b { display: block; font-size: 14.5px; color: var(--bone); line-height: 1.35; }
.sum-loc span { font-size: 12.5px; color: var(--muted-2); }

.sum-days { padding: 15px 0 4px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.res-sum-card .chip { color: var(--gold-2); background: rgba(201, 169, 106, .14); border-color: rgba(201, 169, 106, .3); }
.sum-edit { font-size: 12.5px; color: var(--muted-2); display: inline-flex; align-items: center; gap: 5px; transition: color .2s; }
.sum-edit:hover { color: var(--gold-2); }

.sum-rows { padding-top: 10px; display: flex; flex-direction: column; gap: 9px; }
#sumExtras { display: flex; flex-direction: column; gap: 9px; }
#sumExtras:empty { display: none; }
.sum-row { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; font-size: 13.5px; color: var(--muted); }
.sum-row b { color: var(--ink); font-weight: 700; white-space: nowrap; }
.sum-row em { font-style: normal; font-size: 12px; opacity: .85; }
.sum-row i { font-size: 14px; }
.res-sum-card .sum-row { color: var(--muted-2); }
.res-sum-card .sum-row b { color: var(--bone); }
.sum-row-discount, .sum-row-discount b { color: var(--gold-dark) !important; }
.res-sum-card .sum-row-discount, .res-sum-card .sum-row-discount b { color: var(--gold-2) !important; }

.sum-total-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
  margin-top: 14px; padding-top: 16px; border-top: 1px solid rgba(201, 169, 106, .35);
}
.sum-total-row span { font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; font-weight: 800; color: var(--muted-2); }
.sum-total-row b { font-family: var(--font-display); font-size: 30px; color: var(--gold-2); line-height: 1; display: inline-block; }
#sumTotal.bump { animation: sumBump .45s var(--ease); }
@keyframes sumBump { 35% { transform: scale(1.07); } }

.sum-deposit {
  margin-top: 14px; padding: 12px 15px; border-radius: 12px; font-size: 12.5px; color: var(--muted-2);
  background: rgba(255, 255, 255, .05); border: 1px dashed rgba(201, 169, 106, .35);
}
.sum-deposit i { color: var(--gold); font-size: 15px; }
.sum-deposit b { color: var(--bone); }
.sum-deposit small { display: block; margin-top: 5px; font-size: 11.5px; line-height: 1.55; }

.sum-trust {
  list-style: none; margin: 0; padding: 18px 20px; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 12px;
}
.sum-trust li { display: flex; gap: 11px; align-items: center; font-size: 13.5px; color: var(--muted); font-weight: 600; }
.sum-trust i { color: var(--gold-dark); font-size: 20px; flex-shrink: 0; }

/* ---------- Başarı sayfası ---------- */
.res-success-wrap { padding-top: clamp(48px, 6vw, 76px); }
.success-head { text-align: center; max-width: 720px; margin: 0 auto; }
.success-head h1 { font-size: clamp(30px, 4vw, 46px); }
.success-sub { color: var(--muted); font-size: 16.5px; max-width: 560px; margin: 0 auto 26px; }
.success-burst {
  width: 108px; height: 108px; border-radius: 50%; margin: 0 auto 26px; position: relative;
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 60%, var(--gold-dark));
  display: grid; place-items: center; font-size: 52px; color: var(--ink);
  box-shadow: var(--shadow-gold); animation: burstPop .7s var(--ease);
}
.sb-ring { position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--gold); animation: burstRing 2.4s ease-out infinite; }
.sb-ring.r2 { animation-delay: 1.2s; }
@keyframes burstRing { from { transform: scale(1); opacity: .7; } to { transform: scale(1.9); opacity: 0; } }
@keyframes burstPop { 0% { transform: scale(.3); opacity: 0; } 65% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }

.res-code-box {
  display: inline-flex; align-items: center; gap: 22px; padding: 16px 24px; margin: 4px auto 22px;
  border: 2px dashed var(--gold); border-radius: 18px; background: rgba(201, 169, 106, .07);
}
.rcb-text { text-align: left; }
.res-code-box small { display: block; font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 800; }
.res-code-box b { font-family: var(--font-display); font-size: clamp(24px, 4vw, 32px); letter-spacing: .06em; color: var(--ink); line-height: 1.15; }
.rc-copy {
  border: none; background: var(--ink); color: var(--gold-2); border-radius: 999px; padding: 10px 18px;
  font-size: 12.5px; font-weight: 700; display: inline-flex; align-items: center; gap: 7px;
  transition: background .2s, color .2s, transform .2s; white-space: nowrap;
}
.rc-copy:hover { background: var(--ink-3); transform: translateY(-1px); }
.rc-copy.copied { background: var(--green); color: #fff; }
@media (max-width: 560px) { .res-code-box { flex-direction: column; gap: 12px; text-align: center; } .rcb-text { text-align: center; } }

.res-note-bar {
  display: flex; gap: 12px; align-items: flex-start; text-align: left; max-width: 620px; margin: 0 auto;
  background: rgba(201, 169, 106, .1); border: 1px solid rgba(201, 169, 106, .32);
  padding: 15px 19px; border-radius: 14px; font-size: 14px; color: var(--ink);
}
.res-note-bar i { color: var(--gold-dark); font-size: 21px; flex-shrink: 0; margin-top: 1px; }

/* ---------- Voucher ---------- */
.voucher { margin: clamp(36px, 5vw, 52px) auto 0; max-width: 980px; overflow: hidden; }
.v-head {
  display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap;
  padding: 22px 30px; background: linear-gradient(140deg, var(--ink-2), var(--ink)); color: var(--bone);
}
.v-brand { display: flex; align-items: center; gap: 13px; }
.vb-mark {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0;
  background: rgba(201, 169, 106, .14); border: 1px solid rgba(201, 169, 106, .5);
  color: var(--gold-2); font-family: var(--font-display); font-weight: 700; font-size: 21px;
}
.v-brand b { display: block; font-family: var(--font-display); font-size: 17px; letter-spacing: .08em; }
.v-brand small { display: block; font-size: 10.5px; color: var(--muted-2); letter-spacing: .2em; text-transform: uppercase; font-weight: 700; }
.v-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; }
.v-meta .v-code { font-family: var(--font-display); font-size: 21px; color: var(--gold-2); letter-spacing: .05em; line-height: 1; }
.v-meta small { color: var(--muted-2); font-size: 12px; }
@media (max-width: 560px) { .v-meta { align-items: flex-start; } }

.res-status {
  display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.res-status.s-pending { background: rgba(214, 163, 69, .16); color: var(--amber); border: 1px solid rgba(214, 163, 69, .45); }
.res-status.s-confirmed { background: rgba(46, 158, 107, .16); color: #5ec793; border: 1px solid rgba(46, 158, 107, .4); }
.res-status.s-completed { background: rgba(147, 161, 181, .16); color: var(--muted-2); border: 1px solid rgba(147, 161, 181, .35); }
.res-status.s-cancelled { background: rgba(214, 69, 69, .14); color: #ff9b9b; border: 1px solid rgba(214, 69, 69, .4); }

.v-body { padding: clamp(24px, 3.4vw, 38px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3.4vw, 40px); }
@media (max-width: 860px) { .v-body { grid-template-columns: 1fr; } }
.v-col { display: flex; flex-direction: column; gap: 26px; min-width: 0; }
.v-block-title {
  display: flex; align-items: center; gap: 8px; margin: 0 0 14px;
  font-family: var(--font-body); font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 800;
}
.v-block-title i { font-size: 16px; }
.v-block-title::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.v-car { display: flex; gap: 16px; align-items: center; }
.v-car img { width: 128px; height: 84px; object-fit: cover; border-radius: 12px; border: 1px solid var(--line); flex-shrink: 0; }
.v-car b { display: block; font-family: var(--font-display); font-size: 19px; line-height: 1.3; }
.v-car small { color: var(--muted); font-size: 13px; }
.v-kv { display: flex; flex-direction: column; gap: 9px; font-size: 14px; }
.v-kv > div { display: flex; justify-content: space-between; gap: 18px; }
.v-kv span { color: var(--muted); flex-shrink: 0; }
.v-kv b { text-align: right; font-weight: 700; min-width: 0; overflow-wrap: anywhere; }
.v-kv .v-kv-note { flex-direction: column; gap: 4px; }
.v-kv .v-kv-note b { text-align: left; font-weight: 500; font-size: 13.5px; color: var(--muted); }

.v-price {
  border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px;
  background: var(--bone); display: flex; flex-direction: column; gap: 10px;
}
.v-total {
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
  margin-top: 6px; padding-top: 14px; border-top: 1px dashed rgba(201, 169, 106, .55);
}
.v-total span { font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; font-weight: 800; color: var(--muted); }
.v-total b { font-family: var(--font-display); font-size: 27px; color: var(--gold-dark); line-height: 1; }
.v-deposit { margin: 2px 0 0; font-size: 12.5px; color: var(--muted); }
.v-deposit i { color: var(--gold-dark); }
.v-deposit b { color: var(--ink); }

/* ---------- Aksiyonlar & sonraki adımlar ---------- */
.res-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.next-steps { margin-top: clamp(48px, 6vw, 76px); }
.next-steps h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: clamp(24px, 3vw, 38px); }
.ns-item { text-align: center; position: relative; padding: 32px 26px; }
.ns-num {
  position: absolute; top: 12px; right: 18px; font-family: var(--font-display);
  font-size: 42px; font-weight: 700; color: rgba(201, 169, 106, .22); line-height: 1; user-select: none;
}
.ns-item i { font-size: 40px; color: var(--gold-dark); display: inline-block; margin-bottom: 13px; }
.ns-item b { display: block; font-family: var(--font-display); font-size: 17.5px; margin-bottom: 7px; }
.ns-item p { margin: 0; font-size: 13.5px; color: var(--muted); }

/* ---------- Sorgulama sayfası ---------- */
.res-lookup-section { padding-top: clamp(44px, 5vw, 64px); }
.lookup-card { max-width: 560px; margin: 0 auto; padding: clamp(28px, 4vw, 44px); }
.lookup-icon {
  width: 66px; height: 66px; border-radius: 50%; margin: 0 auto 18px;
  background: rgba(201, 169, 106, .12); border: 1px solid rgba(201, 169, 106, .3);
  display: grid; place-items: center; color: var(--gold-dark); font-size: 31px;
}
.lookup-title { font-size: 24px; margin-bottom: 6px; }
.lookup-sub { color: var(--muted); font-size: 14.5px; text-align: center; margin-bottom: 26px; }
.lookup-card form { display: flex; flex-direction: column; gap: 18px; }
.lookup-code { text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.lookup-code::placeholder { letter-spacing: .04em; font-weight: 400; }
.lookup-help {
  margin: 18px 0 0; font-size: 12.5px; color: var(--muted); text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap;
}
.lookup-help i { color: var(--gold-dark); font-size: 15px; }

.res-result { max-width: 980px; margin: 0 auto; }
.res-back { margin: 0 0 22px; font-size: 14px; }
.res-back a { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-weight: 600; transition: color .2s; }
.res-back a:hover { color: var(--gold-dark); }

.res-timeline {
  list-style: none; margin: 0 0 8px; padding: clamp(22px, 3vw, 32px) clamp(16px, 3vw, 34px);
  display: flex; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.res-timeline li {
  flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 9px; position: relative; min-width: 0;
}
.res-timeline li:not(:last-child)::after {
  content: ''; position: absolute; top: 23px; left: calc(50% + 32px); right: calc(-50% + 32px);
  height: 2px; border-radius: 2px; background: var(--line);
}
.res-timeline li.done:not(:last-child)::after { background: linear-gradient(90deg, var(--gold), rgba(201, 169, 106, .35)); }
.rt-dot {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--bone); border: 1.5px solid var(--line); color: var(--muted-2);
  font-size: 21px; position: relative; z-index: 2; transition: all .3s var(--ease);
}
.res-timeline li.done .rt-dot { background: linear-gradient(135deg, var(--gold-2), var(--gold)); border-color: transparent; color: var(--ink); }
.res-timeline li.current .rt-dot { box-shadow: 0 0 0 6px rgba(201, 169, 106, .16); }
.res-timeline li b { font-size: 14.5px; color: var(--muted-2); line-height: 1.3; }
.res-timeline li.done b { color: var(--ink); }
.res-timeline li small { font-size: 11.5px; color: var(--muted); line-height: 1.45; max-width: 160px; }
@media (max-width: 640px) {
  .res-timeline li small { display: none; }
  .res-timeline li b { font-size: 12px; }
  .rt-dot { width: 38px; height: 38px; font-size: 17px; }
  .res-timeline li:not(:last-child)::after { top: 19px; left: calc(50% + 26px); right: calc(-50% + 26px); }
}

.res-cancelled {
  display: flex; gap: 16px; align-items: flex-start; margin-bottom: 8px;
  background: rgba(214, 69, 69, .07); border: 1px solid rgba(214, 69, 69, .3);
  padding: 24px 28px; border-radius: var(--radius);
}
.res-cancelled i { font-size: 36px; color: var(--red); flex-shrink: 0; }
.res-cancelled b { display: block; font-family: var(--font-display); font-size: 18px; }
.res-cancelled p { margin: 5px 0 0; color: var(--muted); font-size: 14px; }

.res-contact {
  margin-top: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap; padding: 24px 30px; background: linear-gradient(140deg, var(--ink-2), var(--ink));
  color: var(--bone); border-radius: var(--radius); border: 1px solid rgba(201, 169, 106, .3);
}
.res-contact .rc-txt b { display: block; font-family: var(--font-display); font-size: 18.5px; margin-bottom: 3px; }
.res-contact .rc-txt span { color: var(--muted-2); font-size: 13.5px; }
.rc-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Yazdırma ---------- */
@media print {
  .topbar, .navbar, .mobile-menu, .footer, .wa-float, .backtotop, .cookie-bar, .toasts,
  .page-hero, .res-steps-strip, .success-head, .res-actions, .next-steps,
  .res-timeline, .res-cancelled, .res-contact, .res-back, .lookup-card { display: none !important; }
  body { background: #fff !important; }
  body.has-grain::before { display: none !important; }
  .section { padding: 0 !important; }
  .voucher {
    margin: 0 auto !important; max-width: 100% !important;
    box-shadow: none !important; border: 1px solid #b9b9b9;
  }
  .v-head { background: var(--ink) !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .v-body { grid-template-columns: 1fr 1fr; }
}
