/* =========================================================
   /SATIN-AL — Checkout Wizard
   ---------------------------------------------------------
   4 adımlı ödeme akışı + result (success/error) sayfaları
   ========================================================= */

body.page-detail:has(.wizard) {
  background: linear-gradient(180deg, var(--surface-1, #fbfbfc) 0%, var(--surface-0) 100%);
}

/* Hero banner & nav wizard'da gizli — minimum chrome */
body.page-detail .wizard ~ * { /* boş — placeholder */ }
.wizard,
.wizard ~ section,
body:has(.wizard) .nav { }

/* Nav + hero banner gizli (wizard kendi header'ını gösterir) */
body:has(.wizard) .nav { display: none; }
body:has(.wizard) .reading-progress { display: none; }

/* Container */
.wizard {
  min-height: 100vh;
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.container.container--narrow {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
}

/* ---------- Header — adım göstergesi ---------- */
.wizard__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line-soft, rgba(15,15,22,0.08));
}
.wizard__brand img {
  height: 28px;
  display: block;
}
.wizard__steps {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem 1rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.wizard__step {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--ink-d-50);
  font-weight: 500;
}
.wizard__step + .wizard__step::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--line-soft, rgba(15,15,22,0.16));
  display: inline-block;
  margin-right: 0.5rem;
}
.wizard__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--surface-1, #fbfbfc);
  border: 1px solid var(--line, rgba(15,15,22,0.14));
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-d-60);
}
.wizard__step-num svg { width: 12px; height: 12px; }
.wizard__step.is-active {
  color: var(--ink-d-100);
  font-weight: 600;
}
.wizard__step.is-active .wizard__step-num {
  background: var(--brand-magenta);
  border-color: var(--brand-magenta);
  color: #fff;
  box-shadow: 0 4px 12px rgba(230,22,115,0.28);
}
.wizard__step.is-done .wizard__step-num {
  background: var(--brand-magenta-deep, #c4145f);
  border-color: var(--brand-magenta-deep, #c4145f);
  color: #fff;
}
.wizard__step.is-done {
  color: var(--ink-d-80);
}

/* ---------- Banner (error / info) ---------- */
.wizard__error-banner,
.wizard__info-banner {
  padding: 0.85rem 1.15rem;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.wizard__error-banner {
  background: rgba(230,22,115,0.06);
  border-left: 3px solid var(--brand-magenta);
  color: var(--brand-magenta-deep, #c4145f);
}
.wizard__info-banner {
  background: rgba(52,60,144,0.06);
  border-left: 3px solid var(--brand-indigo, #343c90);
  color: var(--ink-d-90);
}

/* ---------- Panel (her step'in içeriği) ---------- */
.wizard__panel {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: #fff;
  border: 1px solid var(--line-soft, rgba(15,15,22,0.08));
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(15,15,22,0.04), 0 12px 40px rgba(15,15,22,0.04);
}
.wizard__title {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink-d-100);
  margin: 0 0 0.6rem;
  line-height: 1.2;
}
.wizard__sub {
  color: var(--ink-d-70);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 clamp(1.75rem, 3vw, 2.25rem);
}
.wizard__sub strong { color: var(--ink-d-100); font-weight: 600; }

.wizard__form { display: flex; flex-direction: column; gap: 1.5rem; }
.wizard__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.wizard__back {
  font-size: 0.9rem;
  color: var(--ink-d-70);
  font-weight: 500;
  text-decoration: none;
  padding: 0.65rem 1rem;
  transition: color 180ms var(--ease-out);
}
.wizard__back:hover { color: var(--brand-magenta-deep, #c4145f); }

.wizard__next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  border: none;
  border-radius: var(--r-pill, 999px);
  background: linear-gradient(135deg, var(--brand-magenta), #c4145f);
  color: #fff;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(230,22,115,0.25);
  transition: transform 180ms var(--ease-out), box-shadow 220ms var(--ease-out), filter 180ms var(--ease-out);
}
.wizard__next:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(230,22,115,0.32);
  filter: brightness(1.06);
}
.wizard__next--pay {
  padding: 1.05rem 1.85rem;
  font-size: 1rem;
  white-space: nowrap;
}

/* Mobile: actions stack, pay button full-width pill */
@media (max-width: 600px) {
  .wizard__actions {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 0.5rem;
  }
  .wizard__actions .wizard__next,
  .wizard__actions .wizard__back {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .wizard__next--pay {
    border-radius: 14px;
    padding: 1.05rem 1.25rem;
    font-size: 0.95rem;
  }
  .wizard__back {
    padding: 0.75rem 1rem;
  }
}

/* ---------- STEP 1: Plan kartları ---------- */
.wizard-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.wizard-plan {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  background: var(--surface-1, #fbfbfc);
  border: 2px solid var(--line-soft, rgba(15,15,22,0.08));
  border-radius: 14px;
  cursor: pointer;
  transition: all 200ms var(--ease-out);
}
.wizard-plan:hover { border-color: rgba(230,22,115,0.35); }
.wizard-plan input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.wizard-plan:has(input:checked) {
  border-color: var(--brand-magenta);
  background: linear-gradient(135deg, rgba(230,22,115,0.04), rgba(52,60,144,0.02));
  box-shadow: 0 6px 20px rgba(230,22,115,0.10);
}
.wizard-plan__body { flex: 1; min-width: 0; }
.wizard-plan__name {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink-d-100);
  margin-bottom: 0.2rem;
}
.wizard-plan__tag {
  font-size: 0.82rem;
  color: var(--ink-d-65, rgba(15,15,22,0.65));
  line-height: 1.45;
  margin-bottom: 0.85rem;
}
.wizard-plan__tag em { font-style: normal; color: var(--brand-magenta-deep, #c4145f); }
.wizard-plan__price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.wizard-plan__price-old {
  font-size: 0.82rem;
  color: var(--ink-d-50);
  text-decoration: line-through;
}
.wizard-plan__price {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-magenta-deep, #c4145f);
  line-height: 1;
}
.wizard-plan__period {
  font-size: 0.78rem;
  color: var(--ink-d-60);
  font-weight: 500;
}
.wizard-plan__badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-magenta-deep, #c4145f);
  background: rgba(230,22,115,0.10);
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  margin-bottom: 0.6rem;
}
.wizard-plan__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid var(--line, rgba(15,15,22,0.14));
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: all 180ms var(--ease-out);
}
.wizard-plan__check svg { width: 12px; height: 12px; }
.wizard-plan:has(input:checked) .wizard-plan__check {
  background: var(--brand-magenta);
  border-color: var(--brand-magenta);
  color: #fff;
}

/* AI Add-on toggle */
.wizard-addon {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.1rem 1.25rem;
  background: var(--surface-1, #fbfbfc);
  border: 1px solid var(--line-soft, rgba(15,15,22,0.08));
  border-radius: 12px;
  cursor: pointer;
  transition: all 200ms var(--ease-out);
}
.wizard-addon input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 0.2rem;
  accent-color: var(--brand-magenta);
  cursor: pointer;
}
.wizard-addon:has(input:checked),
.wizard-addon.is-checked {
  border-color: rgba(230,22,115,0.35);
  background: linear-gradient(135deg, rgba(230,22,115,0.04), rgba(52,60,144,0.02));
}
.wizard-addon__body { flex: 1; min-width: 0; }
.wizard-addon__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}
.wizard-addon__badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-magenta-deep, #c4145f);
  background: rgba(230,22,115,0.10);
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
}
.wizard-addon__name {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink-d-100);
}
.wizard-addon__price {
  margin-left: auto;
  font-weight: 700;
  color: var(--brand-magenta-deep, #c4145f);
  font-size: 0.95rem;
  font-feature-settings: "tnum";
}
.wizard-addon__price s { color: var(--ink-d-50); margin-right: 0.25rem; font-weight: 400; font-size: 0.85rem; }
.wizard-addon__tag {
  font-size: 0.85rem;
  color: var(--ink-d-70);
  line-height: 1.5;
  margin: 0;
}

/* ---------- STEP 2: Form alanları ---------- */
.wizard-fields {
  border: 1px solid var(--line-soft, rgba(15,15,22,0.08));
  border-radius: 12px;
  padding: 1.25rem 1.25rem 1.5rem;
  margin: 0;
}
.wizard-fields + .wizard-fields { margin-top: 1.25rem; }
.wizard-fields__legend {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-d-60);
  padding: 0 0.5rem;
  margin-left: -0.5rem;
}
.wizard-fields__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  margin-top: 0.75rem;
}
@media (max-width: 600px) {
  .wizard-fields__grid { grid-template-columns: 1fr; }
}
.wizard-field { display: flex; flex-direction: column; gap: 0.4rem; }
.wizard-field--full { grid-column: 1 / -1; }
.wizard-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-d-90);
}
.wizard-field label .req { color: var(--brand-magenta); margin-left: 0.15rem; }
.wizard-field label .opt {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--ink-d-55);
  margin-left: 0.3rem;
}
.wizard-field input,
.wizard-field textarea {
  width: 100%;
  padding: 0.75rem 0.95rem;
  background: #fff;
  border: 1px solid var(--line, rgba(15,15,22,0.14));
  border-radius: 10px;
  color: var(--ink-d-100);
  font-family: inherit;
  font-size: 0.95rem;
  line-height: 1.45;
  transition: border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}
