:root {
  --voucher-bg: #060606;
  --voucher-surface: rgba(18, 18, 18, 0.94);
  --voucher-surface-strong: #141414;
  --voucher-surface-soft: #1c1c1c;
  --voucher-card: rgba(255, 255, 255, 0.04);
  --voucher-card-strong: rgba(255, 255, 255, 0.07);
  --voucher-line: rgba(255, 255, 255, 0.1);
  --voucher-line-strong: rgba(212, 175, 55, 0.25);
  --voucher-gold: #d4af37;
  --voucher-gold-light: #f4e7b9;
  --voucher-gold-dark: #a57e20;
  --voucher-green: #15362c;
  --voucher-green-soft: #22453b;
  --voucher-text: #f4f0e6;
  --voucher-muted: #b7b0a1;
  --voucher-muted-strong: #d5cdb8;
  --voucher-success: #37d48d;
  --voucher-error: #ff6c64;
  --voucher-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  --voucher-radius-lg: 28px;
  --voucher-radius-md: 20px;
  --voucher-radius-sm: 14px;
  --voucher-max: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--voucher-text);
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(700px 320px at 5% -2%, rgba(212, 175, 55, 0.18), transparent 68%),
    radial-gradient(900px 420px at 98% 0%, rgba(21, 54, 44, 0.28), transparent 58%),
    linear-gradient(180deg, #0b0b0b 0%, #060606 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.18;
}

body.nav-open {
  overflow: hidden;
}

.container {
  width: min(100%, var(--voucher-max));
  margin: 0 auto;
  padding: 0 2.4rem;
}

.voucher-page {
  padding-top: 8.6rem;
}

.voucher-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(212, 175, 55, 0.08);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--voucher-gold-light);
}

.voucher-eyebrow::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--voucher-gold);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.42);
}

.voucher-section-title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.2rem, 5vw, 5.8rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #fffaf0;
}

.voucher-section-title span {
  color: var(--voucher-gold-light);
}

.voucher-section-lead {
  margin: 0;
  max-width: 68rem;
  color: var(--voucher-muted);
  font-size: clamp(1.65rem, 2.2vw, 1.95rem);
  line-height: 1.75;
}

.voucher-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  min-height: 5.6rem;
  padding: 1.5rem 2.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.voucher-button:hover,
.voucher-button:focus-visible {
  transform: translateY(-1px);
}

.voucher-button[disabled],
.voucher-button[aria-disabled="true"] {
  opacity: 0.58;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
  pointer-events: none;
}

.voucher-button--primary {
  color: #0a0a0a;
  background: linear-gradient(135deg, #f1d77a 0%, var(--voucher-gold) 58%, var(--voucher-gold-dark) 100%);
  box-shadow: 0 18px 40px rgba(212, 175, 55, 0.18);
}

.voucher-button--secondary {
  color: var(--voucher-text);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.voucher-button--secondary:hover,
.voucher-button--secondary:focus-visible {
  border-color: rgba(212, 175, 55, 0.42);
  color: var(--voucher-gold-light);
}

.voucher-hero {
  position: relative;
  padding: 4.8rem 0 3.2rem;
}

.voucher-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(34rem, 0.9fr);
  gap: 3.2rem;
  align-items: stretch;
}

.voucher-hero__copy,
.voucher-hero__media {
  position: relative;
  z-index: 1;
}

.voucher-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 0 2rem;
}

.voucher-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.voucher-hero__bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  width: 100%;
  max-width: 64rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.voucher-hero__bullets li {
  min-height: 7.8rem;
  padding: 1.6rem 1.8rem;
  border-radius: var(--voucher-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.voucher-hero__bullets strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.48rem;
  color: #fff;
}

.voucher-hero__bullets span {
  display: block;
  color: var(--voucher-muted);
  font-size: 1.34rem;
  line-height: 1.6;
}

.voucher-hero__showcase {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-radius: var(--voucher-radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.2);
  background:
    linear-gradient(150deg, rgba(20, 20, 20, 0.95), rgba(12, 12, 12, 0.92)),
    var(--voucher-surface);
  box-shadow: var(--voucher-shadow);
}

.voucher-hero__showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(21, 54, 44, 0.32), transparent 48%),
    radial-gradient(circle at 80% 14%, rgba(212, 175, 55, 0.18), transparent 35%);
}

