.abaya-wizard-plugin {
  --aw-ink: #2e2427;
  --aw-muted: #8c7f81;
  --aw-faint: #c8bdb9;
  --aw-line: #ded2cd;
  --aw-soft: #f7f3f1;
  --aw-panel: #fbf8f6;
  --aw-wine: #6b1432;
  --aw-wine-soft: #c0a1ad;
  --aw-progress: 0%;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  margin: 0;
  background: #fff;
  color: var(--aw-ink);
  font-family: "Cairo", Tahoma, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}



.abaya-wizard-plugin,
.abaya-wizard-plugin * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.abaya-wizard-plugin button,
.abaya-wizard-plugin input,
.abaya-wizard-plugin select,
.abaya-wizard-plugin textarea {
  font: inherit;
}

.abaya-wizard-plugin button {
  -webkit-tap-highlight-color: transparent;
}

.wizard-shell {
  width: min(1210px, 100%);
  min-height: 760px;
  margin: 0 auto;
  padding: 56px clamp(18px, 3.2vw, 44px) 52px;
  overflow: hidden;
}

.progress {
  position: relative;
  width: min(850px, 100%);
  height: 82px;
  margin: 0 auto 76px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  direction: inherit;
}

.progress-line {
  position: absolute;
  top: 21px;
  right: 52px;
  left: 52px;
  height: 1px;
  background:
    linear-gradient(
      to left,
      var(--aw-wine) 0 var(--aw-progress),
      #d9c8c1 var(--aw-progress) 100%
    );
}

.progress-step {
  position: relative;
  z-index: 1;
  border: 0;
  background: transparent;
  color: #6d6466;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0;
  cursor: pointer;
}

.progress-step span:last-child {
  font-size: 16px;
  line-height: 1.2;
  white-space: nowrap;
}

.dot {
  width: 40px;
  height: 40px;
  border: 1px solid #a3867d;
  border-radius: 50%;
  background: #fff;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.progress-step.is-active .dot {
  border-color: var(--aw-wine);
}

.progress-step.is-active .dot::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aw-wine);
}

.progress-step.is-done .dot {
  border-color: var(--aw-wine);
  background: var(--aw-wine);
}

.progress-step.is-done span:last-child,
.progress-step.is-active span:last-child {
  color: #241a1d;
  font-weight: 800;
}

.wizard-grid {
  display: grid;
  grid-template-columns: minmax(420px, 560px) minmax(380px, 500px);
  gap: clamp(46px, 6.4vw, 92px);
  align-items: start;
  direction: ltr;
  justify-content: center;
}

.preview-pane {
  direction: rtl;
  position: relative;
}

.preview-pane img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #f2ebe7;
  transition: filter 180ms ease, opacity 180ms ease;
}

.preview-pane img.is-grayscale {
  filter: grayscale(1);
}

.preview-pane.is-loading-preview img {
  opacity: 0.5;
}

.preview-pane.is-loading-preview::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  margin: -16px 0 0 -16px;
  border-radius: 50%;
  border: 3px solid rgba(107, 20, 50, 0.2);
  border-top-color: var(--aw-wine);
  animation: aw-spin 0.7s linear infinite;
}

@keyframes aw-spin {
  to {
    transform: rotate(360deg);
  }
}

.form-pane {
  direction: rtl;
  min-height: 560px;
  padding-top: 4px;
  display: flex;
  flex-direction: column;
}

.pane-title h1 {
  margin: 0 0 35px;
  color: #2d2225;
  font-size: clamp(24px, 2.1vw, 30px);
  line-height: 1.24;
  font-weight: 800;
  text-align: start;
}

.wizard-page {
  display: none;
}

.wizard-page.is-current {
  display: block;
}

.is-hidden {
  display: none !important;
}

.wizard-page h2 {
  margin: 0 0 23px;
  color: #2e2427;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
  text-align: start;
}

.model-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
  margin-top: 8px;
  direction: rtl;
}

.image-card,
.design-card,
.swatch-option {
  cursor: pointer;
  user-select: none;
}

.image-card {
  display: grid;
  gap: 10px;
  text-align: center;
  color: #7e7274;
  font-size: 15px;
  font-weight: 600;
}

