
/* =========================================================
   Forms / Inputs / Buttons
========================================================= */
.pretty-time-select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d8c7bb;
    border-radius: 14px;
    background: #fffaf7;
    color: #3b2a22;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #8b6f61 50%),
        linear-gradient(135deg, #8b6f61 50%, transparent 50%);
    background-position:
        calc(100% - 22px) 50%,
        calc(100% - 16px) 50%;
    background-size:
        6px 6px,
        6px 6px;
    background-repeat: no-repeat;
}

.pretty-time-select:focus {
    border-color: #8b6f61;
    box-shadow: 0 0 0 3px rgba(139, 111, 97, 0.18);
}

.modal-card input,
.modal-card select,
.modal-card textarea,
.owner-login-card input,
.owner-booking-card input,
.fake-checkout-right input,
.contact-form input,
.contact-form textarea,
#owner-add-booking-modal input,
#owner-add-booking-modal select,
#owner-add-booking-modal textarea {
    width: 100%;
    padding: 15px 16px;
    border-radius: 16px;
    border: 1px solid rgba(173, 122, 99, 0.3);
    background: white;
    font-size: 16px;
}

.modal-card input:focus,
.modal-card select:focus,
.modal-card textarea:focus,
.owner-login-card input:focus,
.owner-booking-card input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(213, 182, 95, 0.2);
}

.booking-actions button,
.owner-login-card button,
.fake-pay-button,
.wallet-button,
.contact-form button,
#owner-add-booking-modal button[type="submit"] {
    width: 100%;
    min-height: 56px;
    padding: 15px;
    border: 0;
    border-radius: 999px;
    background: var(--espresso);
    color: var(--cream);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}
.popup-error {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    z-index: 99999;
    background: #7a1f1f;
    color: #fff;
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    max-width: 92%;
    width: 420px;
    text-align: center;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.popup-error.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.service-category-group {
    margin-bottom: 28px;
}

.service-category-title {
    margin: 0 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(173, 122, 99, 0.25);
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--espresso);
}

.service-category-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}