:root {
  --paper: hsl(40 36% 98%);
  --paper-warm: hsl(36 35% 95%);
  --surface: hsl(42 34% 99%);
  --ink: hsl(27 13% 12%);
  --ink-soft: hsl(28 7% 39%);
  --gold: hsl(33 55% 46%);
  --gold-dark: hsl(31 57% 38%);
  --gold-pale: hsl(37 60% 91%);
  --line: hsl(34 26% 85%);
  --serif: "Italiana", "Times New Roman", serif;
  --sans: "Manrope", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-height: 82px;
  --progress-height: 94px;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  scroll-behavior: smooth;
}

body {
  min-width: 280px;
  margin: 0;
  background:
    radial-gradient(circle at 78% 6%, hsl(37 58% 92% / 0.65), transparent 25%), var(--paper);
}

body.is-summary-open,
body:has(.service-detail[open]) {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

.builder-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 clamp(20px, 3vw, 48px);
  border-bottom: 1px solid var(--line);
  background: hsl(40 36% 98% / 0.91);
  backdrop-filter: blur(16px);
  grid-template-columns: 1fr auto 1fr;
}

.builder-header__back,
.builder-bag {
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  place-items: center;
  transition:
    border 200ms ease,
    background 200ms ease;
}

.builder-header__back:hover,
.builder-header__back:focus-visible,
.builder-bag:hover,
.builder-bag:focus-visible {
  border-color: var(--line);
  background: var(--surface);
  outline: none;
}