.image-card input,
.design-card input,
.swatch-option input,
.sizes input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.image-card img {
  width: 100%;
  aspect-ratio: 1 / 1.14;
  border: 1px solid transparent;
  border-radius: 7px;
  object-fit: cover;
  background: var(--aw-soft);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.image-card:hover img,
.image-card.is-selected img {
  border-color: var(--aw-wine);
}

.image-card:hover img {
  box-shadow: 0 8px 22px rgba(107, 20, 50, 0.1);
}

.image-card.is-selected span,
.design-card.is-selected span {
  color: #2f2427;
  font-weight: 800;
}

.swatch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(64px, 1fr));
  gap: 26px 42px;
  margin-top: 4px;
  direction: rtl;
}

.swatch-option {
  min-width: 62px;
  display: grid;
  justify-items: center;
  gap: 9px;
  color: #2e2427;
  font-size: 15px;
  font-weight: 600;
}

.swatch {
  width: 49px;
  height: 49px;
  border-radius: 50%;
  display: block;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.plus {
  width: 49px;
  height: 49px;
  border: 1px solid #9b5268;
  border-radius: 50%;
  color: var(--aw-wine);
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.swatch-option:hover .swatch,
.swatch-option:hover .plus {
  transform: translateY(-1px);
}

.swatch-option.is-selected .swatch {
  outline: 4px solid #fff;
  box-shadow: 0 0 0 1px var(--aw-wine), inset 0 0 0 3px #fff;
}

.swatch-option.is-selected .plus {
  background: var(--aw-wine);
  color: #fff;
  border-color: var(--aw-wine);
}

.field-block {
  border-top: 1px solid #eaded8;
  margin-top: 24px;
  padding-top: 24px;
  display: grid;
  gap: 14px;
}

.field-block label,
.text-field,
.notes,
.select-alone,
.select-group label {
  display: grid;
  gap: 12px;
  color: #2e2427;
  font-size: 16px;
  font-weight: 800;
}

.abaya-wizard-plugin input[type="text"],
.abaya-wizard-plugin input[type="tel"],
.abaya-wizard-plugin select,
.abaya-wizard-plugin textarea {
  width: 100%;
  min-width: 0;
  height: 49px;
  border: 1px solid var(--aw-line);
  border-radius: 25px;
  background-color: #fff;
  color: var(--aw-ink);
  padding: 0 20px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.abaya-wizard-plugin textarea {
  min-height: 104px;
  height: 104px;
  border-radius: 8px;
  padding-top: 14px;
  resize: vertical;
}

.abaya-wizard-plugin input:focus,
.abaya-wizard-plugin select:focus,
.abaya-wizard-plugin textarea:focus {
  border-color: var(--aw-wine);
  box-shadow: 0 0 0 3px rgba(107, 20, 50, 0.08);
}

.abaya-wizard-plugin ::placeholder,
.abaya-wizard-plugin select:invalid,
.abaya-wizard-plugin select {
  color: #c1b3b0;
}

.design-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(70px, 1fr));
  gap: 23px 16px;
  direction: rtl;
}

.design-card {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #8f8486;
  font-size: 14px;
  font-weight: 600;
}

.design-card--no-label {
  gap: 0;
}

.design-card img {
  width: 100%;
  max-width: 96px;
  aspect-ratio: 1.12 / 1;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--aw-soft);
  object-fit: cover;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.design-card:hover img,
.design-card.is-selected img {
  border-color: var(--aw-wine);
}

.radio-list {
  display: grid;
  gap: 12px;
}

.radio-list label {
  min-height: 78px;
  border: 1px solid var(--aw-line);
  border-radius: 6px;
  background: #fff;
  padding: 14px 19px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.radio-list.compact label {
  min-height: 73px;
}

.radio-list input {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  accent-color: var(--aw-wine);
  flex: 0 0 auto;
}

.radio-list label:hover,
.radio-list label.is-selected {
  border-color: #9c5066;
  background: #fbf8f6;
}

.radio-list span {
  display: grid;
  gap: 7px;
  flex: 1;
}

.radio-list b {
  color: #2e2427;
  font-size: 16px;
  line-height: 1.35;
}

.radio-list small {
  color: #bbb0ad;
  font-size: 14px;
  line-height: 1.45;
}

.select-group {
  display: grid;
  gap: 18px;
}

.select-group label {
  border-bottom: 1px solid #eaded8;
  padding-bottom: 20px;
}

/* The "other material" field-block sits between two select-group labels that
   already carry their own divider line, so its own border/spacing would
   otherwise stack into a cluttered double-border block. */
.select-group .field-block {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.abaya-wizard-plugin select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--aw-wine) 50%),
    linear-gradient(135deg, var(--aw-wine) 50%, transparent 50%);
  background-position: left 24px center, left 18px center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-left: 40px;
}

