/* ============================================================
 * @AI_GUIDE: Checkout-Flow (Step 3 + 4 + 5) — Layout-Toggle,
 * Step-Header, Section-Cards, Dropdowns, Option-Cards, Toggle-Rows,
 * Free-Shipping-Hint, Price-Breakdown, Adress-Form, Coupon,
 * AGB-Row, Payment-Section, Success-Screen.
 *
 * Iteration 14g (Mo 2026-06-14): Split aus styles.css (war 2933 Zeilen).
 * Geschwister-Files: base.css, editor.css, checkout.css, components.css
 * ============================================================ */

/* ============================================================
 * CHECKOUT (Step 3 + 4 + 5) — Iteration 14 (Mo 2026-06-14)
 * ============================================================ */

/* Body-Class togglet zwischen Editor (Step 1/2) und Checkout (3/4/5).
   Editor-Layout: preview + bottom-bar sichtbar, checkout-area hidden.
   Checkout-Layout: preview + bottom-bar hidden, checkout-area sichtbar. */
.checkout-area { display: none; }
.sticky-cta-wrap { display: none; }

body.step-checkout .preview-area,
body.step-checkout .bottom-bar { display: none; }
body.step-checkout .checkout-area { display: block; }
body.step-checkout .sticky-cta-wrap { display: block; }

/* Step 5 (Success) blendet auch die Top-Bar-Reset + Avatar aus — User soll
   sich auf die Bestätigung konzentrieren, nicht versehentlich was löschen. */
body.step-5-active .tb-reset,
body.step-5-active .alexandra-support { display: none; }

/* ─── Checkout-Area Container ─── */
.checkout-area {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* Padding-Bottom = sticky-cta-Höhe + safe-area, damit Letzter Inhalt nicht
     unter dem CTA verschwindet. */
  padding: 0 16px 120px;
  background: var(--bg);
}

/* ─── Step-Header (Title only, zentriert) ─── */
/* Mo's Decision 2026-06-14: "Schritt X von 5" raus aus UI (sonst denkt
 * Kunde er hat noch ewig vor sich). Title bleibt, zentriert. Tracking-
 * Events nutzen weiter S.step intern. */
.step-header {
  padding: 20px 4px 16px;
}
.step-header--centered {
  text-align: center;
  padding-top: 24px;
}
.step-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.step-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 4px;
  letter-spacing: -0.3px;
}
.step-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}
.step-header--success {
  text-align: center;
  padding-top: 40px;
}
.step-header--success .success-icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  background: var(--green);
  color: #fff;
  font-size: 32px; font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ─── Section-Card (Soft Cards für Step-3-Sektionen) ─── */
.section-card {
  background: var(--surface);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 12px;
}
.section-card .section-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(0,0,0,0.55);
  margin-bottom: 12px;
}
.section-card.placeholder p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

/* ============================================================
 * STEP 3 — Auflage/Veredelung/Extras/Lieferart/Preisübersicht
 * ============================================================ */

.step-body {
  max-width: 600px;
  margin: 0 auto;
}

/* ─── Custom Dropdown (.f24-dropdown) — refactored aus Live-Auto ─── */
.f24-dropdown {
  position: relative;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  overflow: hidden;
  transition: border-color 150ms;
}
.f24-dropdown.is-open {
  border-color: var(--accent-dark);
  box-shadow: 0 4px 16px rgba(26,115,232,0.08);
}
.f24-dropdown-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  padding: 14px 16px;
  text-align: left;
  min-height: 60px;
}
.f24-dropdown-trigger-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.f24-dropdown-trigger-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.f24-dropdown-trigger-sub {
  font-size: 13px;
  color: var(--text-muted);
}
.f24-dropdown-trigger-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
}
.f24-dropdown-chevron {
  width: 14px; height: 10px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 200ms;
}
.f24-dropdown.is-open .f24-dropdown-chevron {
  transform: rotate(180deg);
}
.f24-dropdown-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--surface-2);
  max-height: 360px;
  overflow-y: auto;
}
.f24-dropdown.is-open .f24-dropdown-menu {
  display: block;
}
.f24-dropdown-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  padding: 12px 16px;
  text-align: left;
  min-height: 56px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: background 120ms;
}
.f24-dropdown-item:last-child {
  border-bottom: none;
}
.f24-dropdown-item:hover {
  background: rgba(26,115,232,0.04);
}
.f24-dropdown-item.is-active {
  background: rgba(26,115,232,0.08);
}
.f24-dropdown-item-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.f24-dropdown-item-label {
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.f24-dropdown-item-desc {
  font-size: 13px;
  color: var(--text-muted);
}
.f24-dropdown-item-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.f24-dropdown-item-check {
  width: 20px;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-dark);
  opacity: 0;
  flex-shrink: 0;
  text-align: center;
}
.f24-dropdown-item.is-active .f24-dropdown-item-check {
  opacity: 1;
}
.f24-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  background: var(--orange);
  color: #fff;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-left: 8px;
  vertical-align: middle;
}
.f24-badge--green {
  background: var(--green);
}

