/* my-booking-now-config - Premium Gold Branding UI */
.my-booking-wrapper {
    font-family: 'Outfit', sans-serif;
    max-width: 900px;
    margin: 2rem auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    color: #1f2937;
    position: relative;
    overflow: hidden;
}

/* Background ornament in Gold */
.my-booking-wrapper::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(197, 163, 99, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.my-booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.my-booking-heading {
    text-align: center;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.025em;
}

.my-booking-subheading {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    color: #374151;
    border-bottom: 1px solid rgba(197, 163, 99, 0.3);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.my-booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 850px) {
    .my-booking-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.my-booking-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.my-booking-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.my-booking-form-group label {
    font-weight: 500;
    font-size: 0.95rem;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Colorize the icons in Gold */
.my-booking-form-group label svg {
    color: #c5a363;
}

.mbn-required {
    color: #d9480f;
}

.my-booking-form-group input[type="text"],
.my-booking-form-group input[type="email"],
.my-booking-form-group input[type="tel"],
.my-booking-form-group input[type="datetime-local"],
.my-booking-form-group select {
    width: 100% !important;
    height: 3.5rem !important;
    min-height: 3.5rem !important;
    padding: 0 1.25rem !important;
    font-size: 1rem !important;
    font-family: 'Outfit', sans-serif !important;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    box-sizing: border-box !important;
    color: #111827;
    margin: 0 !important;
    line-height: normal;
}

/* Select specific styles */
.my-booking-form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23c5a363' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 1rem;
    padding-right: 3rem !important;
}

.my-booking-form-group input:focus, 
.my-booking-form-group select:focus {
    outline: none;
    border-color: #c5a363;
    box-shadow: 0 0 0 4px rgba(197, 163, 99, 0.08);
    background-color: #fff;
}

#mbn_price {
    font-weight: 600;
    background-color: #fdfcf8;
    border-color: #e5e0d4;
    color: #b88e4f;
    font-size: 1.15rem;
}

.my-booking-footer {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
}

.mbn-submit-btn {
    position: relative;
    padding: 0 4rem;
    height: 3.75rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #c5a363 0%, #b88e4f 100%);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 280px;
    box-shadow: 0 10px 20px -5px rgba(184, 142, 79, 0.4);
}

.mbn-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 30px -10px rgba(184, 142, 79, 0.5);
    filter: brightness(1.05);
}

.mbn-btn-loader {
    width: 1.25rem;
    height: 1.25rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: mbn-spin 0.8s linear infinite;
    margin-left: 0.75rem;
}

@keyframes mbn-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.mbn-form-message {
    padding: 1.25rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    margin-top: 1rem;
}

.mbn-form-message.success {
    background-color: #fdfaf4;
    color: #8c6a2e;
    border: 1px solid #e5dcc7;
}

.mbn-form-message.error {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}




