.wedding-pattern {
  background-image: radial-gradient(circle at 20% 20%, rgba(140, 82, 255, 0.07) 0, transparent 35%),
    radial-gradient(circle at 80% 0%, rgba(212, 175, 55, 0.07) 0, transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(140, 82, 255, 0.07) 0, transparent 40%);
}

.card {
  background: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 10px 40px -12px rgba(140, 82, 255, 0.2);
  padding: 1.75rem;
  border: 1px solid #ece0ff;
}

@media (min-width: 640px) {
  .card { padding: 2.5rem; }
}

.label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: #6b5f7a;
  margin-bottom: 0.35rem;
}

.input {
  width: 100%;
  border: 1px solid #ded0f8;
  border-radius: 0.75rem;
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
  background: #fdfcff;
  transition: border-color .15s, box-shadow .15s;
}

.input:focus {
  outline: none;
  border-color: #8c52ff;
  box-shadow: 0 0 0 3px rgba(140, 82, 255, 0.15);
}

.btn-primary {
  background: linear-gradient(135deg, #8c52ff, #6a2fd9);
  color: #fff;
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 8px 20px -6px rgba(140, 82, 255, 0.55);
}

.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -6px rgba(140, 82, 255, 0.65); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.btn-secondary {
  background: #fff;
  color: #6a2fd9;
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1.5px solid #ddc9ff;
  transition: background .15s, transform .15s;
}

.btn-secondary:hover { background: #f3ecff; transform: translateY(-1px); }

.sticky-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f3ecff;
  border-radius: 1rem;
  padding: 0.9rem 1.25rem;
}

.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ded0f8;
  transition: background .2s, transform .2s;
}

.step-dot.active { background: #8c52ff; transform: scale(1.3); }
.step-dot.done { background: #d4af37; }

.step-line {
  width: 40px;
  height: 2px;
  background: #ded0f8;
}

.breakdown-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.breakdown-row .breakdown-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #6b5f7a;
}

.breakdown-bar-bg {
  width: 100%;
  height: 8px;
  background: #f3ecff;
  border-radius: 999px;
  overflow: hidden;
}

.breakdown-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #e6c866, #8c52ff);
  border-radius: 999px;
}

.cta-box {
  background: linear-gradient(135deg, #8c52ff, #5b21c4);
  border-radius: 1.25rem;
  padding: 1.5rem;
  text-align: center;
}

.cta-btn {
  display: inline-block;
  background: #d4af37;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background .15s;
}

.cta-btn:hover { background: #b5932c; }