/* ─── Option-Cards (Veredelung + Lieferart) ─── */
.option-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.option-card {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  text-align: left;
  min-height: 72px;
  cursor: pointer;
  transition: border-color 150ms, background 150ms;
}
.option-card.is-active {
  border-color: var(--accent-dark);
  background: rgba(26,115,232,0.04);
}
.option-card-visual {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  background: var(--surface-2);
  border-radius: 8px;
  flex-shrink: 0;
}
.option-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.option-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.option-card-desc {
  font-size: 13px;
  color: var(--text-muted);
}
.option-card-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  flex-shrink: 0;
}
.option-card-check {
  width: 22px;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-dark);
  opacity: 0;
  flex-shrink: 0;
  text-align: center;
}
.option-card.is-active .option-card-check {
  opacity: 1;
}
/* Delivery-Card: kein Visual, nur Content + Price */
.option-card--delivery .option-card-content { padding-left: 0; }

/* Pricing-Reform V1 (2026-06-23): Veredelung+Versand-Constraint.
   Plus + Overnight werden ausgegraut wenn Customer eine Veredelung gewählt
   hat (Druckprozess + schnellerer Versand technisch nicht kombinierbar).
   Click triggert Toast (siehe step3-render.js renderDelivery), Selection
   bleibt unverändert. */
.option-card.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  background: var(--surface);
}
.option-card.is-disabled .option-card-desc {
  color: #c08020;
  font-weight: 500;
}
.option-card.is-disabled:hover {
  border-color: var(--border);
  background: var(--surface);
}

/* ─── Toggle-Rows (Extras) ─── */
.toggle-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toggle-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  min-height: 64px;
  cursor: pointer;
  transition: border-color 150ms;
  position: relative;
}
.toggle-row.is-active {
  border-color: var(--accent-dark);
  background: rgba(26,115,232,0.04);
}
.toggle-row-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.toggle-row-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.toggle-row-desc {
  font-size: 13px;
  color: var(--text-muted);
}
.toggle-row-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  flex-shrink: 0;
}
.toggle-row input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
/* iOS-Style Toggle-Switch */
.toggle-switch {
  width: 44px; height: 26px;
  background: var(--border-strong);
  border-radius: 100px;
  position: relative;
  flex-shrink: 0;
  transition: background 200ms;
}
.toggle-switch::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 22px; height: 22px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  transition: transform 200ms;
}
.toggle-row.is-active .toggle-switch {
  background: var(--accent-dark);
}
.toggle-row.is-active .toggle-switch::after {
  transform: translateX(18px);
}

/* ─── Free-Shipping-Progress-Hint ─── */
.free-shipping-hint {
  background: rgba(29,158,117,0.06);
  border: 1px solid rgba(29,158,117,0.2);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 12px;
}
.free-shipping-hint.is-active {
  background: rgba(29,158,117,0.12);
  border-color: var(--green);
}
.free-shipping-bar {
  height: 6px;
  background: rgba(29,158,117,0.15);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 6px;
}
.free-shipping-bar-fill {
  height: 100%;
  background: var(--green);
  border-radius: 100px;
  transition: width 300ms ease-out;
}
.free-shipping-text {
  font-size: 13px;
  color: var(--text);
}
.free-shipping-text strong {
  font-weight: 700;
  color: var(--green);
}

/* ─── Price-Breakdown ─── */
.price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price-line {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text);
}
.price-line--discount {
  color: var(--green);
}
.price-line--total {
  border-top: 1px solid var(--border);
  margin-top: 6px;
  padding-top: 12px;
  font-size: 17px;
  font-weight: 700;
}
.price-line--total span:last-child {
  font-size: 20px;
}