.toggle-row {
  margin-top: 19px;
  display: grid;
  gap: 15px;
}

.toggle-row strong {
  color: #2e2427;
  font-size: 16px;
  font-weight: 800;
  text-align: start;
}

.toggle-row small {
  color: #8c7f81;
  font-weight: 500;
}

.toggle-row div {
  display: flex;
  gap: 40px;
  justify-content: flex-start;
}

.toggle-row label {
  min-width: 132px;
  height: 49px;
  border: 1px solid var(--aw-line);
  border-radius: 2px;
  background: #fff;
  color: #60404a;
  display: grid;
  place-items: center;
  padding: 0 16px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.toggle-row input {
  position: absolute;
  opacity: 0;
}

.toggle-row label:hover,
.toggle-row label.is-selected {
  border-color: var(--aw-wine);
  background: #fbf8f6;
}

.select-alone {
  border-top: 1px solid #eaded8;
  margin-top: 24px;
  padding-top: 20px;
}

.sizes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 18px;
}

.sizes span {
  min-width: 44px;
  height: 38px;
  border: 1px solid var(--aw-line);
  border-radius: 4px;
  color: var(--aw-wine);
  display: grid;
  place-items: center;
  padding: 0 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.sizes label:hover span,
.sizes label.is-selected span {
  background: var(--aw-wine);
  border-color: var(--aw-wine);
  color: #fff;
}

.upload-box {
  min-height: 128px;
  border: 1px dashed #ddc8bf;
  border-radius: 6px;
  color: #c5b5af;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 9px;
  margin: 20px 0 26px;
  padding: 16px;
  cursor: pointer;
}

.upload-box input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.upload-box span {
  font-size: 32px;
  line-height: 1;
}

.upload-box small {
  font-size: 14px;
}

.upload-box img {
  width: 112px;
  height: 112px;
  border: 1px solid var(--aw-line);
  border-radius: 7px;
  object-fit: cover;
}

.upload-box.has-image span,
.upload-box.has-image small {
  display: none;
}

.upload-gallery {
  margin: 20px 0 26px;
}

.upload-gallery .upload-box {
  margin: 0 0 14px;
}

.upload-gallery.has-images .upload-box {
  min-height: 96px;
}

.reference-preview-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.reference-preview-thumb {
  width: 88px;
  height: 88px;
  border: 1px solid var(--aw-line);
  border-radius: 7px;
  object-fit: cover;
}

.field-note {
  margin: -8px 0 20px;
  font-size: 13px;
  color: var(--aw-muted);
}

.label-muted {
  color: var(--aw-muted);
}

.text-field {
  margin-bottom: 18px;
  border-bottom: 1px solid #eaded8;
  padding-bottom: 19px;
}

.notice {
  min-height: 70px;
  border-radius: 6px;
  background: #ebe4e6;
  color: #39282d;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 18px;
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.8;
}

.notice span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--aw-wine);
  color: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 800;
}

.invoice-card {
  border: 1px solid var(--aw-line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #fbf8f6 100%);
  box-shadow: 0 8px 24px rgba(70, 31, 44, 0.06);
  margin-top: 18px;
  overflow: hidden;
}

.invoice-card[hidden] {
  display: none !important;
}

.invoice-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #f4ece8;
  border-bottom: 1px solid var(--aw-line);
  padding: 12px 14px;
}

.invoice-title strong {
  color: var(--aw-ink);
  font-size: 15px;
  font-weight: 800;
}

.invoice-title span {
  color: #928689;
  font-size: 12px;
  font-weight: 600;
}

.invoice-table {
  max-height: 230px;
  overflow: auto;
}