.voucher-hero__showcase img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.24;
  mix-blend-mode: screen;
}

.voucher-hero__card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  min-height: 100%;
  padding: 3rem;
}

.voucher-hero__voucher {
  width: 100%;
  max-width: 44rem;
  aspect-ratio: 1.72;
  margin-left: auto;
  padding: 2.2rem;
  border-radius: 2.4rem;
  border: 1px solid rgba(212, 175, 55, 0.38);
  background:
    linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(12, 12, 12, 0.95)),
    #111;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.voucher-hero__voucher-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.voucher-hero__voucher-brand img {
  width: auto;
  height: 3rem;
}

.voucher-hero__voucher-badge {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: linear-gradient(135deg, #f2dd91, var(--voucher-gold));
}

.voucher-hero__voucher-value {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.8rem, 6vw, 5.4rem);
  line-height: 1;
  color: var(--voucher-gold-light);
}

.voucher-hero__voucher-copy {
  display: grid;
  gap: 1rem;
}

.voucher-hero__voucher-copy span {
  display: block;
  color: var(--voucher-muted);
  font-size: 1.18rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.voucher-hero__voucher-copy strong {
  font-size: 1.9rem;
  color: #fff;
}

.voucher-hero__voucher-foot {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.14rem;
  color: var(--voucher-muted);
}

.voucher-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.voucher-hero__meta-card {
  min-height: 10rem;
  padding: 1.6rem;
  border-radius: var(--voucher-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.voucher-hero__meta-card strong {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
  color: var(--voucher-gold-light);
}

.voucher-hero__meta-card span {
  display: block;
  color: var(--voucher-muted);
  font-size: 1.32rem;
  line-height: 1.6;
}

.voucher-benefits {
  padding: 1.4rem 0 5rem;
}

.voucher-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.voucher-benefit-card {
  padding: 2rem;
  border-radius: var(--voucher-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.03)),
    var(--voucher-card);
}

.voucher-benefit-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  margin-bottom: 1.4rem;
  border-radius: 50%;
  color: var(--voucher-gold-light);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.22);
}

.voucher-benefit-card h3 {
  margin: 0 0 0.9rem;
  font-size: 1.7rem;
  color: #fff;
}

.voucher-benefit-card p {
  margin: 0;
  color: var(--voucher-muted);
  font-size: 1.42rem;
  line-height: 1.65;
}

.voucher-section {
  position: relative;
  padding: 2.2rem 0 6rem;
}

.voucher-section__shell {
  position: relative;
  padding: clamp(2.4rem, 4vw, 3.6rem);
  border-radius: calc(var(--voucher-radius-lg) + 0.4rem);
  border: 1px solid rgba(212, 175, 55, 0.18);
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.94), rgba(10, 10, 10, 0.98)),
    var(--voucher-surface);
  box-shadow: var(--voucher-shadow);
}

.voucher-section__header {
  display: grid;
  gap: 1.4rem;
  max-width: 76rem;
  margin-bottom: 3rem;
}

.progress-container {
  position: sticky;
  top: 8.6rem;
  z-index: 30;
  margin: 0 -1rem 2.8rem;
  padding: 1.4rem 1rem 0;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.98), rgba(8, 8, 8, 0.65) 80%, transparent);
}