/* Skeleton-Loading (während validate-price läuft) */
.price-summary-loading {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.skeleton-line {
  height: 14px;
  background: linear-gradient(90deg, rgba(0,0,0,0.04) 25%, rgba(0,0,0,0.08) 50%, rgba(0,0,0,0.04) 75%);
  background-size: 200% 100%;
  border-radius: 4px;
  animation: skeleton-shimmer 1.5s infinite;
}
.skeleton-line--strong {
  height: 18px;
  margin-top: 8px;
}

.price-summary-error p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 8px 0;
}

/* ============================================================
 * STEP 4 — Lieferadresse + Coupon + AGB + Payment
 * ============================================================ */

/* ─── Order-Summary Collapsible (oben) ─── */
.summary-collapse {
  background: var(--surface);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 0 20px;
  margin-bottom: 12px;
  overflow: hidden;
}
.summary-collapse > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  user-select: none;
}
.summary-collapse > summary::-webkit-details-marker { display: none; }
.summary-collapse-label {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.summary-collapse-total {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.summary-chevron {
  width: 14px; height: 10px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 200ms;
}
details[open] .summary-chevron { transform: rotate(180deg); }
.summary-collapse-body {
  padding-bottom: 16px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.summary-loading-hint {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* ─── Adress-Form ─── */
.form-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.field .optional {
  color: var(--text-muted);
  font-weight: 400;
}
.field input,
.field select {
  width: 100%;
  padding: 13px 14px;
  font-size: 16px;          /* 16px verhindert iOS Auto-Zoom on focus */
  font-family: inherit;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  min-height: 48px;
  transition: border-color 150ms, background 150ms;
  -webkit-appearance: none;
  appearance: none;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent-dark);
  background: var(--surface);
}
.field input.is-error,
.field select.is-error {
  border-color: #c0392b;
  background: #fdecea;
}
.field-row {
  display: flex;
  gap: 12px;
}
.field--zip { flex: 0 0 35%; }
.field--city { flex: 1; }
/* Select-Chevron (eigenes weil appearance:none gesetzt) */
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23666' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M2 2 L6 6 L10 2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 38px;
}

/* ─── Coupon Section ─── */
.coupon-section {
  padding: 0 20px;
}
.coupon-section > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  user-select: none;
}
.coupon-section > summary::-webkit-details-marker { display: none; }
.coupon-summary-label {
  flex: 1;
  font-size: 14px;
  color: var(--text);
}
.coupon-applied-badge {
  display: inline-block;
  width: 20px; height: 20px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  margin-right: 4px;
}
.coupon-body {
  padding-bottom: 16px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.coupon-input-row {
  display: flex;
  gap: 8px;
}
.coupon-input {
  flex: 1;
  padding: 12px 14px;
  font-size: 16px;
  font-family: inherit;
  text-transform: uppercase;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  min-height: 44px;
  letter-spacing: 0.5px;
}
.coupon-input:focus {
  outline: none;
  border-color: var(--accent-dark);
}
.coupon-apply-btn {
  background: var(--accent-dark);
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  min-height: 44px;
  flex-shrink: 0;
}
.coupon-apply-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.coupon-error {
  font-size: 13px;
  color: #c0392b;
  margin: 8px 0 0;
}
.coupon-applied-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--green);
  font-weight: 600;
}

