.booking-widget {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.widget-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #c9a227;
    margin-bottom: 5px;
}

.widget-price span {
    font-size: 1rem;
    color: #666;
}

.booking-form {
    margin-top: 25px;
}

.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.booking-form .form-group input,
.booking-form .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.booking-form .form-group input:focus,
.booking-form .form-group select:focus {
    outline: none;
    border-color: #c9a227;
}

.date-inputs,
.time-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.time-inputs {
    margin-top: -10px;
}

.booking-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-row.total {
    font-weight: bold;
    font-size: 1.2rem;
    color: #1a1a2e;
    border-top: 1px solid #ddd;
    padding-top: 10px;
    margin-top: 10px;
}

.btn-book {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 20px;
    background: #c9a227;
    color: #0a0a14;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-book:hover {
    background: #b8931f;
}

.btn-book:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.booking-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.booking-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.booking-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.availability-calendar {
    margin-top: 30px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header button {
    background: transparent;
    border: 1px solid #ddd;
    padding: 5px 15px;
    cursor: pointer;
    border-radius: 5px;
}

.calendar-header button:hover {
    background: #f0f0f0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day-header {
    padding: 10px;
    text-align: center;
    font-weight: 600;
    color: #666;
    font-size: 0.85rem;
}

.calendar-day {
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    font-size: 0.9rem;
}

.calendar-day.available {
    background: #d4edda;
    color: #155724;
    cursor: pointer;
}

.calendar-day.available:hover {
    background: #c3e6cb;
}

.calendar-day.booked {
    background: #f8d7da;
    color: #721c24;
    cursor: not-allowed;
}

.calendar-day.past {
    background: #e9ecef;
    color: #adb5bd;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .date-inputs,
    .time-inputs {
        grid-template-columns: 1fr;
    }
    
    .booking-widget {
        padding: 20px;
    }
}