.progress-track {
  height: 0.7rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.progress-fill {
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, #f1d77a, var(--voucher-gold-dark));
  transition: width 0.3s ease;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
  font-size: 1.24rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.progress-steps .step.active {
  color: var(--voucher-gold-light);
}

.voucher-layout {
  display: grid;
  gap: 3.2rem;
  align-items: start;
}

@media (min-width: 1040px) {
  .voucher-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(38rem, 0.92fr);
  }
}

.voucher-form-col {
  display: grid;
  gap: 2rem;
}

.form-step,
.order-summary {
  padding: 2.4rem;
  border-radius: var(--voucher-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.03));
}

.form-step h3 {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin: 0 0 1.8rem;
  font-size: 2rem;
  color: #fff;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  border-radius: 50%;
  color: #0a0a0a;
  background: linear-gradient(135deg, #f1d77a, var(--voucher-gold));
  font-size: 1.3rem;
  font-weight: 800;
}

.voucher-type-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.voucher-type-option {
  flex: 1 1 22rem;
}

.voucher-type-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.voucher-type-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5.2rem;
  padding: 1.3rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--voucher-muted-strong);
  font-size: 1.42rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.voucher-type-option input:checked + span {
  color: #0a0a0a;
  border-color: rgba(212, 175, 55, 0.65);
  background: linear-gradient(135deg, #f1d77a, var(--voucher-gold));
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-bottom: 1.4rem;
}

.radio-tile {
  position: relative;
}

.radio-tile input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tile-label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 8rem;
  padding: 1.4rem 1rem;
  border-radius: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.radio-tile input:checked + .tile-label {
  border-color: rgba(212, 175, 55, 0.7);
  background: rgba(212, 175, 55, 0.12);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.2);
  color: var(--voucher-gold-light);
}

.radio-tile:hover .tile-label,
.radio-tile:focus-within .tile-label {
  transform: translateY(-1px);
}

.bestseller-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.14);
  color: var(--voucher-gold-light);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-group {
  position: relative;
  display: grid;
  gap: 0.8rem;
}

.form-grid {
  display: grid;
  gap: 1.4rem;
}

.form-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-label {
  font-size: 1.34rem;
  font-weight: 700;
  color: var(--voucher-muted-strong);
}

.form-hint {
  color: var(--voucher-muted);
  font-size: 1.22rem;
  line-height: 1.6;
}

.form-input,
select.form-input {
  width: 100%;
  min-height: 5.5rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.4rem;
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
  font: inherit;
  font-size: 1.5rem;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

.form-input:focus,
select.form-input:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.52);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.08);
}

.form-input.valid {
  border-color: rgba(55, 212, 141, 0.55);
}

.form-input.error {
  border-color: rgba(255, 108, 100, 0.8);
  box-shadow: 0 0 0 4px rgba(255, 108, 100, 0.08);
}

.input-check {
  position: absolute;
  top: 4.3rem;
  right: 1.6rem;
  width: 1.7rem;
  height: 1.7rem;
  opacity: 0;
  pointer-events: none;
  stroke: var(--voucher-success);
  stroke-width: 2.4;
  fill: none;
  transition: opacity 0.2s ease;
}

.form-input.valid + .input-check,
.form-input.valid ~ .input-check {
  opacity: 1;
}

.delivery-detail-box {
  display: none;
  margin-top: 1.4rem;
  padding: 1.6rem;
  border-radius: 1.6rem;
  border: 1px dashed rgba(212, 175, 55, 0.24);
  background: rgba(255, 255, 255, 0.025);
}

.delivery-detail-box.active {
  display: block;
}

.delivery-detail-box h4 {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0 0 1.2rem;
  font-size: 1.58rem;
}

.delivery-options {
  display: grid;
  gap: 1.1rem;
}

.delivery-option {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.4rem;
  align-items: flex-start;
  padding: 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.delivery-option input {
  width: 1.8rem;
  height: 1.8rem;
  margin-top: 0.3rem;
  accent-color: var(--voucher-gold);
}

.delivery-option:has(input:checked) {
  border-color: rgba(212, 175, 55, 0.55);
  background: rgba(212, 175, 55, 0.09);
}

.option-details {
  display: grid;
  gap: 0.5rem;
}

.option-title {
  font-size: 1.52rem;
  font-weight: 700;
  color: #fff;
}

.option-desc {
  color: var(--voucher-muted);
  font-size: 1.33rem;
  line-height: 1.6;
}

.delivery-extra {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}

.price-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--voucher-gold-light);
  font-size: 1.24rem;
  font-weight: 700;
  white-space: nowrap;
}