.wizard-field input:hover,
.wizard-field textarea:hover { border-color: rgba(15,15,22,0.28); }
.wizard-field input:focus,
.wizard-field textarea:focus {
  outline: none;
  border-color: var(--brand-magenta);
  box-shadow: 0 0 0 3px rgba(230,22,115,0.12);
}
.wizard-field textarea { resize: vertical; min-height: 80px; }
.wizard-field.has-error input,
.wizard-field.has-error textarea {
  border-color: var(--brand-magenta);
  background: rgba(230,22,115,0.02);
}
.wizard-field__error,
.wizard__field-error {
  font-size: 0.78rem;
  color: var(--brand-magenta-deep, #c4145f);
  font-weight: 500;
  margin-top: 0.25rem;
}

/* Consent checkbox */
.wizard-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.75rem 0.9rem;
  background: var(--surface-1, #fbfbfc);
  border: 1px solid var(--line-soft, rgba(15,15,22,0.08));
  border-radius: 10px;
  cursor: pointer;
  margin-top: 0.6rem;
}
.wizard-consent:first-of-type { margin-top: 0; }
.wizard-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 0.1rem;
  accent-color: var(--brand-magenta);
  cursor: pointer;
}
.wizard-consent span {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--ink-d-80);
}
.wizard-consent a {
  color: var(--brand-magenta-deep, #c4145f);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.wizard-consent.has-error {
  border-color: var(--brand-magenta);
  background: rgba(230,22,115,0.04);
}

/* ---------- STEP 3: Özet ---------- */
.wizard-summary {
  padding: 1.5rem;
  background: var(--surface-1, #fbfbfc);
  border: 1px solid var(--line-soft, rgba(15,15,22,0.08));
  border-radius: 12px;
  margin-bottom: 1.25rem;
}
.wizard-summary__row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0.5rem 1rem;
  padding: 0.65rem 0;
  align-items: baseline;
}
@media (max-width: 480px) {
  .wizard-summary__row { grid-template-columns: 1fr; gap: 0.2rem; }
}
.wizard-summary__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-d-55);
}
.wizard-summary__value {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.92rem;
  color: var(--ink-d-80);
  line-height: 1.5;
  position: relative;
}
.wizard-summary__value strong { color: var(--ink-d-100); font-weight: 600; }
.wizard-summary__amount {
  font-feature-settings: "tnum";
  color: var(--brand-magenta-deep, #c4145f);
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: 0.15rem;
}
.wizard-summary__divider {
  height: 1px;
  background: var(--line-soft, rgba(15,15,22,0.08));
  margin: 0.5rem 0;
}
/* KDV breakdown — total'dan önce, küçük + nötr ton */
.wizard-summary__breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.5rem 0;
}
.wizard-summary__breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.82rem;
  color: var(--ink-d-65, rgba(15,15,22,0.65));
  font-feature-settings: "tnum";
}
.wizard-summary__breakdown-row span:last-child {
  color: var(--ink-d-90);
  font-weight: 500;
}

