/* ProgressiveKids 1:1 Booking Form */
.pkbook-root *, .pkbook-root *::before, .pkbook-root *::after { box-sizing: border-box; }
.pkbook-root {
    font-family: 'Roboto', sans-serif;
    max-width: 640px; margin: 0 auto;
    background: white; border: 1px solid #e0e8f0; border-radius: 14px;
    padding: 28px 30px; box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.pkbook-title { font-size: 22px; font-weight: 800; color: #275372; margin: 0 0 6px; }
.pkbook-sub   { font-size: 14px; color: #7a9ab0; margin: 0 0 24px; }

.pkbook-step { margin-bottom: 22px; }
.pkbook-label {
    display: block; font-size: 13px; font-weight: 700; color: #275372;
    margin-bottom: 8px; text-transform: uppercase; letter-spacing: .03em;
}
.pkbook-select, .pkbook-input {
    width: 100%; padding: 11px 14px; border: 1.5px solid #d0dce8;
    border-radius: 8px; font-size: 14px; color: #275372;
    font-family: inherit; background: #fafcfe; transition: border-color .15s;
}
.pkbook-select:focus, .pkbook-input:focus { outline: none; border-color: #00a1ff; background: white; }
.pkbook-row { display: flex; gap: 12px; flex-wrap: wrap; }
.pkbook-row .pkbook-step { flex: 1; min-width: 180px; }

/* Slot grid — grouped by day */
.pkbook-slots-loading { font-size: 13px; color: #7a9ab0; padding: 12px 0; }
.pkbook-day-group {
    margin-bottom: 16px; padding-bottom: 16px;
    border-bottom: 1px solid #e0e8f0;
}
.pkbook-day-group:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.pkbook-day-label {
    font-size: 15px; font-weight: 800; color: #275372;
    padding-bottom: 8px; margin-bottom: 12px;
    border-bottom: 2px solid #00a1ff;
    display: flex; align-items: center; gap: 6px;
}
.pkbook-day-label::before { content: '📅'; font-size: 13px; }
.pkbook-time-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.pkbook-time-chip {
    padding: 9px 16px; border: 1.5px solid #d0dce8; border-radius: 20px;
    background: white; color: #275372; font-size: 13px; font-weight: 600;
    cursor: pointer; font-family: inherit; transition: all .15s;
}
.pkbook-time-chip:hover { border-color: #00a1ff; background: #eef6ff; }
.pkbook-time-chip.selected { background: darkorange; border-color: darkorange; color: white; }
.pkbook-date-chip.selected { background: #00a1ff; border-color: #00a1ff; color: white; }
.pkbook-no-slots { font-size: 13px; color: #ef4444; padding: 10px 0; }

/* Policy box */
.pkbook-policy {
    background: #f8fafc; border: 1px solid #e0e8f0; border-radius: 10px;
    padding: 14px 16px; font-size: 12.5px; color: #275372; line-height: 1.6;
    margin-bottom: 18px;
}
.pkbook-policy strong { color: #275372; }
.pkbook-checkbox-row { display: flex; align-items: flex-start; gap: 8px; margin-top: 10px; }
.pkbook-checkbox-row input { margin-top: 3px; flex-shrink: 0; }
.pkbook-checkbox-row label { font-size: 12.5px; color: #275372; line-height: 1.5; }

/* Deposit + PayPal */
.pkbook-deposit-box {
    display: flex; align-items: center; justify-content: space-between;
    background: #eef6ff; border: 1px solid #b5d4f4; border-radius: 10px;
    padding: 14px 18px; margin-bottom: 16px;
}
.pkbook-deposit-label { font-size: 13px; color: #275372; }
.pkbook-deposit-amount { font-size: 24px; font-weight: 800; color: #00a1ff; }

.pkbook-paypal-wrap { text-align: center; margin-top: 16px; }

.pkbook-submit-btn {
    width: 100%; padding: 14px; border: none; border-radius: 24px;
    background: #00a1ff; color: white; font-size: 16px; font-weight: 700;
    cursor: pointer; font-family: inherit; transition: background .2s;
}
.pkbook-submit-btn:hover { background: #0090e0; }
.pkbook-submit-btn:disabled { background: #c5d8e8; cursor: not-allowed; }

.pkbook-status-msg { font-size: 13px; padding: 12px 14px; border-radius: 8px; margin-top: 14px; }
.pkbook-status-msg.success { background: #f0fdf4; color: #16a34a; border: 1px solid #c0dd97; }
.pkbook-status-msg.error   { background: #fef2f2; color: #ef4444; border: 1px solid #f7c1c1; }

.pkbook-success-screen { text-align: center; padding: 20px 0; }
.pkbook-success-icon { font-size: 48px; margin-bottom: 12px; }
