.parw {
  max-width: 920px;
  margin: 0 auto 42px;
}

.parw [hidden] {
  display: none !important;
}

.parw__hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.parw__notice {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 6px;
  font-weight: 600;
}

.parw__notice--success {
  background: #e9f8f1;
  color: #146c43;
}

.parw__notice--error {
  background: #fff0f1;
  color: #9f1239;
}

.parw__form {
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(30, 30, 30, 0.06);
}

.parw__steps {
  display: flex;
  gap: 10px;
  margin: 0 0 22px;
}

.parw__step-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f2f2f2;
  color: #666;
  font-weight: 700;
}

.parw__step-indicator.is-active,
.parw__step-indicator.is-complete {
  background: #f45b93;
  color: #fff;
}

.parw__panel {
  display: none;
}

.parw__panel.is-active {
  display: block;
}

.parw__panel h2 {
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.25;
}

.parw__grid,
.parw__choice-grid,
.parw__order-items,
.parw__reason-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.parw__hint {
  margin: -6px 0 16px;
  color: #666;
}

.parw__file-preview {
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}

.parw__file-preview li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 10px;
  margin-bottom: 6px;
  border: 1px solid #e3d3da;
  border-radius: 6px;
  background: #fdf6f9;
  font-size: 14px;
}

.parw__file-remove {
  border: 0;
  background: none;
  color: #b32d2e;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}

.parw__field-error {
  margin: -4px 0 14px;
  color: #b32d2e;
}

.parw__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0 0 16px;
  font-weight: 600;
}

.parw__field--full {
  grid-column: 1 / -1;
}

.parw__field input,
.parw__field textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 12px 13px;
  font: inherit;
  font-weight: 400;
  background: #fff;
}

.parw__field textarea {
  resize: vertical;
}

.parw__choice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 92px;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  padding: 16px;
  font-weight: 700;
  cursor: pointer;
}

.parw .parw__choice input[type="radio"] {
  margin-top: 3px;
  flex-shrink: 0;
}

.parw .parw__choice-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.parw .parw__choice-title {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
}

.parw .parw__choice-desc {
  font-weight: 400 !important;
  font-size: 13px;
  line-height: 1.5;
  color: #6b6b6b;
}

.parw__gateway {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
}

.parw__gateway-message {
  font-weight: 700;
}

.parw__gateway-message.is-error {
  color: #9f1239;
}

.parw__gateway-message.is-success {
  color: #146c43;
}

.parw__item,
.parw__reason {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  padding: 14px;
  cursor: pointer;
  background: #fff;
}

.parw__item:has(input:checked),
.parw__reason:has(input:checked) {
  border-color: #f45b93;
  box-shadow: 0 0 0 2px rgba(244, 91, 147, 0.18);
}

.parw__item-image {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 6px;
  background: #f3f3f3 center / cover no-repeat;
}

.parw__item-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.parw__item-title {
  font-weight: 700;
}

.parw__item-meta {
  color: #666;
  font-size: 13px;
  line-height: 1.35;
}

.parw__choice:has(input:checked) {
  border-color: #f45b93;
  box-shadow: 0 0 0 2px rgba(244, 91, 147, 0.18);
}

.parw__conditional[hidden] {
  display: none;
}

.parw__review {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
}

.parw__item-reasons {
  display: grid;
  gap: 18px;
}

.parw__item-reason-card {
  border: 1px solid #ededed;
  border-radius: 8px;
  padding: 16px;
  background: #fff;
}

.parw .parw__item-reason-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.parw .parw__item-reason-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: #333;
}

.parw__item-other {
  margin-top: 8px;
}

.parw .parw__item-other[hidden] {
  display: none !important;
}

.parw .parw__item-images {
  grid-column: 1 / -1;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.parw .parw__item-images .parw__hint {
  margin: -2px 0 8px;
  font-size: 12px;
}

.parw .parw__item-images .parw__file-preview {
  margin-bottom: 0;
}

.parw__review-row {
  display: grid;
  grid-template-columns: minmax(120px, 220px) minmax(0, 1fr);
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.parw__review-label {
  color: #666;
  font-weight: 700;
}

.parw__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0 0;
  font-weight: 600;
}

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

.parw__button {
  min-width: 130px;
  text-align: center;
}

.parw__button--secondary {
  background: #f2f2f2;
  color: #222;
}

.parw-home-cta a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.parw-home-cta .fa-light {
  display: inline-block;
  margin: 0 0 8px;
  font-size: 24px;
}

.parw-home-cta small {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 400;
}

.nh_infoBoxesSingleReturns {
  background: #f45b93;
  color: #fff;
}

main .nh_infoBoxes .nh_infoBoxesWrap.parw-has-home-cta {
  flex-wrap: wrap;
}

main .nh_infoBoxes .nh_infoBoxesWrap.parw-has-home-cta .nh_infoBoxesSingle {
  width: calc(20% - 16px);
}

@media (max-width: 720px) {
  .parw__form {
    padding: 18px;
  }

  .parw__grid,
  .parw__choice-grid,
  .parw__order-items,
  .parw__reason-list,
  .parw__review-row {
    grid-template-columns: 1fr;
  }

  .parw__gateway {
    align-items: stretch;
    flex-direction: column;
  }

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

  .parw__button {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  main .nh_infoBoxes .nh_infoBoxesWrap.parw-has-home-cta .nh_infoBoxesSingle {
    width: calc(50% - 10px);
  }
}

@media (max-width: 520px) {
  main .nh_infoBoxes .nh_infoBoxesWrap.parw-has-home-cta .nh_infoBoxesSingle {
    width: 100%;
  }
}