.wizard-summary__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 0.85rem;
  margin-top: 0.5rem;
  border-top: 2px solid var(--brand-magenta);
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink-d-100);
}
.wizard-summary__total-note {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--ink-d-55);
  margin-left: 0.3rem;
}
.wizard-summary__total-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brand-magenta-deep, #c4145f);
  font-feature-settings: "tnum";
}

.wizard-payment-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  background: linear-gradient(135deg, rgba(52,60,144,0.04), rgba(230,22,115,0.02));
  border-left: 3px solid var(--brand-indigo, #343c90);
  border-radius: 8px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ink-d-80);
  margin-bottom: 1.5rem;
}
.wizard-payment-note svg {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--brand-indigo, #343c90);
  margin-top: 0.15rem;
}
.wizard-payment-note strong { color: var(--ink-d-100); }
.wizard-payment-note em { color: var(--brand-magenta-deep, #c4145f); font-style: normal; font-weight: 500; }

/* ---------- Footer ---------- */
.wizard__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: clamp(2rem, 3vw, 2.5rem);
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-soft, rgba(15,15,22,0.08));
  font-size: 0.78rem;
  color: var(--ink-d-60);
}
.wizard__foot-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.wizard__foot-trust svg { width: 14px; height: 14px; color: #30c353; }
.wizard__foot-help a {
  color: var(--brand-magenta-deep, #c4145f);
  text-decoration: none;
  font-weight: 500;
}
.wizard__foot-help a:hover { text-decoration: underline; }

/* =========================================================
   RESULT — Onay / Hata sayfaları
   ========================================================= */
.wizard--result { padding-block: clamp(3rem, 7vw, 6rem); }
.wizard-result {
  text-align: center;
  padding: clamp(2rem, 4vw, 3rem);
  background: #fff;
  border: 1px solid var(--line-soft, rgba(15,15,22,0.08));
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(15,15,22,0.04), 0 12px 40px rgba(15,15,22,0.04);
}
.wizard-result__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(48,195,83,0.12), rgba(48,195,83,0.04));
  color: #30c353;
  margin-bottom: 1.5rem;
}
.wizard-result__icon svg { width: 48px; height: 48px; }
.wizard-result__icon--error {
  background: linear-gradient(135deg, rgba(230,22,115,0.12), rgba(230,22,115,0.04));
  color: var(--brand-magenta);
}
.wizard-result__title {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink-d-100);
  margin: 0 0 0.85rem;
  line-height: 1.2;
}
.wizard-result__lede {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-d-75, rgba(15,15,22,0.75));
  margin: 0 auto 2rem;
  max-width: 540px;
}
.wizard-result__lede strong { color: var(--ink-d-100); font-weight: 600; }
.wizard-result__next,
.wizard-result__suggestions {
  text-align: left;
  max-width: 460px;
  margin: 0 auto 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface-1, #fbfbfc);
  border-radius: 10px;
}
.wizard-result__next h2,
.wizard-result__suggestions h2 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-d-55);
  margin: 0 0 0.85rem;
}
.wizard-result__next ol,
.wizard-result__suggestions ul {
  margin: 0;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.wizard-result__next li,
.wizard-result__suggestions li {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-d-80);
}
.wizard-result__next strong,
.wizard-result__suggestions strong { color: var(--ink-d-100); }
.wizard-result__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}


