 /* Floating Booking Button */
 .floating-booking-btn {
    position: fixed;
    bottom: 7%;
    right: 2%;
    z-index: 1000;
}

.booking-btn-link {
    display: flex;
    align-items: center;
    background: none;
    color: #D3D3D4;
    text-decoration: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 16px;
}

.booking-btn-link:hover {
    background: none;
    color: #D3D3D4;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: none;
}

.booking-btn-text {
    margin-right: 2px;
    background: #292A2E;
    padding: 6px 10px;
    border-radius: .25rem;
    white-space: nowrap;
}

.EWBookingWidgetTrigger__icon {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .floating-booking-btn {
        bottom: 8%;
        right: 2%;
    }
    
    .booking-btn-link {
        padding: 0;
        font-size: 14px;
    }
    
    .booking-btn-text {
        padding: 6px 10px;
    }
    
    .EWBookingWidgetTrigger__icon {
        width: 72px;
        height: 72px;
    }
}