/* ---- Base Wizard Layout ---- */

#mp-wizard-container {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.08);
  margin-bottom: 25px;
}

#mp-wizard-header {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
}

/* ---- Progress Bar ---- */

.mp-progress {
  position: relative;
  height: 6px;
  background: #eee;
  border-radius: 4px;
  margin-bottom: 25px;
  overflow: hidden;
}

.mp-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #d62828, #f77f00);
  border-radius: 4px;
  transition: width 0.35s ease;
}

/* ---- Step Indicators ---- */

.mp-step-indicators {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.mp-step-indicator {
  text-align: center;
  width: 100%;
}

.mp-step-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ccc;
  color: #fff;
  line-height: 34px;
  margin: 0 auto 6px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.mp-step-circle.active {
  background: #d62828;
}

.mp-step-circle.completed {
  background: #2ecc71;
}

.mp-step-label {
  font-size: 13px;
  opacity: 0.8;
}

/* ---- Step Content ---- */

.mp-step {
  display: none;
}
.mp-step.active {
  display: block;
}

/* ---- Navigation Buttons ---- */

.mp-nav-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.mp-btn {
  padding: 12px 22px;
  background: #d62828;
  color: #fff !important;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.25s ease;
}

.mp-btn:hover {
  background: #a71d1d;
}

.mp-btn:disabled {
  opacity: 0.6;
  cursor: default;
}

/* Coupon link hidden until step 3 */
.have-coupon-link {
  display: none;
}