/* =========================================================
   Kupon Kutusu (Step 3)
   ========================================================= */
.wizard-coupon {
  margin: 0 0 1.5rem;
}

/* Toggle buton — kupon alanını açar */
.wizard-coupon__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  background: transparent;
  border: 1px dashed var(--line, rgba(15,15,22,0.18));
  color: var(--ink-d-70);
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 180ms var(--ease-out);
}
.wizard-coupon__toggle:hover {
  border-color: var(--brand-magenta);
  color: var(--brand-magenta-deep, #c4145f);
  background: rgba(230,22,115,0.02);
}

/* Input + Uygula */
.wizard-coupon__form { margin-top: 0.75rem; }
.wizard-coupon__form[hidden] { display: none; }
.wizard-coupon__row {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}
.wizard-coupon__input {
  flex: 1;
  padding: 0.7rem 0.9rem;
  background: #fff;
  border: 1px solid var(--line, rgba(15,15,22,0.14));
  border-radius: 10px;
  color: var(--ink-d-100);
  font-family: ui-monospace, 'SF Mono', monospace;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  transition: border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}
.wizard-coupon__input:focus {
  outline: none;
  border-color: var(--brand-magenta);
  box-shadow: 0 0 0 3px rgba(230,22,115,0.12);
}
.wizard-coupon__input.has-error {
  border-color: var(--brand-magenta);
  background: rgba(230,22,115,0.02);
}
.wizard-coupon__apply {
  padding: 0 1.25rem;
  background: var(--ink-d-100);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 180ms var(--ease-out);
}
.wizard-coupon__apply:hover {
  background: var(--brand-magenta-deep, #c4145f);
  transform: translateY(-1px);
}
.wizard-coupon__error {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  color: var(--brand-magenta-deep, #c4145f);
  font-weight: 500;
}

/* Uygulanmış kupon — yeşil block */
.wizard-coupon__applied {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, rgba(48,195,83,0.08), rgba(48,195,83,0.02));
  border: 1px solid rgba(48,195,83,0.22);
  border-left: 3px solid #30c353;
  border-radius: 10px;
}
.wizard-coupon__applied-info {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 1;
  min-width: 0;
}
.wizard-coupon__applied-info svg {
  flex-shrink: 0;
  color: #30c353;
}
.wizard-coupon__applied-info strong {
  display: block;
  font-size: 0.92rem;
  color: var(--ink-d-100);
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.wizard-coupon__applied-info small {
  font-size: 0.78rem;
  color: var(--ink-d-60);
  display: block;
  line-height: 1.4;
}
.wizard-coupon__remove-form { display: inline; }
.wizard-coupon__remove {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(15,15,22,0.10);
  border-radius: 50%;
  color: var(--ink-d-60);
  cursor: pointer;
  flex-shrink: 0;
  transition: all 150ms var(--ease-out);
}
.wizard-coupon__remove:hover {
  border-color: var(--brand-magenta);
  color: var(--brand-magenta);
  background: rgba(230,22,115,0.04);
}

/* Özet tablosunda indirim satırı */
.wizard-summary__breakdown-row--discount {
  color: #30c353 !important;
  font-weight: 600;
}
.wizard-summary__breakdown-row--discount span:last-child {
  color: #1f7a3a !important;
  font-weight: 700 !important;
}
.wizard-coupon-code {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.08rem 0.4rem;
  background: rgba(48,195,83,0.14);
  color: #1f7a3a;
  font-family: ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.03em;
}
