/* ==========================================================================
   MWF FEMINISM — LOAN & DPR APPLICATION DESK (PHASE 2)
   ========================================================================== */

.mwf-loan-section {
  padding: 110px 0;
  background: #ffffff;
  position: relative;
}

.mwf-loan-card-wrap {
  background: #ffffff;
  border: 1px solid var(--mwf-border-soft, #EDE3EC);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(32, 8, 46, 0.08);
}

.mwf-loan-stepper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

.mwf-loan-stepper::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 40px;
  right: 40px;
  height: 3px;
  background: #EDE3EC;
  z-index: 1;
}

.mwf-step-item {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.mwf-step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FAF5F8;
  border: 3px solid #EDE3EC;
  color: #6B5E70;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  transition: all 0.3s ease;
}

.mwf-step-item.is-active .mwf-step-circle {
  background: var(--mwf-magenta, #D8267E);
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(216, 38, 126, 0.25);
}

.mwf-step-item.is-completed .mwf-step-circle {
  background: #22c55e;
  border-color: #ffffff;
  color: #ffffff;
}

.mwf-step-label {
  font-size: 13px;
  font-weight: 700;
  color: #6B5E70;
}

.mwf-step-item.is-active .mwf-step-label {
  color: var(--mwf-primary-dark, #20082E);
}

/* Step Forms */
.mwf-loan-step-panel {
  display: none;
}

.mwf-loan-step-panel.is-active {
  display: block;
  animation: ananya-fade-up 0.4s ease;
}

/* Projection Summary Box */
.mwf-dpr-summary-box {
  background: linear-gradient(135deg, #FAF5F8, #FFFFFF);
  border: 2px dashed rgba(216, 38, 126, 0.35);
  border-radius: 20px;
  padding: 30px;
  margin-top: 25px;
}

.mwf-dpr-metric-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 25px;
}

.mwf-dpr-metric-card {
  background: #ffffff;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid var(--mwf-border-soft, #EDE3EC);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.mwf-dpr-metric-card .label {
  font-size: 12px;
  color: #6B5E70;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
}

.mwf-dpr-metric-card .val {
  font-size: 22px;
  font-weight: 800;
  color: var(--mwf-primary-dark, #20082E);
}

.mwf-dpr-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.mwf-dpr-print-btn {
  padding: 12px 24px;
  background: #20082E;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease;
}

.mwf-dpr-print-btn:hover {
  background: var(--mwf-orchid, #7F226B);
}

.mwf-dpr-apply-btn {
  padding: 12px 24px;
  background: linear-gradient(135deg, #D8267E, #A0155B);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(216, 38, 126, 0.35);
  transition: all 0.2s ease;
}

.mwf-dpr-apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(216, 38, 126, 0.5);
}

@media print {
  body * {
    visibility: hidden;
  }
  .mwf-dpr-summary-box, .mwf-dpr-summary-box * {
    visibility: visible;
  }
  .mwf-dpr-summary-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border: none;
    padding: 0;
  }
  .mwf-dpr-actions {
    display: none;
  }
}