.builder-header__back svg,
.builder-bag svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.builder-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.builder-brand > svg {
  width: 42px;
  fill: none;
  stroke: var(--gold-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.builder-brand > span {
  display: grid;
}

.builder-brand strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.builder-brand small {
  margin-top: 5px;
  color: var(--gold-dark);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.22em;
  text-align: center;
  text-transform: uppercase;
}

.builder-bag {
  position: relative;
  justify-self: end;
}

.builder-bag__count {
  position: absolute;
  top: 1px;
  right: -2px;
  display: grid;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border: 2px solid var(--paper);
  border-radius: 99px;
  color: white;
  background: var(--gold-dark);
  font-size: 9px;
  font-weight: 700;
  place-items: center;
}

.builder-progress {
  position: sticky;
  top: var(--header-height);
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--progress-height);
  padding: 15px 20px;
  border-bottom: 1px solid hsl(34 26% 87%);
  background: hsl(40 36% 98% / 0.92);
  backdrop-filter: blur(14px);
}

.builder-progress__item {
  display: flex;
  align-items: center;
  min-width: 112px;
  color: hsl(30 6% 55%);
  gap: 11px;
}

.builder-progress__item span {
  display: grid;
  width: 31px;
  height: 31px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 650;
  place-items: center;
}

.builder-progress__item strong {
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.builder-progress__item.is-active,
.builder-progress__item.is-complete {
  color: var(--gold-dark);
}

.builder-progress__item.is-active span {
  border-color: var(--gold-dark);
  color: white;
  background: var(--gold-dark);
  box-shadow: 0 0 0 6px hsl(33 55% 46% / 0.09);
}

.builder-progress__item.is-complete span {
  border-color: var(--gold);
  background: var(--gold-pale);
}

.builder-progress > i {
  width: clamp(28px, 4vw, 66px);
  height: 2px;
  margin: 0 11px;
  background: var(--line);
  transition: background 240ms ease;
}

.builder-progress__item.is-complete + i {
  background: var(--gold);
}

.builder-layout {
  display: grid;
  width: min(1520px, 100%);
  min-height: calc(100vh - var(--header-height) - var(--progress-height));
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) 390px;
}

.builder-content {
  min-width: 0;
  padding: clamp(56px, 5vw, 84px) clamp(32px, 5vw, 76px) 100px;
}

.builder-step {
  width: min(980px, 100%);
  margin: 0 auto;
  animation: step-in 480ms var(--ease) both;
}

.builder-step[hidden] {
  display: none;
}

@keyframes step-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.builder-intro {
  display: grid;
  max-width: 760px;
  margin: 0 0 46px;
}

.builder-intro__index,
.service-detail__eyebrow,
.package-summary__eyebrow {
  margin: 0 0 19px;
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.builder-intro h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.builder-intro h1 em {
  color: var(--gold-dark);
  font-style: normal;
}

.builder-intro > p:last-child {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.builder-intro--compact {
  margin-bottom: 30px;
}

.base-packages {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.base-package {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 16px 38px hsl(30 18% 30% / 0.06);
  cursor: pointer;
  flex-direction: column;
  transition:
    border-color 260ms ease,
    box-shadow 260ms var(--ease),
    transform 260ms var(--ease);
}

.base-package:hover {
  border-color: hsl(33 45% 68%);
  box-shadow: 0 20px 42px hsl(30 18% 30% / 0.1);
  transform: translateY(-4px);
}

.base-package.is-selected {
  border-color: var(--gold);
  box-shadow:
    0 0 0 2px hsl(33 55% 46% / 0.12),
    0 22px 44px hsl(30 18% 30% / 0.11);
}

.base-package input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.base-package:focus-within {
  outline: 2px solid var(--gold-dark);
  outline-offset: 4px;
}

.base-package__media {
  position: relative;
  display: block;
  height: 260px;
  overflow: hidden;
  background: var(--paper-warm);
}

.base-package__media::after {
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, hsl(27 20% 12% / 0.2));
  content: "";
}

.base-package__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.base-package:nth-child(1) .base-package__media img {
  object-position: 50% 43%;
}

.base-package:nth-child(2) .base-package__media img {
  object-position: 50% 42%;
}

.base-package:nth-child(3) .base-package__media img {
  object-position: 50% 50%;
}

.base-package:hover .base-package__media img {
  transform: scale(1.03);
}

.base-package__check {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid hsl(0 0% 100% / 0.75);
  border-radius: 50%;
  color: transparent;
  background: hsl(0 0% 100% / 0.8);
  backdrop-filter: blur(8px);
  place-items: center;
  transition:
    color 200ms ease,
    background 200ms ease;
}

.base-package.is-selected .base-package__check {
  color: white;
  background: var(--gold-dark);
}

.base-package__check svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.base-package__badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 2;
  padding: 8px 11px;
  color: white;
  background: hsl(28 16% 17% / 0.7);
  backdrop-filter: blur(8px);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.base-package__body {
  display: flex;
  padding: 25px 24px 27px;
  flex: 1;
  flex-direction: column;
}

.base-package__topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.base-package__topline > span {
  display: grid;
}

.base-package__topline small {
  margin-bottom: 5px;
  color: var(--gold-dark);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.base-package__topline strong {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.base-package__topline b {
  padding-top: 14px;
  font-size: 14px;
  white-space: nowrap;
}

.base-package__features {
  display: grid;
  margin-top: 23px;
  color: var(--ink-soft);
  font-size: 11px;
  gap: 10px;
}

.base-package__features > span {
  position: relative;
  padding-left: 15px;
}

.base-package__features > span::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.builder-tip {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding: 20px 23px;
  border: 1px dashed hsl(33 35% 75%);
  background: hsl(39 40% 97%);
}

.builder-tip > span {
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid hsl(33 40% 72%);
  border-radius: 50%;
  color: var(--gold-dark);
  place-items: center;
}

.builder-tip p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.55;
}

.builder-step__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.builder-step__actions--split {
  align-items: center;
  justify-content: space-between;
}

.builder-step__actions--split p {
  margin: 0;
  color: hsl(28 6% 52%);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.builder-primary,
.builder-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  border: 1px solid var(--gold-dark);
  cursor: pointer;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms ease,
    background 220ms ease;
}

.builder-primary {
  width: min(100%, 280px);
  padding: 0 18px 0 23px;
  color: white;
  background: var(--gold-dark);
}

.builder-secondary {
  gap: 11px;
  padding: 0 20px;
  color: var(--gold-dark);
  background: transparent;
}

.builder-primary svg,
.builder-secondary svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.builder-primary:hover,
.builder-primary:focus-visible,
.builder-secondary:hover,
.builder-secondary:focus-visible {
  box-shadow: 0 12px 24px hsl(31 50% 34% / 0.16);
  outline: none;
  transform: translateY(-2px);
}

.builder-secondary:hover,
.builder-secondary:focus-visible {
  background: var(--gold-pale);
}

.checkout-step {
  max-width: 860px;
}

.payment-options {
  display: grid;
  gap: 14px;
}

.payment-option {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 126px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 12px 32px hsl(30 18% 30% / 0.05);
  cursor: pointer;
  gap: 18px;
  grid-template-columns: 36px minmax(0, 1fr);
  transition:
    border-color 240ms ease,
    box-shadow 240ms var(--ease),
    transform 240ms var(--ease);
}

.payment-option:hover {
  border-color: hsl(33 42% 68%);
  transform: translateY(-2px);
}

.payment-option.is-selected {
  border-color: var(--gold);
  box-shadow:
    0 0 0 2px hsl(33 55% 46% / 0.1),
    0 18px 40px hsl(30 18% 30% / 0.08);
}

.payment-option > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-option:focus-within {
  outline: 2px solid var(--gold-dark);
  outline-offset: 3px;
}

.payment-option__marker {
  display: grid;
  width: 32px;
  height: 32px;
  border: 1px solid hsl(34 20% 72%);
  border-radius: 50%;
  color: transparent;
  place-items: center;
  transition:
    color 200ms ease,
    background 200ms ease,
    border-color 200ms ease;
}

.payment-option.is-selected .payment-option__marker {
  border-color: var(--gold-dark);
  color: white;
  background: var(--gold-dark);
}

.payment-option__marker svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.payment-option__copy,
.payment-option__headline,
.payment-option__headline > span {
  display: flex;
}

.payment-option__copy,
.payment-option__headline {
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.payment-option__headline {
  flex: 1;
}

.payment-option__headline > span {
  align-items: flex-start;
  flex-direction: column;
}

.payment-option__headline strong {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.payment-option__headline small,
.payment-option__price small,
.payment-option__price del {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 10px;
}

.payment-option__headline b {
  padding: 7px 10px;
  color: hsl(139 31% 30%);
  background: hsl(137 35% 92%);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.payment-option__price {
  display: grid;
  min-width: 135px;
  justify-items: end;
}

.payment-option__price strong {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.payment-option__price del {
  opacity: 0.8;
}

.checkout-assurance {
  display: flex;
  align-items: center;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid hsl(137 24% 80%);
  color: hsl(139 27% 27%);
  background: hsl(135 35% 96%);
  gap: 14px;
}

.checkout-assurance__icon {
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid hsl(139 26% 59%);
  border-radius: 50%;
  flex: 0 0 auto;
  place-items: center;
}

.checkout-assurance__icon svg,
.privacy-note svg,
.order-review__benefit svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.checkout-assurance > span:last-child {
  display: grid;
  gap: 4px;
}

.checkout-assurance strong {
  font-size: 11px;
}

.checkout-assurance small {
  color: hsl(138 17% 40%);
  font-size: 9px;
  line-height: 1.5;
}

.checkout-form__grid {
  display: grid;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 16px 42px hsl(30 18% 30% / 0.06);
  gap: 22px 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.form-field--wide {
  grid-column: 1 / -1;
}

.form-field > span {
  display: flex;
  align-items: center;
  min-height: 14px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-field > span em {
  margin-left: auto;
  color: var(--ink-soft);
  font-size: 8px;
  font-style: normal;
  font-weight: 500;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: hsl(40 36% 98%);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.form-field input {
  min-height: 55px;
  padding: 0 16px;
}

.form-field textarea {
  min-height: 118px;
  padding: 15px 16px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: hsl(28 6% 62%);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: white;
  box-shadow: 0 0 0 3px hsl(33 55% 46% / 0.09);
}

.form-field.is-invalid input {
  border-color: hsl(2 51% 50%);
  box-shadow: 0 0 0 3px hsl(2 51% 50% / 0.08);
}

.form-field__error {
  display: none;
  color: hsl(2 51% 43%);
  font-size: 9px;
}

.form-field.is-invalid .form-field__error {
  display: block;
}

.privacy-note {
  display: flex;
  align-items: center;
  margin-top: 16px;
  padding: 15px 17px;
  color: var(--ink-soft);
  background: var(--paper-warm);
  gap: 12px;
}

.privacy-note svg {
  width: 18px;
  flex: 0 0 auto;
}

.privacy-note p {
  margin: 0;
  font-size: 9px;
  line-height: 1.55;
}

.order-review {
  display: grid;
  align-items: start;
  gap: 18px;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
}

.order-review__panel,
.customer-review {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 16px 42px hsl(30 18% 30% / 0.06);
}

.order-review__panel {
  padding: clamp(24px, 4vw, 38px);
}

.customer-review {
  padding: 27px 24px;
}

.order-review__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  gap: 15px;
}

.order-review__heading > span {
  font-family: var(--serif);
  font-size: 24px;
}

.order-review__heading button {
  padding: 0 0 3px;
  border: 0;
  border-bottom: 1px solid var(--gold);
  color: var(--gold-dark);
  background: transparent;
  cursor: pointer;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-review__heading button:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 4px;
}

.order-review__items {
  display: grid;
  padding: 12px 0 18px;
}

.order-review__item {
  display: grid;
  align-items: center;
  padding: 11px 0;
  gap: 13px;
  grid-template-columns: 48px minmax(0, 1fr) auto;
}

.order-review__item img {
  width: 48px;
  height: 48px;
  object-fit: cover;
}

.order-review__item span {
  display: grid;
  gap: 3px;
}

.order-review__item small {
  color: var(--ink-soft);
  font-size: 8px;
}

.order-review__item strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.order-review__item b {
  font-size: 10px;
  white-space: nowrap;
}

.order-review__item-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.order-review__remove {
  display: grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-soft);
  background: transparent;
  cursor: pointer;
  place-items: center;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease,
    transform 180ms var(--ease);
}

.order-review__remove:hover,
.order-review__remove:focus-visible {
  border-color: hsl(2 42% 60%);
  color: hsl(2 51% 43%);
  background: hsl(2 48% 96%);
  outline: none;
  transform: scale(1.06);
}

.order-review__remove svg {
  width: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.order-review__totals,
.customer-review dl {
  margin: 0;
}

.order-review__totals {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.order-review__totals > div,
.customer-review dl > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.order-review__totals > div {
  padding: 7px 0;
}

.order-review__totals dt,
.order-review__totals dd {
  margin: 0;
  font-size: 10px;
}

.order-review__totals dt {
  color: var(--ink-soft);
}

.order-review__totals .order-review__grand-total {
  align-items: flex-end;
  margin-top: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.order-review__grand-total dt {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-review__grand-total dd {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 32px;
}

.order-review__benefit {
  display: flex;
  align-items: center;
  margin-top: 23px;
  padding: 15px 17px;
  border: 1px solid hsl(137 24% 80%);
  color: hsl(139 27% 27%);
  background: hsl(135 35% 96%);
  font-size: 9px;
  line-height: 1.5;
  gap: 11px;
}

.order-review__benefit svg {
  flex: 0 0 auto;
}

.customer-review dl {
  display: grid;
  padding-top: 9px;
}

.customer-review dl > div {
  padding: 13px 0;
  border-bottom: 1px solid hsl(34 26% 90%);
  flex-direction: column;
  gap: 5px;
}

.customer-review dl > div:last-child {
  border-bottom: 0;
}

.customer-review dt,
.customer-review dd {
  margin: 0;
}

.customer-review dt {
  color: var(--ink-soft);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.customer-review dd {
  overflow-wrap: anywhere;
  font-size: 11px;
  line-height: 1.45;
}

.terms-check {
  display: flex;
  align-items: flex-start;
  margin-top: 20px;
  cursor: pointer;
  gap: 11px;
}

.terms-check > input {
  position: absolute;
  opacity: 0;
}

.terms-check > span {
  display: grid;
  width: 21px;
  height: 21px;
  border: 1px solid var(--line);
  color: transparent;
  background: var(--surface);
  flex: 0 0 auto;
  place-items: center;
}

.terms-check > span svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.terms-check > input:checked + span {
  border-color: var(--gold-dark);
  color: white;
  background: var(--gold-dark);
}

.terms-check > input:focus-visible + span {
  outline: 2px solid var(--gold-dark);
  outline-offset: 3px;
}

.terms-check small {
  max-width: 650px;
  color: var(--ink-soft);
  font-size: 9px;
  line-height: 1.6;
}

.terms-error {
  margin: 8px 0 0 32px;
  color: hsl(2 51% 43%);
  font-size: 9px;
}

.js-order-review[hidden],
.order-review__totals > div[hidden],
.terms-check[hidden],
.builder-step__actions[hidden],
.terms-error[hidden] {
  display: none !important;
}

.service-filter {
  display: flex;
  gap: 8px;
  margin: 0 0 26px;
}

.service-filter button {
  min-height: 38px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--ink-soft);
  background: var(--surface);
  cursor: pointer;
  font-size: 10px;
  font-weight: 650;
}

.service-filter button.is-active {
  border-color: var(--gold-dark);
  color: white;
  background: var(--gold-dark);
}

.builder-services {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.builder-service {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 12px 30px hsl(30 18% 30% / 0.06);
  transition:
    border-color 240ms ease,
    transform 240ms var(--ease),
    box-shadow 240ms var(--ease);
}

.builder-service:hover {
  border-color: hsl(33 42% 68%);
  box-shadow: 0 18px 36px hsl(30 18% 30% / 0.11);
  transform: translateY(-4px);
}

.builder-service.is-added {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px hsl(33 55% 46% / 0.1);
}

.builder-service__open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.builder-service__media {
  position: relative;
  display: block;
  height: 175px;
  overflow: hidden;
}

.builder-service__media::after {
  position: absolute;
  inset: 60% 0 0;
  background: linear-gradient(transparent, hsl(28 18% 12% / 0.25));
  content: "";
}

.builder-service__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.builder-service:hover .builder-service__media img {
  transform: scale(1.035);
}

.builder-service__details {
  display: grid;
  padding: 18px 58px 19px 18px;
}

.builder-service__details small {
  margin-bottom: 5px;
  color: var(--gold-dark);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.builder-service__details strong {
  min-height: 2.1em;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.builder-service__details b {
  margin-top: 8px;
  font-size: 12px;
}

.builder-service__add {
  position: absolute;
  right: 16px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid hsl(33 34% 75%);
  border-radius: 50%;
  color: var(--gold-dark);
  background: var(--surface);
  cursor: pointer;
  place-items: center;
  transition:
    color 200ms ease,
    background 200ms ease,
    transform 200ms var(--ease);
}

.builder-service__add:hover,
.builder-service__add:focus-visible {
  outline: none;
  transform: scale(1.08);
}

.builder-service.is-added .builder-service__add {
  border-color: var(--gold-dark);
  color: white;
  background: var(--gold-dark);
}

.builder-service__add svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.builder-service.is-added .builder-service__add .line-vertical {
  display: none;
}

.package-summary {
  position: sticky;
  top: calc(var(--header-height) + var(--progress-height));
  display: flex;
  height: calc(100vh - var(--header-height) - var(--progress-height));
  min-height: 590px;
  padding: 50px 38px 36px;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(hsl(41 40% 99% / 0.96), hsl(37 38% 96% / 0.96)),
    radial-gradient(circle at top right, var(--gold-pale), transparent 50%);
  flex-direction: column;
}

.package-summary__close {
  display: none;
}

.summary-backdrop {
  position: fixed;
  z-index: 35;
  inset: 0;
  display: none;
  padding: 0;
  border: 0;
  background: hsl(28 14% 10% / 0.55);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 260ms ease,
    visibility 260ms step-end;
}

body.is-summary-open .summary-backdrop {
  display: block;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 260ms ease,
    visibility 260ms step-start;
}

body.is-summary-open .package-summary {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  width: min(420px, calc(100% - 32px));
  height: 100dvh;
  max-height: none;
  border-left: 1px solid var(--line);
  box-shadow: -24px 0 64px hsl(28 16% 12% / 0.25);
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition:
    opacity 260ms ease,
    visibility 260ms step-start,
    transform 360ms var(--ease);
}

body.is-summary-open .package-summary__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  place-items: center;
}

body.is-summary-open .package-summary__close svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.package-summary__eyebrow {
  margin-bottom: 12px;
}

.package-summary h2 {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.package-summary__base {
  display: grid;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  gap: 13px;
  grid-template-columns: 58px 1fr auto;
}

.package-summary__base img {
  width: 58px;
  height: 64px;
  object-fit: cover;
}

.package-summary__base > span {
  display: grid;
}

.package-summary__base small,
.package-summary__extras-head,
.package-summary__total small {
  color: var(--ink-soft);
  font-size: 9px;
}

.package-summary__base strong {
  margin-top: 5px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
}

.package-summary__base b {
  font-size: 11px;
}

.package-summary__extras {
  min-height: 130px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.package-summary__extras-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-summary__empty {
  display: flex;
  align-items: center;
  color: hsl(28 6% 50%);
  gap: 12px;
}

.package-summary__empty[hidden] {
  display: none;
}

.package-summary__empty > span {
  display: grid;
  width: 32px;
  height: 32px;
  border: 1px dashed hsl(33 30% 72%);
  border-radius: 50%;
  color: var(--gold-dark);
  place-items: center;
}

.package-summary__empty p {
  max-width: 190px;
  margin: 0;
  font-size: 10px;
  line-height: 1.5;
}

.package-summary__extras ul {
  display: grid;
  max-height: 175px;
  margin: 0;
  padding: 0;
  overflow: auto;
  list-style: none;
  gap: 11px;
}

.package-summary__extras li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  gap: 10px;
}

.package-summary__extras li span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.package-summary__extras li b {
  font-size: 10px;
  white-space: nowrap;
}

.package-summary__total {
  display: grid;
  margin-top: auto;
  padding-top: 28px;
}

.package-summary__total > span {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.package-summary__total > span small {
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-summary__total strong {
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
}

.package-summary__total > small {
  margin-top: 6px;
  text-align: right;
}

.package-summary__notice {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: hsl(28 6% 49%);
  font-size: 8px;
  line-height: 1.55;
}

.service-detail {
  width: min(1080px, calc(100% - 40px));
  max-width: none;
  max-height: min(820px, calc(100vh - 40px));
  padding: 0;
  overflow: hidden;
  border: 1px solid hsl(34 24% 77%);
  color: var(--ink);
  background: var(--surface);
  box-shadow: 0 40px 100px hsl(27 20% 12% / 0.28);
}

.service-detail[open] {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  animation: detail-in 360ms var(--ease) both;
}

.service-detail::backdrop {
  background: hsl(29 12% 10% / 0.68);
  backdrop-filter: blur(5px);
}

@keyframes detail-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.service-detail__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid hsl(0 0% 100% / 0.65);
  border-radius: 50%;
  color: white;
  background: hsl(27 18% 15% / 0.38);
  backdrop-filter: blur(8px);
  cursor: pointer;
  place-items: center;
}

.service-detail__close svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.service-detail__media {
  display: grid;
  min-height: 680px;
  padding: 16px;
  background: var(--paper-warm);
  grid-template-rows: 1fr 92px;
}

.service-detail__hero {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.service-detail__hero::after {
  position: absolute;
  inset: 65% 0 0;
  background: linear-gradient(transparent, hsl(27 18% 12% / 0.35));
  content: "";
}

.service-detail__hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail__number {
  position: absolute;
  right: 21px;
  bottom: 18px;
  z-index: 1;
  color: white;
  font-family: var(--serif);
  font-size: 19px;
}

.service-detail__thumbs {
  display: grid;
  padding-top: 12px;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}

.service-detail__thumbs button {
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
}

.service-detail__thumbs button.is-active {
  border-color: var(--gold-dark);
}

.service-detail__thumbs img {
  display: block;
  width: 100%;
  height: 78px;
  object-fit: cover;
}

.service-detail__content {
  display: flex;
  justify-content: center;
  padding: clamp(48px, 5vw, 76px);
  flex-direction: column;
}

.service-detail__content h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.service-detail__description {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
}

.service-detail__features {
  display: grid;
  margin: 28px 0;
  padding: 0;
  list-style: none;
  gap: 12px;
}

.service-detail__features li {
  position: relative;
  padding-left: 23px;
  font-size: 11px;
}

.service-detail__features li::before {
  position: absolute;
  top: -1px;
  left: 0;
  color: var(--gold-dark);
  content: "✓";
  font-size: 13px;
}

.service-detail__delivery {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 10px;
}

.service-detail__delivery span {
  color: var(--ink-soft);
}

.service-detail__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  gap: 18px;
}

.service-detail__footer > strong {
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
  white-space: nowrap;
}

.service-detail__footer .builder-primary {
  width: 190px;
}

.service-detail__footer .builder-primary.is-added {
  border-color: hsl(140 28% 36%);
  background: hsl(140 28% 36%);
}

@media (max-width: 1200px) {
  .builder-progress__item {
    min-width: 96px;
  }

  .builder-progress > i {
    width: 30px;
    margin-inline: 7px;
  }

  .builder-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
  }

  .builder-content {
    padding-inline: 32px;
  }

  .base-package__media {
    height: 220px;
  }

  .base-package__body {
    padding-inline: 18px;
  }

  .base-package__topline {
    display: grid;
  }

  .base-package__topline b {
    padding-top: 0;
  }

  .package-summary {
    padding-inline: 28px;
  }
}

@media (max-width: 960px) {
  .builder-layout {
    display: block;
  }

  .builder-content {
    padding-inline: clamp(24px, 5vw, 52px);
  }

  .order-review {
    grid-template-columns: 1fr;
  }

  .customer-review dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
  }

  .package-summary {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 40;
    width: min(390px, calc(100% - 32px));
    height: 100dvh;
    max-height: none;
    border-left: 1px solid var(--line);
    box-shadow: -24px 0 64px hsl(28 16% 12% / 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition:
      opacity 260ms ease,
      visibility 260ms step-end,
      transform 360ms var(--ease);
  }

  body.is-summary-open .package-summary {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition:
      opacity 260ms ease,
      visibility 260ms step-start,
      transform 360ms var(--ease);
  }

  .package-summary__close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: grid;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    place-items: center;
  }

  .package-summary__close svg {
    width: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.7;
  }

  .summary-backdrop {
    position: fixed;
    z-index: 35;
    inset: 0;
    display: block;
    background: hsl(28 14% 10% / 0.55);
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 260ms ease,
      visibility 260ms step-end;
  }

  body.is-summary-open .summary-backdrop {
    opacity: 1;
    visibility: visible;
    transition:
      opacity 260ms ease,
      visibility 260ms step-start;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
    --progress-height: 76px;
  }

  .builder-header {
    padding-inline: 12px;
  }

  .builder-brand > svg {
    display: none;
  }

  .builder-brand strong {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  .builder-brand small {
    display: none;
  }

  .builder-progress {
    justify-content: flex-start;
    padding: 10px 16px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .builder-progress::-webkit-scrollbar {
    display: none;
  }

  .builder-progress__item {
    display: grid;
    justify-items: center;
    min-width: 58px;
    gap: 5px;
  }

  .builder-progress__item span {
    width: 27px;
    height: 27px;
    font-size: 9px;
  }

  .builder-progress__item strong {
    font-size: 7px;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .builder-progress > i {
    width: 20px;
    min-width: 20px;
    margin: 0 2px;
    transform: translateY(-9px);
  }

  .builder-content {
    padding: 38px 12px 58px;
  }

  .builder-intro {
    margin-bottom: 29px;
    padding-inline: 8px;
  }

  .builder-intro__index {
    margin-bottom: 14px;
    font-size: 8px;
  }

  .builder-intro h1 {
    font-size: clamp(38px, 11.5vw, 58px);
    line-height: 1.02;
  }

  .builder-intro > p:last-child {
    margin-top: 17px;
    font-size: 12px;
    line-height: 1.65;
  }

  .base-packages {
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .base-package {
    display: grid;
    grid-template-columns: minmax(132px, 42%) 1fr;
  }

  .base-package__media {
    height: auto;
    min-height: 250px;
  }

  .base-package__body {
    padding: 20px 16px;
  }

  .base-package__topline strong {
    font-size: 24px;
  }

  .base-package__topline b {
    font-size: 12px;
  }

  .base-package__features {
    margin-top: 17px;
    font-size: 9px;
    gap: 8px;
  }

  .base-package__badge {
    bottom: 11px;
    left: 10px;
    padding: 7px 8px;
    font-size: 6px;
  }

  .base-package__check {
    top: 11px;
    right: 11px;
    width: 30px;
    height: 30px;
  }

  .builder-tip {
    margin: 16px 0 0;
    padding: 16px;
  }

  .builder-tip p {
    font-size: 9px;
  }

  .builder-step__actions {
    position: sticky;
    z-index: 10;
    bottom: 0;
    margin: 18px -12px -58px;
    padding: 12px;
    border-top: 1px solid var(--line);
    background: hsl(40 36% 98% / 0.94);
    backdrop-filter: blur(14px);
  }

  .builder-step__actions .builder-primary {
    width: 100%;
  }

  .builder-step__actions--split {
    position: static;
    margin: 22px 0 0;
    padding: 0;
    border: 0;
    background: none;
  }

  .builder-step__actions--split .builder-primary {
    width: min(100%, 250px);
  }

  .payment-option {
    min-height: 112px;
    padding: 18px 16px;
    gap: 13px;
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .payment-option__marker {
    width: 28px;
    height: 28px;
  }

  .payment-option__copy {
    align-items: flex-start;
  }

  .payment-option__headline strong {
    font-size: 22px;
  }

  .payment-option__headline b {
    display: none;
  }

  .payment-option__price {
    min-width: 105px;
  }

  .payment-option__price strong {
    font-size: 21px;
  }

  .checkout-form__grid {
    padding: 22px 16px;
  }

  .order-review__panel,
  .customer-review {
    box-shadow: none;
  }

  .order-review__panel {
    padding: 24px 18px;
  }

  .customer-review {
    padding: 23px 18px;
  }

  .terms-check {
    padding-inline: 4px;
  }

  .service-filter {
    gap: 6px;
    margin: 0 -12px 14px;
    padding: 0 12px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .service-filter::-webkit-scrollbar {
    display: none;
  }

  .service-filter button {
    flex: 0 0 auto;
    min-height: 32px;
    padding-inline: 13px;
    font-size: 9px;
  }

  .builder-services {
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .builder-service__media {
    height: clamp(92px, 28vw, 118px);
  }

  .builder-service__details {
    min-height: 70px;
    padding: 10px 39px 11px 11px;
  }

  .builder-service__details small {
    margin-bottom: 3px;
    font-size: 7px;
  }

  .builder-service__details strong {
    font-size: clamp(15px, 4.5vw, 18px);
  }

  .builder-service__details b {
    margin-top: 5px;
    font-size: 9px;
  }

  .builder-service__add {
    right: 8px;
    bottom: 10px;
    width: 28px;
    height: 28px;
  }

  .builder-service__add svg {
    width: 14px;
  }

  .service-detail {
    width: 100%;
    height: 100dvh;
    max-height: none;
    border: 0;
  }

  .service-detail[open] {
    display: block;
    overflow-y: auto;
  }

  .service-detail__media {
    min-height: 0;
    padding: 0 12px;
    background: var(--surface);
    grid-template-rows: min(122vw, 530px) 84px;
  }

  .service-detail__close {
    position: fixed;
    top: 13px;
    right: 13px;
  }

  .service-detail__thumbs {
    gap: 7px;
  }

  .service-detail__thumbs img {
    height: 70px;
  }

  .service-detail__content {
    padding: 38px 20px 28px;
  }

  .service-detail__content h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .service-detail__description {
    font-size: 12px;
  }

  .service-detail__footer {
    position: sticky;
    bottom: 0;
    margin: 24px -20px -28px;
    padding: 12px 20px;
    background: hsl(42 34% 99% / 0.95);
    backdrop-filter: blur(14px);
  }

  .service-detail__footer > strong {
    font-size: 25px;
  }

  .service-detail__footer .builder-primary {
    width: min(190px, 56%);
  }
}

@media (max-width: 430px) {
  .builder-progress {
    padding-inline: 10px;
  }

  .builder-progress__item {
    min-width: 50px;
  }

  .builder-progress__item strong {
    font-size: 7px;
    line-height: 1.2;
  }

  .builder-progress > i {
    width: 8px;
    min-width: 8px;
    margin-inline: 0;
  }

  .payment-option__copy,
  .payment-option__headline {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .payment-option__price {
    display: flex;
    align-items: baseline;
    min-width: 0;
    justify-items: start;
    gap: 7px;
  }

  .payment-option__price strong {
    font-size: 19px;
  }

  .payment-option__price small,
  .payment-option__price del {
    margin-top: 0;
  }

  .checkout-form__grid {
    grid-template-columns: 1fr;
  }

  .form-field--wide {
    grid-column: auto;
  }

  .customer-review dl {
    grid-template-columns: 1fr;
  }

  .order-review__item {
    grid-template-columns: 42px minmax(0, 1fr) auto;
  }

  .order-review__item img {
    width: 42px;
    height: 42px;
  }

  .order-review__grand-total dd {
    font-size: 27px;
  }

  .checkout-step .builder-step__actions--split {
    display: grid;
    gap: 9px;
    grid-template-columns: auto minmax(0, 1fr);
  }

  .checkout-step .builder-step__actions--split .builder-primary,
  .checkout-step .builder-step__actions--split .builder-secondary {
    min-width: 0;
  }

  .checkout-step .builder-step__actions--split .builder-secondary span {
    display: none;
  }

  .base-package {
    display: flex;
  }

  .base-package__media {
    height: min(73vw, 310px);
    min-height: 0;
  }

  .base-package__body {
    padding: 20px 18px 22px;
  }

  .base-package__topline {
    display: flex;
  }

  .base-package__topline b {
    padding-top: 13px;
  }

  .package-summary {
    width: calc(100% - 18px);
    padding: 48px 24px 28px;
  }
}

/* Ödeme bildirimi sonrası durum ekranı */
body.is-completion-open {
  overflow: hidden;
}

.booking-completion {
  position: fixed;
  z-index: 100;
  inset: 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.booking-completion[hidden],
.completion-view[hidden] {
  display: none !important;
}

.completion-view {
  position: absolute;
  inset: 0;
  min-width: 280px;
  overflow-y: auto;
}

.completion-success {
  background:
    radial-gradient(circle at 50% 34%, hsl(39 65% 93% / 0.7), transparent 30%),
    linear-gradient(180deg, hsl(42 38% 99%), hsl(38 30% 96%));
}

.completion-bar,
.showcase-bar {
  position: relative;
  z-index: 3;
  display: grid;
  align-items: center;
  min-height: 78px;
  padding: 0 clamp(20px, 4vw, 54px);
  grid-template-columns: 1fr auto 1fr;
}

.completion-bar {
  border-bottom: 1px solid hsl(34 25% 88%);
  background: hsl(42 38% 99% / 0.78);
  backdrop-filter: blur(14px);
}

.completion-bar__back {
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  place-items: center;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.completion-bar__back:hover,
.completion-bar__back:focus-visible {
  color: var(--gold-dark);
  background: var(--gold-pale);
  outline: none;
}

.completion-bar__back svg,
.completion-primary svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.completion-brand,
.showcase-brand {
  display: flex;
  align-items: center;
  font-family: var(--serif);
  font-size: 23px;
  letter-spacing: -0.04em;
  gap: 9px;
}

.completion-brand svg,
.showcase-brand svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.completion-bar__spacer {
  width: 42px;
  justify-self: end;
}

.completion-success__body {
  display: flex;
  align-items: center;
  width: min(100% - 40px, 720px);
  min-height: calc(100dvh - 78px);
  margin: 0 auto;
  padding: clamp(44px, 6vh, 72px) 0 38px;
  text-align: center;
  flex-direction: column;
}

.completion-success__heading > p,
.completion-showcase__eyebrow {
  margin: 0 0 13px;
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.completion-success__heading h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.02;
  outline: none;
}

.completion-success__heading h1 em {
  color: var(--gold-dark);
  font-style: italic;
}

.completion-check {
  display: grid;
  width: 94px;
  height: 94px;
  margin: clamp(30px, 5vh, 48px) 0 27px;
  color: var(--gold-dark);
  place-items: center;
}

.completion-check svg {
  width: 94px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.completion-check circle {
  stroke: hsl(38 49% 61%);
}

.completion-check path {
  stroke-dasharray: 52;
  animation: completion-check-draw 650ms var(--ease) 120ms both;
}

@keyframes completion-check-draw {
  from {
    stroke-dashoffset: 52;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.completion-success__message strong {
  font-size: 13px;
  font-weight: 700;
}

.completion-success__message p {
  max-width: 530px;
  margin: 9px auto 0;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.7;
}

.booking-reference {
  display: flex;
  align-items: center;
  width: min(100%, 390px);
  margin: 28px 0 20px;
  padding: 17px 19px;
  border: 1px solid hsl(35 30% 80%);
  text-align: left;
  background: hsl(42 43% 99% / 0.8);
  box-shadow: 0 13px 34px hsl(28 20% 32% / 0.06);
  gap: 13px;
}

.booking-reference__icon {
  display: grid;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--gold-dark);
  background: var(--gold-pale);
  flex: 0 0 auto;
  place-items: center;
}

.booking-reference__icon svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.booking-reference > span:last-child {
  display: grid;
  gap: 3px;
}

.booking-reference small {
  color: var(--ink-soft);
  font-size: 8px;
  letter-spacing: 0.06em;
}

.booking-reference strong {
  font-size: 12px;
  letter-spacing: 0.04em;
}

.completion-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 390px);
  min-height: 58px;
  padding: 0 22px;
  border: 0;
  color: white;
  background: linear-gradient(110deg, hsl(40 70% 42%), hsl(32 58% 52%));
  box-shadow: 0 16px 34px hsl(34 50% 30% / 0.18);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  gap: 12px;
  transition:
    box-shadow 220ms ease,
    transform 220ms var(--ease);
}

.completion-primary:hover,
.completion-primary:focus-visible {
  box-shadow: 0 20px 42px hsl(34 50% 30% / 0.26);
  outline: 2px solid hsl(38 55% 31%);
  outline-offset: 3px;
  transform: translateY(-2px);
}

.completion-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 320px;
}

.builder-secondary--centered {
  justify-content: center;
}

.completion-contact {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid hsl(34 24% 86%);
}

.completion-contact p {
  margin: 0 0 9px;
  color: var(--ink-soft);
  font-size: 8px;
}

.completion-contact a {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  gap: 8px;
}

.completion-contact a:hover,
.completion-contact a:focus-visible {
  color: var(--gold-dark);
  outline: none;
}

.completion-contact svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.completion-showcase {
  display: flex;
  min-height: 100dvh;
  color: white;
  background: hsl(33 18% 7%);
  flex-direction: column;
  isolation: isolate;
}

.completion-showcase__backdrop,
.completion-showcase__veil {
  position: fixed;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.completion-showcase__backdrop {
  filter: saturate(0.72) contrast(1.04);
  object-fit: cover;
  object-position: 50% 42%;
  transform: scale(1.02);
}

.completion-showcase__veil {
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      hsl(25 21% 5% / 0.82) 0%,
      hsl(25 20% 5% / 0.35) 31%,
      hsl(25 20% 4% / 0.77) 78%,
      hsl(25 20% 3% / 0.96) 100%
    ),
    radial-gradient(circle at 50% 35%, transparent 0 18%, hsl(25 24% 5% / 0.48) 68%);
}

.showcase-bar {
  border-bottom: 1px solid hsl(0 0% 100% / 0.12);
  background: hsl(24 16% 6% / 0.24);
  backdrop-filter: blur(8px);
}

.showcase-brand {
  color: hsl(38 54% 87%);
}

.showcase-info-button {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid hsl(40 58% 70% / 0.7);
  color: hsl(38 54% 87%);
  background: transparent;
  cursor: pointer;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  gap: 8px;
}

.showcase-info-button:hover,
.showcase-info-button:focus-visible {
  color: white;
  outline: none;
}

.showcase-info-button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.completion-showcase__content {
  display: flex;
  align-items: center;
  width: min(100% - 40px, 900px);
  min-height: calc(100dvh - 174px);
  margin: auto;
  padding: clamp(64px, 10vh, 110px) 0 58px;
  text-align: center;
  flex: 1;
  flex-direction: column;
  justify-content: center;
}

.completion-showcase__eyebrow {
  color: hsl(39 62% 73%);
}

.completion-showcase__content h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 76px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-shadow: 0 4px 30px hsl(0 0% 0% / 0.45);
}

.completion-showcase__content h2 em {
  color: hsl(39 57% 78%);
  font-style: italic;
}

.completion-showcase__lead {
  max-width: 540px;
  margin: 20px auto 0;
  color: hsl(38 20% 88% / 0.86);
  font-size: 11px;
  line-height: 1.75;
}

.showcase-values {
  display: grid;
  width: min(100%, 660px);
  margin: clamp(35px, 6vh, 58px) auto 40px;
  grid-template-columns: repeat(4, 1fr);
}

.showcase-values > div {
  display: grid;
  padding: 0 14px;
  border-right: 1px solid hsl(0 0% 100% / 0.18);
  justify-items: center;
  gap: 9px;
}

.showcase-values > div:last-child {
  border-right: 0;
}

.showcase-values span {
  display: grid;
  width: 43px;
  height: 43px;
  border: 1px solid hsl(40 44% 76% / 0.65);
  border-radius: 50%;
  color: hsl(39 62% 80%);
  place-items: center;
}

.showcase-values svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.showcase-values strong {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.45;
}

.showcase-gallery {
  display: grid;
  width: min(100%, 760px);
  padding: 6px;
  border: 1px solid hsl(0 0% 100% / 0.19);
  background: hsl(0 0% 0% / 0.25);
  box-shadow: 0 20px 50px hsl(0 0% 0% / 0.3);
  gap: 6px;
  grid-template-columns: repeat(4, 1fr);
  backdrop-filter: blur(5px);
}

.showcase-gallery__item {
  position: relative;
  height: 112px;
  margin: 0;
  padding: 0;
  border: 0;
  color: white;
  background: hsl(0 0% 8%);
  cursor: zoom-in;
  overflow: hidden;
}

.showcase-gallery img {
  width: 100%;
  height: 100%;
  filter: saturate(0.8);
  object-fit: cover;
  transition:
    filter 300ms ease,
    transform 500ms var(--ease);
}

.showcase-gallery__item > span {
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: grid;
  width: 31px;
  height: 31px;
  border: 1px solid hsl(0 0% 100% / 0.54);
  border-radius: 50%;
  background: hsl(24 18% 6% / 0.64);
  opacity: 0;
  place-items: center;
  transform: translateY(5px);
  transition:
    opacity 220ms ease,
    transform 220ms var(--ease);
  backdrop-filter: blur(5px);
}

.showcase-gallery__item > span svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.showcase-gallery__item:hover img,
.showcase-gallery__item:focus-visible img {
  filter: saturate(1);
  transform: scale(1.04);
}

.showcase-gallery__item:hover > span,
.showcase-gallery__item:focus-visible > span {
  opacity: 1;
  transform: translateY(0);
}

.showcase-gallery__item:focus-visible {
  outline: 2px solid hsl(39 62% 73%);
  outline-offset: -3px;
}

.showcase-home-button {
  display: grid;
  align-items: center;
  width: min(100%, 300px);
  min-height: 52px;
  margin: 25px auto 0;
  padding: 0 18px;
  border: 1px solid hsl(39 55% 71% / 0.68);
  color: hsl(39 66% 87%);
  background: hsl(24 18% 6% / 0.42);
  box-shadow: 0 14px 34px hsl(0 0% 0% / 0.2);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  gap: 11px;
  grid-template-columns: 20px 1fr 20px;
  backdrop-filter: blur(8px);
  transition:
    border-color 220ms ease,
    color 220ms ease,
    background 220ms ease,
    transform 220ms var(--ease);
}

.showcase-home-button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.showcase-home-button:hover,
.showcase-home-button:focus-visible {
  border-color: hsl(39 68% 78%);
  color: hsl(40 50% 12%);
  background: hsl(39 68% 78%);
  outline: none;
  transform: translateY(-2px);
}

.showcase-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  padding: 20px clamp(20px, 5vw, 70px);
  border-top: 1px solid hsl(0 0% 100% / 0.12);
  color: hsl(37 16% 75% / 0.8);
  background: hsl(24 18% 4% / 0.6);
  font-size: 8px;
  backdrop-filter: blur(8px);
}

.showcase-footer nav {
  display: flex;
  align-items: center;
  gap: 13px;
}

.showcase-footer i {
  width: 1px;
  height: 11px;
  background: hsl(0 0% 100% / 0.24);
}

.showcase-footer a:hover,
.showcase-footer a:focus-visible {
  color: white;
  outline: none;
}

.showcase-lightbox {
  width: min(calc(100% - 32px), 1050px);
  max-width: none;
  max-height: calc(100dvh - 32px);
  padding: 58px 74px 34px;
  border: 0;
  color: white;
  background: transparent;
  overflow: visible;
}

.showcase-lightbox::backdrop {
  background: hsl(24 18% 3% / 0.9);
  backdrop-filter: blur(12px);
}

.showcase-lightbox figure {
  display: grid;
  width: 100%;
  margin: 0;
  justify-items: center;
  gap: 14px;
}

.showcase-lightbox figure img {
  display: block;
  width: 100%;
  max-height: calc(100dvh - 150px);
  object-fit: contain;
  filter: drop-shadow(0 24px 60px hsl(0 0% 0% / 0.45));
}

.showcase-lightbox figcaption {
  color: hsl(38 38% 84%);
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: -0.01em;
}

.showcase-lightbox__close,
.showcase-lightbox__nav {
  position: absolute;
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid hsl(0 0% 100% / 0.3);
  border-radius: 50%;
  color: white;
  background: hsl(0 0% 100% / 0.08);
  cursor: pointer;
  place-items: center;
  transition:
    border-color 180ms ease,
    background 180ms ease;
  backdrop-filter: blur(8px);
}

.showcase-lightbox__close {
  top: 0;
  right: 12px;
}

.showcase-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
}

.showcase-lightbox__nav--prev {
  left: 8px;
}

.showcase-lightbox__nav--next {
  right: 8px;
}

.showcase-lightbox__close:hover,
.showcase-lightbox__close:focus-visible,
.showcase-lightbox__nav:hover,
.showcase-lightbox__nav:focus-visible {
  border-color: hsl(39 62% 73%);
  background: hsl(39 62% 73% / 0.18);
  outline: none;
}

.showcase-lightbox__close svg,
.showcase-lightbox__nav svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.booking-info {
  width: min(92vw, 570px);
  max-height: min(88dvh, 720px);
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  overflow: visible;
}

.booking-info::backdrop {
  background: hsl(25 21% 4% / 0.68);
  backdrop-filter: blur(7px);
}

.booking-info__header {
  display: grid;
  align-items: center;
  min-height: 60px;
  padding: 0 8px;
  color: white;
  grid-template-columns: 42px 1fr 42px;
}

.booking-info__header > span {
  display: grid;
  width: 36px;
  height: 36px;
  color: hsl(38 42% 85%);
  place-items: center;
}

.booking-info__header svg,
.booking-info__close svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.booking-info__header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-align: center;
}

.booking-info__close {
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid hsl(0 0% 100% / 0.18);
  border-radius: 50%;
  color: white;
  background: hsl(0 0% 100% / 0.08);
  cursor: pointer;
  place-items: center;
}

.booking-info__close:hover,
.booking-info__close:focus-visible {
  background: hsl(0 0% 100% / 0.18);
  outline: 2px solid hsl(38 42% 85%);
  outline-offset: 2px;
}

.booking-info__sheet {
  display: grid;
  max-height: calc(88dvh - 130px);
  padding: clamp(26px, 5vw, 42px);
  border-radius: 18px;
  background: hsl(42 36% 98%);
  box-shadow: 0 26px 70px hsl(0 0% 0% / 0.32);
  overflow-y: auto;
  gap: 27px;
}

.booking-info__item {
  display: grid;
  align-items: start;
  gap: 18px;
  grid-template-columns: 42px 1fr;
}

.booking-info__item > span {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid hsl(35 28% 80%);
  border-radius: 50%;
  color: var(--gold-dark);
  background: white;
  place-items: center;
}

.booking-info__item svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.booking-info__item strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.booking-info__item p {
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-size: 9px;
  line-height: 1.6;
}

.booking-info__confirm {
  display: block;
  min-width: 170px;
  min-height: 48px;
  margin: 15px auto 0;
  padding: 0 25px;
  border: 1px solid hsl(0 0% 100% / 0.28);
  border-radius: 3px;
  color: white;
  background: hsl(0 0% 100% / 0.16);
  backdrop-filter: blur(8px);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.booking-info__confirm:hover,
.booking-info__confirm:focus-visible {
  background: hsl(0 0% 100% / 0.26);
  outline: 2px solid hsl(38 42% 85%);
  outline-offset: 2px;
}

@media (max-width: 700px) {
  .completion-bar,
  .showcase-bar {
    min-height: 66px;
    padding-inline: 16px;
  }

  .completion-brand {
    font-size: 19px;
  }

  .completion-brand svg {
    width: 29px;
  }

  .completion-success__body {
    width: min(100% - 34px, 460px);
    min-height: calc(100dvh - 66px);
    padding: 38px 0 28px;
  }

  .completion-success__heading h1 {
    font-size: clamp(36px, 10.8vw, 48px);
    line-height: 1.05;
  }

  .completion-check {
    width: 78px;
    height: 78px;
    margin: 28px 0 22px;
  }

  .completion-check svg {
    width: 78px;
  }

  .booking-reference {
    margin-top: 23px;
  }

  .showcase-bar {
    grid-template-columns: 1fr auto;
  }

  .showcase-brand {
    display: none;
  }

  .showcase-info-button {
    grid-column: 2;
  }

  .completion-showcase__backdrop {
    object-position: 51% center;
  }

  .completion-showcase__content {
    width: min(100% - 28px, 500px);
    min-height: calc(100dvh - 156px);
    padding: 64px 0 42px;
  }

  .completion-showcase__content h2 {
    font-size: clamp(42px, 12.5vw, 58px);
    line-height: 1;
  }

  .completion-showcase__lead {
    max-width: 340px;
    font-size: 9px;
  }

  .showcase-values {
    margin: 38px auto 32px;
  }

  .showcase-values > div {
    padding: 0 4px;
  }

  .showcase-values span {
    width: 38px;
    height: 38px;
  }

  .showcase-values svg {
    width: 19px;
  }

  .showcase-values strong {
    font-size: 7px;
  }

  .showcase-gallery {
    gap: 4px;
  }

  .showcase-gallery__item {
    height: clamp(84px, 23vw, 112px);
  }

  .showcase-gallery__item > span {
    right: 5px;
    bottom: 5px;
    width: 27px;
    height: 27px;
    opacity: 1;
    transform: none;
  }

  .showcase-home-button {
    width: min(100%, 280px);
    margin-top: 21px;
  }

  .showcase-footer {
    align-items: center;
    min-height: 90px;
    padding: 20px;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }

  .showcase-lightbox {
    width: calc(100% - 16px);
    max-height: calc(100dvh - 16px);
    padding: 58px 46px 28px;
  }

  .showcase-lightbox figure img {
    max-height: calc(100dvh - 140px);
  }

  .showcase-lightbox__close {
    right: 4px;
  }

  .showcase-lightbox__nav {
    width: 38px;
    height: 38px;
  }

  .showcase-lightbox__nav--prev {
    left: 0;
  }

  .showcase-lightbox__nav--next {
    right: 0;
  }

  .booking-info {
    width: calc(100% - 24px);
    max-height: calc(100dvh - 24px);
  }

  .booking-info__header {
    min-height: 56px;
  }

  .booking-info__header h2 {
    font-size: 20px;
  }

  .booking-info__sheet {
    max-height: calc(100dvh - 144px);
    padding: 27px 22px;
    border-radius: 14px;
    gap: 22px;
  }

  .booking-info__item {
    gap: 15px;
    grid-template-columns: 38px 1fr;
  }

  .booking-info__item > span {
    width: 38px;
    height: 38px;
  }

  .booking-info__item strong {
    font-size: 18px;
  }
}

@media (max-width: 370px) {
  .completion-success__body {
    padding-top: 28px;
  }

  .completion-success__heading h1 {
    font-size: 34px;
  }

  .completion-check {
    margin-block: 20px 16px;
  }

  .showcase-values {
    margin-top: 30px;
  }

  .showcase-values strong {
    font-size: 6px;
  }
}

/* Havale / EFT son adımı */
.transfer-layout {
  display: grid;
  align-items: start;
  gap: clamp(20px, 3vw, 38px);
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
}

.transfer-layout .order-review {
  grid-template-columns: 1fr;
}

.transfer-panel {
  overflow: hidden;
  border: 1px solid hsl(35 31% 78%);
  background: var(--surface);
  box-shadow: 0 20px 50px hsl(30 18% 30% / 0.09);
}

.transfer-panel__heading {
  position: relative;
  padding: clamp(26px, 4vw, 38px);
  color: hsl(39 39% 96%);
  background:
    radial-gradient(circle at 88% 15%, hsl(39 58% 62% / 0.28), transparent 28%),
    linear-gradient(135deg, hsl(28 22% 19%), hsl(30 26% 28%));
}

.transfer-panel__heading::after {
  position: absolute;
  right: -46px;
  bottom: -58px;
  width: 155px;
  height: 155px;
  border: 1px solid hsl(42 45% 80% / 0.4);
  border-radius: 50%;
  content: "";
}

.transfer-panel__heading p {
  margin: 0 0 9px;
  color: hsl(43 48% 73%);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.transfer-panel__heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 39px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.transfer-panel__amount {
  position: relative;
  z-index: 1;
  display: grid;
  width: fit-content;
  margin-top: 30px;
  gap: 4px;
}

.transfer-panel__amount small {
  color: hsl(43 30% 76%);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.transfer-panel__amount strong {
  color: hsl(43 64% 78%);
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.transfer-details {
  display: grid;
  margin: 0;
  padding: 12px clamp(24px, 4vw, 38px) 2px;
}

.transfer-details > div {
  display: grid;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid hsl(34 26% 90%);
  gap: 12px;
  grid-template-columns: minmax(86px, 0.35fr) minmax(0, 1fr);
}

.transfer-details dt,
.transfer-details dd {
  margin: 0;
}

.transfer-details dt {
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.transfer-details dd {
  overflow-wrap: anywhere;
  font-size: 11px;
  line-height: 1.5;
}

.transfer-details__copy dd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.transfer-details__copy strong {
  color: var(--gold-dark);
  font-size: 10px;
  letter-spacing: 0.035em;
}

.transfer-copy {
  padding: 7px 8px;
  border: 1px solid hsl(35 31% 78%);
  color: var(--gold-dark);
  background: hsl(40 42% 97%);
  cursor: pointer;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.transfer-copy:hover,
.transfer-copy:focus-visible {
  color: white;
  background: var(--gold-dark);
  outline: none;
}

.transfer-copy-feedback {
  min-height: 18px;
  margin: 0;
  padding: 9px clamp(24px, 4vw, 38px) 0;
  color: hsl(139 27% 27%);
  font-size: 9px;
}

.transfer-panel__note {
  margin: 14px clamp(24px, 4vw, 38px) 0;
  padding: 13px 15px;
  color: hsl(138 17% 40%);
  background: hsl(135 35% 96%);
  font-size: 9px;
  line-height: 1.6;
}

.transfer-preview-notice {
  margin: 22px clamp(24px, 4vw, 38px) 0;
  padding: 16px 18px;
  border: 1px solid hsl(39 48% 72%);
  color: var(--ink);
  background: var(--gold-pale);
  font-size: 12px;
  line-height: 1.6;
}

.transfer-preview-notice strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.transfer-preview-notice p {
  margin: 0;
}

.payment-notification-form {
  margin-top: 26px;
  padding: clamp(24px, 4vw, 38px);
  border-top: 1px solid var(--line);
  background: hsl(40 31% 98%);
}

.consent-fields {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: hsl(40 31% 98%);
}

.consent-fields legend {
  padding: 0 8px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.consent-field {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.6;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--gold-dark);
}

.consent-field a,
.consent-fields__hint a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-field.is-invalid {
  color: hsl(4 62% 42%);
}

.consent-field .form-field__error {
  grid-column: 2;
  margin: -4px 0 0;
}

.consent-field.is-invalid .form-field__error {
  display: block;
}

.consent-fields__hint {
  margin: 0 0 0 30px;
  color: var(--ink-muted);
  font-size: 11px;
  line-height: 1.6;
}

@media (max-width: 430px) {
  .consent-fields {
    padding: 16px;
  }

  .consent-field {
    font-size: 12px;
  }

  .consent-fields__hint {
    margin-left: 0;
  }
}

.payment-notification-form__heading {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 12px;
}

.payment-notification-form__heading > span {
  display: grid;
  width: 27px;
  height: 27px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 700;
  place-items: center;
}

.payment-notification-form__heading div {
  display: grid;
  gap: 3px;
}

.payment-notification-form__heading strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}

.payment-notification-form__heading small,
.js-receipt-name {
  color: var(--ink-soft);
  font-size: 9px;
}

.payment-notification-form__grid {
  display: grid;
  gap: 17px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.contact-choice {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.contact-choice legend {
  padding: 0 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-choice label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.payment-notification-status {
  margin: 18px 0 0;
  padding: 12px 14px;
  border: 1px solid hsl(8 55% 78%);
  border-radius: 10px;
  color: hsl(8 48% 32%);
  background: hsl(8 72% 97%);
  font-size: 0.82rem;
  line-height: 1.55;
}

.payment-notification-status[data-status="pending"] {
  border-color: hsl(39 48% 72%);
  color: var(--ink);
  background: var(--gold-pale);
}

.form-field--file input {
  padding: 13px;
  font-size: 10px;
}

.form-field--file input::file-selector-button {
  margin-right: 12px;
  padding: 7px 9px;
  border: 0;
  color: white;
  background: var(--gold-dark);
  cursor: pointer;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .transfer-layout {
    grid-template-columns: 1fr;
  }

  .transfer-layout .order-review {
    grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
  }
}

@media (max-width: 640px) {
  .transfer-layout .order-review,
  .payment-notification-form__grid {
    grid-template-columns: 1fr;
  }

  .transfer-details > div {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .transfer-details__copy dd {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
