.wcrc {
  --wcrc-bg: #ffffff;
  --wcrc-text: #111827;
  --wcrc-muted: #6b7280;
  --wcrc-line: #e5e7eb;
  --wcrc-soft: #f9fafb;
  --wcrc-primary: #111827;
  --wcrc-primary-hover: #374151;
  --wcrc-error: #b91c1c;
  --wcrc-success: #047857;
  max-width: 860px;
  margin: 32px auto;
  color: var(--wcrc-text);
}

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

.wcrc__progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.wcrc__progress-step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--wcrc-line);
  border-radius: 14px;
  background: var(--wcrc-soft);
  color: var(--wcrc-muted);
  font-size: 14px;
  font-weight: 600;
}

.wcrc__progress-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #e5e7eb;
  color: var(--wcrc-text);
  font-size: 13px;
}

.wcrc__progress-step.is-active,
.wcrc__progress-step.is-done {
  border-color: var(--wcrc-primary);
  background: #fff;
  color: var(--wcrc-text);
}

.wcrc__progress-step.is-active span,
.wcrc__progress-step.is-done span {
  background: var(--wcrc-primary);
  color: #fff;
}

.wcrc__form {
  background: var(--wcrc-bg);
  border: 1px solid var(--wcrc-line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
}

.wcrc__step h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.2;
}

.wcrc__lead {
  margin: 0 0 22px;
  color: var(--wcrc-muted);
}

.wcrc__field {
  margin-bottom: 18px;
}

.wcrc__field label,
.wcrc__fieldset legend,
.wcrc-product__qty label {
  display: block;
  margin-bottom: 7px;
  font-weight: 700;
}

.wcrc__field input[type="text"],
.wcrc__field input[type="email"],
.wcrc__field input[type="number"],
.wcrc__field textarea,
.wcrc-product__qty input {
  width: 100%;
  border: 1px solid var(--wcrc-line);
  border-radius: 12px;
  padding: 13px 14px;
  background: #fff;
  color: var(--wcrc-text);
  font-size: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wcrc__field input:focus,
.wcrc__field textarea:focus,
.wcrc-product__qty input:focus {
  outline: none;
  border-color: var(--wcrc-primary);
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.12);
}

.wcrc__field small {
  display: block;
  margin-top: 7px;
  color: var(--wcrc-muted);
}

.wcrc__fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 20px;
}

.wcrc__radio {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid var(--wcrc-line);
  border-radius: 14px;
  margin-bottom: 10px;
  cursor: pointer;
  background: #fff;
}

.wcrc__radio:hover {
  border-color: var(--wcrc-primary-hover);
}

.wcrc__radio input {
  margin-top: 4px;
}

.wcrc__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}

.wcrc__button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: var(--wcrc-primary);
  color: #fff;
  padding: 13px 22px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.wcrc__button:hover {
  background: var(--wcrc-primary-hover);
  transform: translateY(-1px);
}

.wcrc__button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.wcrc__button--secondary {
  background: #f3f4f6;
  color: var(--wcrc-text);
}

.wcrc__button--secondary:hover {
  background: #e5e7eb;
}

.wcrc__notice,
.wcrc__info {
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 18px;
  background: #fffbeb;
  color: #92400e;
  border: 1px solid #fde68a;
}

.wcrc__notice--error {
  background: #fef2f2;
  border-color: #fecaca;
  color: var(--wcrc-error);
}

.wcrc__notice--success {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1e40af;
}

.wcrc__field-help {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--wcrc-muted);
}

.wcrc__products {
  display: grid;
  gap: 12px;
}

.wcrc-product {
  display: grid;
  grid-template-columns: 28px 72px 1fr 120px;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--wcrc-line);
  border-radius: 16px;
  background: #fff;
}

.wcrc-product__select {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wcrc-product__image {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--wcrc-soft);
}

.wcrc-product__body strong,
.wcrc-product__body small {
  display: block;
}

.wcrc-product__body small {
  color: var(--wcrc-muted);
  margin-top: 3px;
}

.wcrc-product__qty label {
  font-size: 13px;
  margin-bottom: 4px;
}

.wcrc__summary {
  border: 1px solid var(--wcrc-line);
  border-radius: 16px;
  background: var(--wcrc-soft);
  padding: 18px;
}

.wcrc__summary dl {
  margin: 0;
}

.wcrc__summary dt {
  font-weight: 800;
  margin-top: 14px;
}

.wcrc__summary dt:first-child {
  margin-top: 0;
}

.wcrc__summary dd {
  margin: 4px 0 0;
  color: var(--wcrc-muted);
}