.locker-selected {
  display: none;
  margin-top: 1.1rem;
  padding: 1.4rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(55, 212, 141, 0.25);
  background: rgba(55, 212, 141, 0.08);
  color: #e7fff4;
  font-size: 1.34rem;
  line-height: 1.6;
}

.locker-selected.active {
  display: block;
}

.locker-note {
  margin: 0;
  color: var(--voucher-muted);
  font-size: 1.24rem;
  line-height: 1.6;
}

.geowidget-wrapper {
  overflow: hidden;
  position: relative;
  min-height: 36rem;
  height: clamp(36rem, 62vh, 56rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.8rem;
  background: rgba(0, 0, 0, 0.25);
}

.geowidget-wrapper > inpost-geowidget {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.locker-manual-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.4rem;
}

.order-summary {
  display: grid;
  gap: 1.4rem;
}

.summary-row,
.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  align-items: baseline;
  font-size: 1.45rem;
}

.summary-row span:first-child {
  color: var(--voucher-muted);
}

.summary-row strong {
  color: #fff;
  text-align: right;
}

.summary-total {
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.95rem;
  font-weight: 800;
  color: var(--voucher-gold-light);
}

.summary-legal {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.035);
  font-size: 1.28rem;
  color: var(--voucher-muted);
  line-height: 1.7;
}

.summary-legal input {
  width: 1.7rem;
  height: 1.7rem;
  margin-top: 0.2rem;
  accent-color: var(--voucher-gold);
}

.summary-legal a {
  color: var(--voucher-gold-light);
}

.summary-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--voucher-muted);
  font-size: 1.22rem;
  text-align: center;
}

.summary-security--warning {
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(241, 183, 72, 0.22);
  border-radius: 1.4rem;
  background: rgba(179, 95, 0, 0.14);
  color: #ffe8bf;
}

.voucher-preview-col {
  display: grid;
  gap: 1.4rem;
}

@media (min-width: 1040px) {
  .voucher-preview-col {
    position: sticky;
    top: 14rem;
  }
}

.preview-label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--voucher-gold-light);
}

.preview-label::before {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: var(--voucher-success);
}