/* ─── Payment-Section (Trust + Stripe-Mount) ─── */
.payment-section {
  background: var(--surface);
  border: 1.5px solid rgba(29,158,117,0.15);
}
.trust-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 8px;
}
.trust-icon { font-size: 14px; }
.payment-methods-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.pay-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
  letter-spacing: 0.3px;
}
.stripe-mount-placeholder {
  min-height: 140px;
  padding: 20px;
  background: var(--surface-2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.stripe-mount-hint {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 320px;
}

/* ─── AGB-Row (Iteration 14h: jetzt button, kein input mehr) ─── */
.agb-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  min-height: 60px;
  cursor: pointer;
  margin-bottom: 12px;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: border-color 150ms, background 150ms;
}
.agb-row:focus { outline: none; }
.agb-row:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 2px;
}
.agb-row.is-active {
  border-color: var(--accent-dark);
  background: rgba(26,115,232,0.04);
}
.agb-check-box {
  width: 22px; height: 22px;
  background: var(--surface);
  border: 1.5px solid var(--border-strong);
  border-radius: 6px;
  flex-shrink: 0;
  position: relative;
  transition: background 150ms, border-color 150ms;
  margin-top: 2px;
}
.agb-row.is-active .agb-check-box {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}
.agb-row.is-active .agb-check-box::after {
  content: '';
  position: absolute;
  top: 4px; left: 7px;
  width: 5px; height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.agb-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.45;
  flex: 1;
}
.agb-text a {
  color: var(--accent-dark);
  text-decoration: underline;
}
.agb-row.f24-shake { animation: f24-shake 0.4s; }

/* ============================================================
 * STEP 5 — Success-Screen
 * ============================================================ */

.success-order-number {
  text-align: center;
  background: rgba(29,158,117,0.06);
  border: 1px solid rgba(29,158,117,0.25);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}
.success-order-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.success-order-id {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--green);
  font-family: 'SF Mono', Menlo, Consolas, monospace;
}
.success-info p {
  margin: 8px 0;
  font-size: 14px;
  color: var(--text);
}
.success-info p:first-child { margin-top: 0; }
.success-info p:last-child  { margin-bottom: 0; }
.success-spam-hint {
  color: var(--orange) !important;
  font-weight: 700;
}
.success-summary {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 10px 16px;
  font-size: 14px;
  margin: 0;
}
.success-summary dt {
  color: var(--text-muted);
  font-weight: 500;
}
.success-summary dd {
  margin: 0;
  color: var(--text);
}
.success-restart-btn {
  display: block;
  width: 100%;
  background: transparent;
  border: 1.5px solid var(--accent-dark);
  color: var(--accent-dark);
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  margin-top: 16px;
  cursor: pointer;
  min-height: 48px;
}

/* ─── Inclusive Service (Datencheck-Trust-Card) ─── */
.section-card.inclusive-service {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(29,158,117,0.06);
  border-color: rgba(29,158,117,0.25);
}
.inclusive-icon {
  width: 28px; height: 28px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.inclusive-content {
  flex: 1;
}
.inclusive-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.inclusive-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============================================================
 * Resume-Preview (Phase 1 Recovery — Mo 2026-06-20)
 * In Step 4 angezeigt wenn S.resumeMode=true.
 * Pfad B' (Lock-the-Editor): das gespeicherte svg_xml inline,
 * Vorder/Rück-Toggle, "Layout neu starten" Link.
 * ============================================================ */

.resume-preview {
  background: #fafaf8;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 20px;
}

.resume-preview-card {
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  border: 1px solid #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 220px;
}

.resume-preview-card svg {
  max-width: 100% !important;
  width: auto;
  height: auto;
  max-height: 380px;
  display: block;
}

/* Mobile (Phase 1 Recovery): SVG-viewBox ist 1090×1520. Auf schmalen Screens
   muss width:100% + max-height:vh greifen, sonst Overflow/Hidden. */
@media (max-width: 800px) {
  .resume-preview {
    padding: 12px;
  }
  .resume-preview-card {
    min-height: 180px;
    padding: 8px;
  }
  .resume-preview-card svg {
    width: 100% !important;
    max-width: 100% !important;
    max-height: 55vh;
  }
}

.resume-preview-toggle {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}

.rp-side-btn {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  transition: all 0.15s;
}
.rp-side-btn:hover {
  border-color: #aaa;
  color: #1a1a1a;
}
.rp-side-btn.is-active {
  background: #1D9E75;
  border-color: #1D9E75;
  color: #fff;
}

.resume-preview-lock {
  margin: 16px 0 0;
  padding: 12px 14px;
  background: #fff7e6;
  border-left: 3px solid #E0A030;
  border-radius: 6px;
  font-size: 13px;
  color: #5a4510;
  line-height: 1.5;
}

.resume-preview-lock strong {
  color: #1a1a1a;
}

.resume-restart-link {
  display: inline-block;
  margin-left: 6px;
  color: #1D9E75;
  text-decoration: underline;
  font-weight: 500;
}
.resume-restart-link:hover {
  color: #14735a;
}
