.cwb-wrap {
    max-width: 720px;
    margin: 20px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #1a1a1a;
}
.cwb-stepper {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.cwb-step {
    flex: 1;
    min-width: 120px;
    padding: 10px 12px;
    background: #f3f4f6;
    border-radius: 6px;
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
    text-align: center;
}
.cwb-step.active { background: #1a1a1a; color: #fff; }
.cwb-step.done { background: #10b981; color: #fff; }

.cwb-panel { background: #fff; border: 1px solid #e5e7eb; border-radius: 8px; padding: 24px; }
.cwb-panel h3 { margin: 0 0 16px; font-size: 18px; }
.cwb-panel h4 { margin: 16px 0 8px; font-size: 14px; color: #4b5563; }

/* Service cards */
.cwb-services { display: grid; gap: 12px; }
.cwb-service-card {
    display: block;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    position: relative;
}
.cwb-service-card:hover { border-color: #9ca3af; }
.cwb-service-card input { position: absolute; opacity: 0; }
.cwb-service-card.selected { border-color: #1a1a1a; background: #fafafa; }
.cwb-service-name { font-weight: 600; font-size: 16px; margin-bottom: 4px; }
.cwb-service-desc { font-size: 13px; color: #6b7280; margin-bottom: 10px; }
.cwb-service-meta { display: flex; gap: 12px; align-items: center; font-size: 13px; color: #4b5563; flex-wrap: wrap; }
.cwb-price { font-weight: 600; color: #1a1a1a; margin-left: auto; font-size: 15px; }
.cwb-pill { font-size: 11px; padding: 2px 8px; border-radius: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.3px; }
.cwb-pill-bay { background: #dbeafe; color: #1e40af; }
.cwb-pill-mobile { background: #dcfce7; color: #166534; }
.cwb-pill-dropoff { background: #fef3c7; color: #92400e; }

/* Date + slots */
.cwb-date-input {
    padding: 10px 12px;
    font-size: 15px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    width: 100%;
    max-width: 240px;
    margin-bottom: 16px;
}
.cwb-slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 8px; }
.cwb-slot {
    padding: 10px;
    text-align: center;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    background: #fff;
    transition: all 0.15s;
}
.cwb-slot:hover { border-color: #1a1a1a; }
.cwb-slot.selected { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
.cwb-msg { font-size: 13px; color: #6b7280; margin: 12px 0 0; }

/* Form */
.cwb-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cwb-form-grid label { display: flex; flex-direction: column; font-size: 13px; font-weight: 500; gap: 4px; color: #374151; }
.cwb-form-grid input, .cwb-form-grid textarea {
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
}
.cwb-full { grid-column: 1 / -1; }
@media (max-width: 540px) { .cwb-form-grid { grid-template-columns: 1fr; } }

/* Summary */
.cwb-summary {
    background: #fafafa;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 16px;
    font-size: 14px;
}
.cwb-summary-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid #e5e7eb; }
.cwb-summary-row:last-child { border-bottom: 0; }
.cwb-summary-row strong { color: #6b7280; font-weight: 500; }
.cwb-pay-note { background: #fef3c7; padding: 12px; border-radius: 6px; font-size: 13px; margin: 16px 0; color: #92400e; }

/* Actions */
.cwb-actions { display: flex; justify-content: space-between; margin-top: 20px; gap: 8px; }
.cwb-actions .cwb-next, .cwb-actions .cwb-submit { margin-left: auto; }
.cwb-btn {
    padding: 10px 20px;
    background: #1a1a1a;
    color: #fff;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.15s;
}
.cwb-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.cwb-btn.cwb-back { background: #fff; color: #1a1a1a; border: 1px solid #d1d5db; }

/* Result */
.cwb-result { margin-top: 16px; padding: 12px; border-radius: 6px; font-size: 14px; display: none; }
.cwb-result.success { display: block; background: #dcfce7; color: #166534; }
.cwb-result.error { display: block; background: #fee2e2; color: #991b1b; }
