.booking-widget-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1100;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #d8b8a0 0%, #c69c7b 100%);
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 14px 35px rgba(117, 81, 57, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    max-width: min(360px, calc(100vw - 32px));
}

.booking-widget-button:hover,
.booking-widget-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(117, 81, 57, 0.34);
    background: linear-gradient(135deg, #cfac92 0%, #bb8f6c 100%);
}

.booking-widget-button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.7);
    outline-offset: 2px;
}

.booking-widget-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    font-size: 1.25rem;
}

.booking-widget-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.booking-widget-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.1;
}

.booking-widget-subtitle {
    font-size: 0.82rem;
    line-height: 1.2;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .booking-widget-button {
        right: 16px;
        bottom: 16px;
        left: 16px;
        justify-content: center;
        border-radius: 20px;
        padding: 14px 18px;
    }

    .booking-widget-copy {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .booking-widget-icon {
        width: 42px;
        height: 42px;
    }

    .booking-widget-title {
        font-size: 0.95rem;
    }

    .booking-widget-subtitle {
        font-size: 0.78rem;
    }
}