.wcrc__summary ul {
  margin-top: 4px;
  padding-left: 20px;
}

.wcrc__exchange-product-links {
  display: grid;
  gap: 14px;
}

.wcrc__exchange-product-link {
  padding: 14px;
  border: 1px solid var(--wcrc-line);
  border-radius: 14px;
  background: var(--wcrc-soft);
}

.wcrc__exchange-product-link strong {
  display: block;
  margin-bottom: 8px;
}

.wcrc__success {
  text-align: center;
  padding: 32px 0;
}

.wcrc__success-followup {
  max-width: 680px;
  margin: 18px auto 0;
  padding: 16px;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  background: #f8fafc;
  color: #334155;
  text-align: left;
}

.wcrc__success-followup p {
  margin: 0 0 12px;
}

.wcrc__success-followup p:last-child {
  margin-bottom: 0;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

@media (max-width: 700px) {
  .wcrc {
    margin: 20px 0;
  }

  .wcrc__progress {
    grid-template-columns: 1fr 1fr;
  }

  .wcrc__form {
    padding: 18px;
    border-radius: 18px;
  }

  .wcrc-product {
    grid-template-columns: 28px 58px 1fr;
  }

  .wcrc-product__image {
    width: 58px;
    height: 58px;
  }

  .wcrc-product__qty {
    grid-column: 3;
  }

  .wcrc__actions {
    flex-direction: column-reverse;
  }

  .wcrc__button {
    width: 100%;
  }
}

.wcrc__claim-card span {
  display: grid;
  gap: 4px;
}

.wcrc__claim-card strong {
  font-size: 16px;
}

.wcrc__claim-card small {
  color: var(--wcrc-muted);
  line-height: 1.45;
}


.wcrc__claim-card--withdrawal {
  background: #fff;
}

.wcrc__info--video {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1e40af;
}

.wcrc__info--invoice {
  background: #fef2f2;
  border-color: #fecaca;
  color: #b91c1c;
}

.wcrc__shipping-note {
  margin-top: 14px;
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #bfdbfe;
  background: #eff6ff;
  color: #1e40af;
  font-weight: 700;
}

.wcrc__shipping-note:empty {
  display: none;
}

/* v1.0.2 refinements */
.wcrc__claim-card--preferred {
  border-color: var(--wcrc-line);
  background: #fff;
}

.wcrc__claim-card--preferred:hover {
  border-color: var(--wcrc-primary-hover);
}

.wcrc__claim-card small strong {
  display: inline;
  color: var(--wcrc-text);
  font-size: inherit;
  font-weight: 800;
}

.wcrc__info--withdrawal-unavailable {
  background: #ecfdf5;
  border-color: #bbf7d0;
  color: #047857;
  font-weight: 700;
}

.wcrc__info--exchange {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1e40af;
}

.wcrc__shipping-note {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1e40af;
}

.wcrc__shipping-note--withdrawal {
  background: #fff7ed;
  border-color: #fed7aa;
  color: #c2410c;
}

.wcrc__shipping-note--nonconformity,
.wcrc__shipping-note--warranty {
  background: #ecfdf5;
  border-color: #bbf7d0;
  color: #166534;
}

.wcrc__shipping-note--exchange {
  background: #ecfdf5;
  border-color: #bbf7d0;
  color: #166534;
}


.wcrc small,
.wcrc label small,
.wcrc .wcrc__field small,
.wcrc .wcrc__claim-card small,
.wcrc .wcrc-product__body small,
.wcrc .wcrc__field-help {
  text-transform: none !important;
}

.wcrc small,
.wcrc label small,
.wcrc .wcrc__field small,
.wcrc .wcrc__claim-card small,
.wcrc .wcrc-product__body small {
  font-size: inherit !important;
  line-height: inherit !important;
}


.wcrc .wcrc__claim-badge {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	margin: 6px 0 4px;
	padding: 3px 9px;
	border-radius: 999px;
	background: #f3f4f6;
	color: #374151;
	font-size: 13px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.35;
	text-transform: none !important;
}


.wcrc .wcrc__claim-card[data-claim-option="warranty"] .wcrc__claim-badge,
.wcrc .wcrc__claim-card[data-claim-option="exchange"] .wcrc__claim-badge {
  background: #ecfdf5;
  border-color: #bbf7d0;
  color: #166534;
}

.wcrc .wcrc__claim-card[data-claim-option="warranty"] small strong,
.wcrc .wcrc__claim-card[data-claim-option="exchange"] small strong {
  color: #166534;
}
