@charset "UTF-8";
.wd-progress-container {
  padding: 16px;
  background: white;
  border-bottom: 1px solid #dee2e6;
}

.wd-progress-bar {
  height: 6px;
  border-radius: 3px;
  background-color: #e9ecef;
  overflow: hidden;
}
.wd-progress-bar .wd-progress-fill {
  height: 100%;
  background-color: #198754;
  border-radius: 3px;
  transition: width 0.3s ease;
}

.wd-progress-text {
  font-size: 0.8rem;
  color: #6c757d;
  margin-top: 6px;
}

.wd-parts-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--wd-orange);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 16px;
}
.wd-parts-heading .wd-parts-heading-line {
  flex: 1;
  height: 1px;
  background-color: var(--wd-orange);
}

.wd-part-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: #faf9f7;
  border-radius: 14px;
  padding: 18px 16px 18px 20px;
  margin-bottom: 16px;
}

.wd-part-number {
  position: absolute;
  top: 18px;
  left: -12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--wd-orange);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 34px;
  text-align: center;
  flex-shrink: 0;
}

.wd-part-icon {
  width: 64px;
  height: auto;
  flex-shrink: 0;
  margin-top: 4px;
  margin-left: 8px;
}

.wd-part-icon-tee {
  width: 60px;
  margin-top: 0;
}

.wd-part-title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.wd-part-price {
  color: var(--wd-orange);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.wd-part-copy {
  font-size: 0.95rem;
  color: #333;
}

.wd-gear-card {
  background-color: var(--wd-cream);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 24px;
}

.wd-gear-title {
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.wd-gear-body {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.95rem;
  color: #333;
}

.wd-gear-icon {
  width: 64px;
  height: auto;
  flex-shrink: 0;
}

.btn.wd-commit-button {
  font-size: 1.25rem;
  font-weight: 700;
  padding-top: 14px;
  padding-bottom: 14px;
}

@media (max-width: 360px) {
  .wd-part-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .wd-part-icon {
    margin-left: 0;
  }
  .wd-gear-body {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.wd-plan-card {
  position: relative;
  border: 2px solid var(--wd-orange-light);
  border-radius: 14px;
  padding: 22px 48px 22px 22px;
  cursor: pointer;
  background: linear-gradient(180deg, #fff 0%, #fff8f0 100%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08), 0 8px 18px rgba(212, 133, 58, 0.15);
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease, background-color 0.12s ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.wd-plan-card::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 12px;
  height: 12px;
  border-right: 2.5px solid var(--wd-orange);
  border-bottom: 2.5px solid var(--wd-orange);
  transform: translateY(-50%) rotate(-45deg);
  opacity: 0.6;
  transition: opacity 0.12s ease, transform 0.12s ease;
}
.wd-plan-card:hover {
  border-color: var(--wd-orange);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1), 0 14px 30px rgba(212, 133, 58, 0.25);
  transform: translateY(-2px);
}
.wd-plan-card:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(2px) rotate(-45deg);
}
.wd-plan-card:active {
  transform: translateY(1px) scale(0.995);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 3px 8px rgba(212, 133, 58, 0.18);
  background: linear-gradient(180deg, #fff5e6 0%, #ffead0 100%);
}
.wd-plan-card:focus-visible {
  outline: 3px solid rgba(212, 133, 58, 0.5);
  outline-offset: 3px;
}
.wd-plan-card.selected {
  border-color: var(--wd-orange);
  border-width: 3px;
  padding: 21px 47px 21px 21px;
  background: linear-gradient(180deg, #fff5e6 0%, #ffead0 100%);
  box-shadow: 0 6px 14px rgba(212, 133, 58, 0.32), 0 0 0 4px rgba(212, 133, 58, 0.14);
}
.wd-plan-card.selected::before {
  opacity: 0;
}
.wd-plan-card.selected::after {
  content: "✓";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--wd-orange);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(212, 133, 58, 0.5);
}

.wd-plan-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--wd-orange);
}

.wd-plan-period {
  font-size: 0.85rem;
  font-weight: 400;
  color: #6c757d;
}

.wd-plan-features {
  list-style: none;
  padding-left: 0;
  font-size: 0.85rem;
}
.wd-plan-features li {
  margin-bottom: 4px;
}
.wd-plan-features li i {
  margin-right: 6px;
}

.wd-step-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  margin-bottom: 12px;
}
.wd-step-heading i {
  color: var(--wd-orange);
}

.badge.wd-delivery-badge {
  background-color: #e8f5ec;
  color: #146c43;
  font-weight: 600;
  white-space: normal;
  text-align: right;
}
.badge.wd-delivery-badge.wd-delivery-badge-rural {
  background-color: #fdeee2;
  color: var(--wd-orange-dark);
}

.wd-child-card {
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  padding: 16px;
  background: #fff;
}

.wd-child-remove {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
}

.alert.wd-included-note {
  background-color: #e8f5ec;
  border: 1px solid #bcdfc8;
  color: #146c43;
  font-size: 0.9rem;
}
.alert.wd-included-note i {
  flex-shrink: 0;
  margin-top: 2px;
}

.wd-order-panel {
  background-color: var(--wd-cream);
  border: 1px solid #f0e0cd;
  border-radius: 12px;
  padding: 16px;
}

.form-switch.wd-switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
  padding-left: 0;
  margin-bottom: 0;
}
.form-switch.wd-switch .form-check-input.wd-switch-input {
  float: none;
  margin: 0;
  flex-shrink: 0;
  width: 2.25em;
  height: 1.125em;
}
.form-switch.wd-switch .form-check-label {
  margin-bottom: 0;
  line-height: 1.25;
}

/*# sourceMappingURL=signup.output.css.map */
