.booking-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
}

.booking-toggle {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.booking-toggle:hover {
    transform: scale(1.1);
}

.booking-panel {
    position: fixed;
    right: 2rem;
    bottom: 80px;
    width: 350px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 1.5rem;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.booking-panel.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.quote-calculator {
    margin-bottom: 1.5rem;
}

.calculator-field {
    margin-bottom: 1rem;
}

.calculator-field label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.calculator-field select,
.calculator-field input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
}

.quote-result {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.quote-amount {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.booking-calendar {
    margin-top: 1.5rem;
}

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

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-day:hover {
    background: var(--gold);
    color: white;
}

.calendar-day.available {
    background: var(--light-bg);
}

.calendar-day.selected {
    background: var(--gold);
    color: white;
}

.calendar-day.unavailable {
    opacity: 0.3;
    cursor: not-allowed;
}
