/* Checkout wizard styles */
.checkout-container {
    max-width: 700px;
    margin: 2rem auto;
    padding: 1rem;
    width: 100%;
}
.step { display: none; }
.step.active { display: block; }
.option { display: block; margin-bottom: 0.5rem; }
.wizard-controls { margin-top: 1rem; display: flex; justify-content: space-between; }
.wizard-controls button,
.pay-button {
    background: var(--primary-color);
    color: #000;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
}
.saved { color: var(--secondary-color); font-weight: bold; }
.total { font-weight: bold; }

@media (max-width: 480px) {
    .wizard-controls {
        flex-direction: column;
        gap: 0.5rem;
    }

    .wizard-controls button {
        width: 100%;
    }
}
