/* MAVEG Booking – Deep Blue Glassmorphism, mobile-friendly */
.maveg-booking-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.maveg-booking-filter input,
.maveg-booking-filter select {
    flex: 1 1 200px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(10, 25, 49, 0.2);
    background: rgba(255,255,255,0.7);
    color: #0a1931;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
}
.maveg-booking-filter button {
    background: transparent;
    border: 2px solid #0a1931;
    color: #0a1931;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    transition: 0.3s;
    white-space: nowrap;
}
.maveg-booking-filter button:hover {
    background: #0a1931;
    color: #fff;
}

.maveg-booking-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.maveg-booking-card {
    display: flex;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(10,25,49,0.1);
    color: #0a1931;
    font-family: 'Cormorant Garamond', serif;
}
.maveg-booking-img {
    flex: 0 0 200px;
}
.maveg-booking-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.maveg-booking-info {
    padding: 20px;
    flex: 1;
}
.maveg-booking-info h3 {
    margin-top: 0;
    color: #0a1931;
}
.maveg-booking-type {
    font-size: 0.9em;
    opacity: 0.8;
}
.maveg-booking-form {
    margin-top: 15px;
}
.maveg-booking-form label {
    display: block;
    margin: 8px 0 5px;
    color: #0a1931;
    font-weight: 500;
}
.maveg-booking-form input[type="date"],
.maveg-booking-form input[type="number"],
.maveg-booking-form input[type="text"],
.maveg-booking-form input[type="email"],
.maveg-booking-form input[type="tel"],
.maveg-booking-form select {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid rgba(10,25,49,0.2);
    background: rgba(255,255,255,0.9);
    color: #0a1931;
    font-family: inherit;
    font-size: 16px;
    width: 100%;
    margin-bottom: 12px;
    box-sizing: border-box;
}
.maveg-booking-btn,
.maveg-booking-submit {
    margin-top: 15px;
    background: transparent;
    border: 2px solid #0a1931;
    color: #0a1931;
    padding: 14px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
    font-family: inherit;
    display: inline-block;
}
.maveg-booking-btn:hover,
.maveg-booking-submit:hover {
    background: #0a1931;
    color: #fff;
}
.booking-response {
    display: inline-block;
    margin-left: 15px;
    font-weight: bold;
}

/* Single booking page */
.maveg-single-booking {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    color: #0a1931;
    font-family: 'Cormorant Garamond', serif;
}
.maveg-booking-featured img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 20px;
}
.maveg-booking-content h1 {
    color: #0a1931;
    font-size: 2rem;
}
.maveg-tier-selector {
    margin-bottom: 15px;
}
.maveg-tier-selector label {
    display: block;
    margin-bottom: 5px;
    color: #0a1931;
    font-weight: 500;
}
.maveg-terms-note {
    font-size: 0.85em;
    color: #0a1931;
    opacity: 0.8;
    margin-bottom: 15px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .maveg-single-booking {
        margin: 15px;
        padding: 15px;
    }
    .maveg-booking-card {
        flex-direction: column;
    }
    .maveg-booking-img {
        flex: 0 0 auto;
        height: 200px;
    }
    .maveg-booking-filter input,
    .maveg-booking-filter select {
        flex: 1 1 100%;
    }
    .maveg-booking-form input,
    .maveg-booking-form select {
        font-size: 15px;
    }
    .maveg-booking-submit {
        width: 100%;
        text-align: center;
    }
    .maveg-btn-outline {
        display: block;
        text-align: center;
        margin-top: 10px;
    }
}