.invoice-row {
  display: grid;
  grid-template-columns: minmax(110px, 38%) 1fr;
  gap: 12px;
  align-items: start;
  padding: 10px 14px;
  border-bottom: 1px solid #efe3de;
  font-size: 13px;
  line-height: 1.65;
}

.invoice-row:last-child {
  border-bottom: 0;
}

.invoice-row span {
  color: #8b7d80;
  font-weight: 700;
}

.invoice-row b {
  color: var(--aw-ink);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.invoice-image {
  border-top: 1px solid var(--aw-line);
  padding: 12px 14px;
  display: grid;
  gap: 10px;
}

.invoice-image strong {
  font-size: 13px;
}

.invoice-image img {
  width: 100%;
  max-height: 190px;
  border: 1px solid var(--aw-line);
  border-radius: 7px;
  object-fit: cover;
}

.invoice-image-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.invoice-image-gallery img {
  width: 100%;
  height: 90px;
  border: 1px solid var(--aw-line);
  border-radius: 7px;
  object-fit: cover;
}

.success-message {
  color: var(--aw-wine);
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  margin: 34px 0 0;
}

.actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 31px;
  align-items: center;
  padding-top: 42px;
}

.btn {
  height: 55px;
  border-radius: 28px;
  border: 1px solid var(--aw-wine);
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.btn:hover:not(:disabled) {
  transform: translateY(-1px);
}

.btn.primary {
  background: var(--aw-wine);
  color: #fff;
}

.btn.primary:hover:not(:disabled) {
  background: #551127;
  border-color: #551127;
}

.btn.ghost {
  background: #fff;
  color: var(--aw-wine);
}

.btn.ghost:hover:not(:disabled) {
  background: #fbf8f6;
}

.btn:disabled {
  border-color: #dfcbd2;
  background: var(--aw-wine-soft);
  color: #fff;
  cursor: default;
  transform: none;
}

.form-error {
  margin: 14px 0 0;
  color: var(--aw-wine);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.has-error:is(input, select, textarea),
.has-error input,
.has-error select,
.has-error textarea,
.image-card.has-error img,
.design-card.has-error img,
.swatch-option.has-error .swatch,
.swatch-option.has-error .plus,
.radio-list label.has-error,
.toggle-row label.has-error,
.sizes label.has-error span {
  border-color: #b02046 !important;
  box-shadow: 0 0 0 3px rgba(176, 32, 70, 0.08);
}

.is-loading .next-btn {
  opacity: 0.72;
}

.is-submitted .next-btn,
.is-submitted .prev-btn {
  pointer-events: none;
}

.abaya-wizard-plugin[dir="rtl"] .form-pane,
.abaya-wizard-plugin[dir="rtl"] .model-options,
.abaya-wizard-plugin[dir="rtl"] .swatch-grid,
.abaya-wizard-plugin[dir="rtl"] .design-grid {
  direction: rtl;
}

.abaya-wizard-plugin[dir="ltr"] .form-pane,
.abaya-wizard-plugin[dir="ltr"] .model-options,
.abaya-wizard-plugin[dir="ltr"] .swatch-grid,
.abaya-wizard-plugin[dir="ltr"] .design-grid {
  direction: ltr;
}

.abaya-wizard-plugin[dir="ltr"] .progress-line {
  background:
    linear-gradient(
      to right,
      var(--aw-wine) 0 var(--aw-progress),
      #d9c8c1 var(--aw-progress) 100%
    );
}

.abaya-wizard-plugin[dir="ltr"] select {
  background-position: right 24px center, right 18px center;
}

@media (max-width: 1080px) {
  .wizard-shell {
    padding-top: 38px;
  }

  .progress {
    margin-bottom: 52px;
  }

  .wizard-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .preview-pane {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }

  .form-pane {
    max-width: 620px;
    width: 100%;
    min-height: auto;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .wizard-shell {
    min-height: auto;
    padding-inline: clamp(16px, 4vw, 28px);
  }

  .progress {
    margin-bottom: 36px;
  }

  .preview-pane,
  .form-pane {
    max-width: 560px;
  }
}

@media (max-width: 680px) {
  .wizard-shell {
    padding: 26px 16px 34px;
  }

  .progress {
    height: 66px;
    margin-bottom: 30px;
  }

  .progress-line {
    top: 16px;
    right: 28px;
    left: 28px;
  }

  .dot {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }

  .progress-step {
    gap: 9px;
  }

  .progress-step span:last-child {
    max-width: 82px;
    font-size: 11px;
    white-space: normal;
    text-align: center;
  }

  .pane-title h1 {
    margin-bottom: 24px;
    font-size: 24px;
  }

  .wizard-page h2 {
    font-size: 16px;
  }

  .model-options,
  .swatch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .design-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .radio-list label {
    min-height: 70px;
    padding: 13px 14px;
  }

  .radio-list b,
  .field-block label,
  .text-field,
  .notes,
  .select-alone,
  .select-group label {
    font-size: 15px;
  }

  .radio-list small,
  .notice,
  .design-card {
    font-size: 13px;
  }

  .toggle-row div {
    gap: 12px;
  }

  .toggle-row label {
    min-width: 0;
    flex: 1;
  }

  .actions {
    grid-template-columns: 96px 1fr;
    gap: 14px;
    padding-top: 28px;
  }

  .btn {
    height: 48px;
    font-size: 15px;
  }

  .invoice-row {
    grid-template-columns: 1fr;
    gap: 2px;
    font-size: 12px;
  }

  .invoice-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 460px) {
  .wizard-shell {
    padding: 18px 12px 28px;
  }

  .progress {
    height: 58px;
  }

  .progress-step span:last-child {
    max-width: 68px;
    font-size: 10px;
  }

  .dot {
    width: 28px;
    height: 28px;
  }

  .progress-line {
    top: 14px;
    right: 20px;
    left: 20px;
  }

  .pane-title h1 {
    font-size: 21px;
  }

  .design-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
  }

  .swatch-grid {
    gap: 22px 20px;
  }

  .radio-list label {
    min-height: auto;
  }

  .toggle-row div {
    flex-direction: column;
  }

  .actions {
    grid-template-columns: 1fr;
  }

  .btn.ghost {
    order: 2;
  }

  .btn.primary {
    order: 1;
  }
}




.wizard-page[data-page="4"] .select-group {
  display: grid ;
  gap: 18px ;
}

.wizard-page[data-page="4"] .select-group label {
  display: block ;
  font-weight: 700 ;
  color: #1f1720 ;
  border-bottom: 1px solid #eadbdd ;
  padding-bottom: 20px ;
}

.wizard-page[data-page="4"] .select-group select {
  width: 100% ;
  height: 48px ;
  margin-top: 10px ;
  box-sizing: border-box ;

  direction: rtl ;
  text-align: right ;

  border: 1px solid #ead4d6 ;
  border-radius: 999px ;
  background-color: #fff ;
  color: #b7adad ;

  font-family: Cairo, Tahoma, Arial, sans-serif ;
  font-size: 16px ;
  font-weight: 700 ;
  line-height: 48px ;

  padding: 0 20px 0 46px ;

  appearance: none ;
  -webkit-appearance: none ;
  -moz-appearance: none ;

  background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2L7 7L12 2' fill='none' stroke='%236b1432' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") ;
  background-repeat: no-repeat ;
  background-position: left 18px center ;
  background-size: 14px 9px ;
}

.wizard-page[data-page="4"] .select-group select:focus {
  outline: none ;
  border-color: #6b1432 ;
  box-shadow: 0 0 0 2px rgba(107, 20, 50, 0.12) ;
}

.wizard-page[data-page="4"] .select-group label.label-muted {
  color: #b7adad ;
  font-weight: 700 ;
}


.toggle-row > div label {
  width: 100% ;
  min-height: 48px ;
  box-sizing: border-box ;
  padding: 5px 20px ;

  display: flex ;
  align-items: center ;
  justify-content: center ;
  gap: 8px ;

  font-family: Cairo, Tahoma, Arial, sans-serif ;
  font-size: 16px ;
  line-height: 1.4 ;

  border: 1px solid #ddd ;
  border-radius: 8px ;
  background: #fff ;
  color: #222 ;
  cursor: pointer ;
}

.toggle-row > div label input {
  display: none ;
}

.toggle-row > div label.is-selected,
.toggle-row > div label:has(input:checked) {
  background: #6b1432 ;
  border-color: #6b1432 ;
  color: #fff ;
}

