/* Laundry frontend — Wizard + customer pages */
.laundry-wizard {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}
.laundry-wizard-progress {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    counter-reset: step;
}
.laundry-wizard-progress li {
    flex: 1;
    text-align: center;
    position: relative;
    color: #6c757d;
    font-size: .875rem;
}
.laundry-wizard-progress li::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    right: -50%;
    height: 2px;
    background: #dee2e6;
    z-index: 0;
}
.laundry-wizard-progress li:last-child::before { display: none; }
.laundry-wizard-progress .laundry-step-number {
    display: inline-flex;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #dee2e6;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    position: relative;
    z-index: 1;
    margin-bottom: .25rem;
}
.laundry-wizard-progress li.current .laundry-step-number { background: #0d6efd; }
.laundry-wizard-progress li.complete .laundry-step-number { background: #198754; }
.laundry-wizard-progress li.complete .laundry-step-number::before { content: '✓'; }
.laundry-wizard-progress li.current { color: #212529; font-weight: 600; }

.laundry-wizard-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}
.laundry-wizard-actions button:only-child { margin-left: auto; }

.laundry-extra-card {
    display: block;
    padding: .75rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: .5rem;
    cursor: pointer;
    transition: border-color .1s, background-color .1s;
    position: relative;
}
.laundry-extra-card:hover { border-color: #0d6efd; }
.laundry-extra-card input { position: absolute; opacity: 0; }
.laundry-extra-card input:checked ~ .laundry-extra-title { color: #0d6efd; font-weight: 600; }
/* .laundry-extra-card input:checked ~ * { } */
.laundry-extra-card:has(input:checked) { border-color: #0d6efd; background: #f0f7ff; }
.laundry-extra-title { display: block; }
.laundry-extra-price { display: block; font-weight: 600; color: #198754; margin-top: .25rem; }
.laundry-extra-desc { display: block; font-size: .8rem; color: #6c757d; margin-top: .25rem; }

.laundry-payment-methods {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.laundry-payment-option {
    padding: .75rem 1.5rem;
    border: 1px solid #dee2e6;
    border-radius: .5rem;
    cursor: pointer;
}
.laundry-payment-option:has(input:checked) {
    border-color: #0d6efd;
    background: #f0f7ff;
}
.laundry-payment-plugin-form {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid #dee2e6;
    border-radius: .5rem;
}

.laundry-review-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin: 1rem 0;
}
.laundry-review-card {
    padding: 1rem;
    border: 1px solid #dee2e6;
    border-radius: .5rem;
    background: #f8f9fa;
}
.laundry-review-card h4 { font-size: .875rem; text-transform: uppercase; letter-spacing: .05em; color: #6c757d; margin-bottom: .5rem; }
.laundry-review-card p { margin-bottom: .5rem; }

.laundry-totals-table td { padding: .5rem 0; border-bottom: 1px solid #f0f0f0; }
.laundry-totals-grand td { font-size: 1.15rem; border-top: 2px solid #212529; border-bottom: none; padding-top: .75rem; }

.laundry-status-pill {
    display: inline-block;
    padding: .15rem .625rem;
    border-radius: 999px;
    color: #fff;
    font-size: .75rem;
    font-weight: 500;
}

/* My Orders */
.laundry-order-card {
    border: 1px solid #dee2e6;
    border-radius: .5rem;
    margin-bottom: .75rem;
    background: #fff;
}
.laundry-order-card-header {
    padding: .75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    background: #f8f9fa;
    border-radius: .5rem .5rem 0 0;
}
.laundry-order-card-body {
    padding: .75rem 1rem;
}
.laundry-order-total { font-size: 1.1rem; font-weight: 600; }

/* Thank you */
.laundry-thankyou-check {
    font-size: 5rem;
    color: #198754;
    line-height: 1;
    margin-bottom: 1rem;
}

/* Shortcode-rendered book buttons and cards inside article content */
.laundry-shortcode {
    display: block;
    margin: 1.5rem 0;
    text-align: center;
}
.laundry-shortcode-button {
    display: inline-block;
    margin: 1rem 0;
}
.laundry-shortcode-card {
    max-width: 520px;
    margin: 2rem auto;
    padding: 2rem 1.5rem;
    border-radius: .75rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}
.laundry-shortcode-headline {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: .75rem;
    color: #212529;
}
.laundry-shortcode-tagline {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 1rem;
}
.laundry-shortcode-price {
    font-size: 1.15rem;
    font-weight: 600;
    color: #198754;
    margin-bottom: 1.25rem;
}
.laundry-shortcode-card .btn {
    padding-left: 2rem;
    padding-right: 2rem;
}