.svg-preview-container {
  overflow: hidden;
  padding: 2rem;
  border-radius: 2.4rem;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    var(--voucher-surface-strong);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.svg-preview-container svg {
  display: block;
  width: 100%;
  height: auto;
}

.reviews-widget {
  display: grid;
  gap: 1.2rem;
  padding: 1.8rem;
  border-radius: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.reviews-widget__stars {
  display: flex;
  gap: 0.5rem;
  color: var(--voucher-gold);
}

.reviews-widget__stats {
  margin: 0;
  color: var(--voucher-muted);
  font-size: 1.26rem;
}

.review-carousel {
  min-height: 9rem;
}

.review-carousel__text {
  margin: 0 0 0.9rem;
  font-size: 1.55rem;
  line-height: 1.65;
  color: #fff;
}

.review-carousel__author {
  margin: 0;
  color: var(--voucher-gold-light);
  font-size: 1.3rem;
  font-weight: 700;
}

.voucher-note-card {
  padding: 1.7rem;
  border-radius: 1.8rem;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(21, 54, 44, 0.28);
}

.voucher-note-card h4 {
  margin: 0 0 0.9rem;
  font-size: 1.55rem;
}

.voucher-note-card p {
  margin: 0;
  color: var(--voucher-muted);
  font-size: 1.33rem;
  line-height: 1.7;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.voucher-steps,
.voucher-faq {
  padding: 2rem 0 5rem;
}

.voucher-steps__header,
.voucher-faq__header {
  display: grid;
  gap: 1.4rem;
  max-width: 72rem;
  margin-bottom: 2.6rem;
}

.voucher-steps__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.voucher-step-card {
  padding: 2rem;
  border-radius: var(--voucher-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.voucher-step-card__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  margin-bottom: 1.6rem;
  border-radius: 1.5rem;
  background: rgba(212, 175, 55, 0.11);
  color: var(--voucher-gold-light);
  font-size: 1.55rem;
  font-weight: 800;
}

.voucher-step-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.75rem;
}

.voucher-step-card p {
  margin: 0;
  color: var(--voucher-muted);
  font-size: 1.38rem;
  line-height: 1.7;
}

.voucher-faq__list {
  display: grid;
  gap: 1rem;
}

.voucher-faq__item {
  overflow: hidden;
  border-radius: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.voucher-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.8rem 2rem;
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
}

.voucher-faq__item summary::-webkit-details-marker {
  display: none;
}

.voucher-faq__item p {
  margin: 0;
  padding: 0 2rem 1.8rem;
  color: var(--voucher-muted);
  font-size: 1.4rem;
  line-height: 1.75;
}

.voucher-footer {
  padding: 4rem 0 8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
}

.voucher-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr 0.9fr;
  gap: 2.4rem;
}

.voucher-footer__brand img {
  height: 3.6rem;
  width: auto;
}

.voucher-footer h3 {
  margin: 0 0 1.4rem;
  font-size: 1.38rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--voucher-gold-light);
}

.voucher-footer p,
.voucher-footer li,
.voucher-footer a {
  color: var(--voucher-muted);
  font-size: 1.36rem;
  line-height: 1.8;
  text-decoration: none;
}

.voucher-footer a:hover,
.voucher-footer a:focus-visible {
  color: #fff;
}

.voucher-footer ul {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.voucher-footer__socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.4rem;
}

.voucher-footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.voucher-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1.4rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.22rem;
}

.voucher-mobile-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 1.2rem 1.6rem calc(1.2rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(12px);
}

.voucher-mobile-bar__total {
  display: grid;
  gap: 0.2rem;
}

.voucher-mobile-bar__total span {
  color: var(--voucher-muted);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.voucher-mobile-bar__total strong {
  color: #fff;
  font-size: 1.8rem;
}

@media (max-width: 1280px) {
  .voucher-hero__meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .voucher-page {
    padding-top: 8.8rem;
  }

  .voucher-hero__grid {
    grid-template-columns: 1fr;
  }

  .voucher-hero__card {
    min-height: auto;
  }

  .voucher-benefits__grid,
  .voucher-steps__grid,
  .voucher-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container {
    padding: 0 1.7rem;
  }

  .voucher-page {
    padding-top: 8rem;
  }

  .voucher-hero {
    padding-top: 3.4rem;
  }

  .voucher-hero__copy {
    padding-top: 1rem;
  }

  .voucher-hero__actions,
  .voucher-hero__bullets,
  .amount-grid,
  .form-grid--two,
  .voucher-benefits__grid,
  .voucher-steps__grid,
  .voucher-footer__grid {
    grid-template-columns: 1fr;
  }

  .progress-container {
    top: 7.2rem;
    margin-inline: 0;
    padding-inline: 0;
  }

  .progress-steps {
    gap: 0.6rem;
    font-size: 1.04rem;
  }

  .form-step,
  .order-summary,
  .svg-preview-container,
  .reviews-widget {
    padding: 2rem 1.7rem;
  }

  .delivery-option {
    grid-template-columns: auto 1fr;
  }

  .price-tag {
    grid-column: 2;
    justify-self: flex-start;
  }

  .voucher-footer {
    padding-bottom: 10rem;
  }

  .voucher-footer__bottom {
    flex-direction: column;
  }

  .voucher-mobile-bar {
    display: flex;
  }
}
