/*
 * Goodey & Howell Booking — base styles.
 * Elementor controls override these per-instance via {{WRAPPER}}.
 */
.gh-booking-wrap {
    max-width: 720px;
    margin: 0 auto;
    font-family: inherit;
}
.gh-booking-form {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 4px 18px rgba(0,0,0,.04);
}
.gh-booking-form h3 {
    margin: 0 0 4px;
    font-size: 1.5rem;
    line-height: 1.2;
}
.gh-booking-intro {
    color: #555;
    margin: 0 0 22px;
}
.gh-step {
    border: 0;
    padding: 0;
    margin: 0 0 22px;
}
.gh-step legend {
    font-weight: 600;
    margin-bottom: 8px;
    padding: 0;
}
.gh-help {
    margin: 0 0 12px;
    color: #666;
    font-size: 0.92rem;
}
.gh-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
@media (max-width: 520px) {
    .gh-grid { grid-template-columns: 1fr; }
}
.gh-booking-form label {
    display: block;
    font-size: 0.92rem;
    color: #333;
}
.gh-booking-form input[type="text"],
.gh-booking-form input[type="email"],
.gh-booking-form input[type="tel"],
.gh-booking-form input[type="date"],
.gh-booking-form select,
.gh-booking-form textarea {
    width: 100%;
    margin-top: 4px;
    padding: 10px 12px;
    border: 1px solid #cfcfcf;
    border-radius: 8px;
    font-size: 1rem;
    background: #fff;
    box-sizing: border-box;
    font-family: inherit;
}
.gh-booking-form input:focus,
.gh-booking-form select:focus,
.gh-booking-form textarea:focus {
    outline: none;
    border-color: #1f6feb;
    box-shadow: 0 0 0 3px rgba(31,111,235,.18);
}

/* Service cards */
.gh-service-choice {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.gh-service-card { cursor: pointer; margin: 0; position: relative; }
.gh-service-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.gh-service-card-inner {
    display: block;
    padding: 16px;
    border: 2px solid #e1e1e1;
    border-radius: 10px;
    text-align: center;
    transition: all .15s ease;
    background: #fff;
}
.gh-service-card-inner strong { display: block; font-size: 1.1rem; color: #111; }
.gh-service-card-inner small  { color: #777; }
.gh-service-card input:checked + .gh-service-card-inner {
    border-color: #1f6feb;
    background: #f0f6ff;
}

.gh-radio-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 12px;
}
.gh-radio-row label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
}

.gh-measurement-fields {
    margin-top: 8px;
    padding: 14px;
    background: #fafafa;
    border-radius: 8px;
    border: 1px dashed #d8d8d8;
}
.gh-measurement-fields .gh-grid { margin-top: 12px; }

.gh-submit-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.gh-submit-btn {
    background: #1f6feb;
    color: #fff;
    border: 0;
    padding: 14px 18px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all .15s ease;
    align-self: stretch;
    font-family: inherit;
}
.gh-submit-btn:hover { background: #1858c1; }
.gh-submit-btn:active { transform: translateY(1px); }
.gh-submit-btn[disabled] { opacity: .65; cursor: not-allowed; }

.gh-message { margin: 0; font-size: 0.95rem; }
.gh-message.error   { color: #b91c1c; }
.gh-message.success { color: #166534; font-weight: 600; }
