/**
 * Booking form + private status page styles (Phase 3).
 * Kept minimal and aligned with the Phase 2 Google Login classes.
 */
.hakeem-booking {
    max-width: 100%;
}

.hakeem-booking-form {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.hakeem-booking-form p {
    margin: 0 0 1em;
}

.hakeem-booking-field label {
    display: block;
    margin-bottom: 0.3em;
    font-weight: 600;
}

.hakeem-booking-field input,
.hakeem-booking-field select,
.hakeem-booking-field textarea {
    width: 100%;
    padding: 0.5em 0.7em;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    box-sizing: border-box;
}

.hakeem-booking-field textarea {
    resize: vertical;
}

/* --- Card-style service picker (modular UI, DL-28) --- */
.hakeem-booking-label {
    display: block;
    margin-bottom: 0.3em;
    font-weight: 600;
}

.hakeem-booking-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6em;
}

.hakeem-booking-card {
    display: flex;
    align-items: flex-start;
    gap: 0.6em;
    padding: 0.8em 0.9em;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.hakeem-booking-card:hover {
    border-color: var(--color-gold, #c9a227);
}

.hakeem-booking-card input[type="radio"] {
    flex: 0 0 auto;
    width: auto;
    margin-top: 0.2em;
}

.hakeem-booking-card:has(input:checked) {
    border-color: var(--color-gold, #c9a227);
    box-shadow: 0 0 0 1px var(--color-gold, #c9a227);
}

.hakeem-booking-card__icon {
    flex: 0 0 auto;
    font-size: 1.15em;
    color: var(--color-gold, #c9a227);
    line-height: 1.4;
}

.hakeem-booking-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.15em;
    min-width: 0;
}

.hakeem-booking-card__title {
    font-size: 0.95em;
}

.hakeem-booking-card__desc {
    font-size: 0.85em;
    color: #555;
}

.hakeem-booking-card__check {
    margin-left: auto;
    color: var(--color-gold, #c9a227);
    opacity: 0;
    transition: opacity 0.15s ease;
}

.hakeem-booking-card:has(input:checked) .hakeem-booking-card__check {
    opacity: 1;
}

@media (min-width: 480px) {
    .hakeem-booking-cards {
        grid-template-columns: 1fr 1fr;
    }
}

.hakeem-booking-notice {
    padding: 0.7em 1em;
    margin: 0 0 1em;
    border-radius: 4px;
    background: #eef7ff;
    border: 1px solid #bcdcff;
}

.hakeem-booking-notice--error {
    background: #fdeeee;
    border-color: #f5c2c2;
    color: #8b1a1a;
}

.hakeem-booking-login {
    margin: 0.5em 0 1em;
    padding: 1em;
    border: 1px dashed #bbb;
    border-radius: 4px;
    background: #fafafa;
}

.hakeem-booking-cancel {
    display: block;
    margin-top: 0.6em;
    background: none;
    border: none;
    color: #666;
    text-decoration: underline;
    cursor: pointer;
}

.hakeem-booking-account {
    margin-top: 0.5em;
    font-size: 0.95em;
}

.hakeem-booking-status {
    max-width: 620px;
}

.hakeem-booking-status__heading {
    margin: 0 0 0.4em;
}

.hakeem-booking-status__id {
    font-weight: 600;
    color: #1a5b8b;
}

.hakeem-booking-status__details {
    margin: 1em 0;
}

.hakeem-booking-status__details div {
    display: flex;
    justify-content: space-between;
    padding: 0.4em 0;
    border-bottom: 1px solid #eee;
}

.hakeem-booking-status__details dt {
    font-weight: 600;
}

.hakeem-booking-status__details dd {
    margin: 0;
}

.hakeem-booking-status__notices {
    padding: 0.6em 0.6em 0.6em 1.8em;
    background: #fff8e6;
    border: 1px solid #f0e0a8;
    border-radius: 4px;
}

.hakeem-booking-status__whatsapp {
    margin: 1.2em 0;
}

.hakeem-booking-whatsapp {
    display: inline-block;
    padding: 0.6em 1.2em;
    background: #25d366;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}

.hakeem-booking-whatsapp:hover {
    background: #1eb758;
    color: #fff;
}
