.contact-widget-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.contact-widget-panel {
    display: none;
    width: min(320px, calc(100vw - 32px));
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(20, 20, 30, 0.18);
    padding: 20px;
    animation: contactWidgetSlideIn 0.25s ease-out;
}

.contact-widget-panel.is-open {
    display: block;
}

.contact-widget-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.contact-widget-header h4 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #232323;
}

.contact-widget-close {
    border: none;
    background: transparent;
    color: #5f6b7a;
    font-size: 1.25rem;
    line-height: 1;
    padding: 0;
    cursor: pointer;
}

.contact-widget-text,
.contact-widget-hours {
    margin: 0 0 8px;
    font-size: 0.9rem;
    color: #5f6b7a;
    line-height: 1.45;
}

.contact-widget-hours {
    margin-bottom: 16px;
    font-size: 0.85rem;
}

.contact-widget-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-widget-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.contact-widget-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    color: #fff;
}

.contact-widget-btn-phone {
    background: #3762e9;
    color: #fff;
}

.contact-widget-btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.contact-widget-btn-whatsapp.is-disabled {
    background: #c8d0da;
    color: #fff;
    cursor: not-allowed;
    pointer-events: none;
}

.contact-widget-toggle {
    width: 58px;
    height: 58px;
    border: none;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 1.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    cursor: pointer;
    transition: transform 0.15s ease;
}

.contact-widget-toggle:hover {
    transform: scale(1.05);
}

.contact-widget-toggle.is-phone-only {
    background: #3762e9;
    box-shadow: 0 8px 24px rgba(55, 98, 233, 0.35);
}

.contact-widget-note {
    margin: 12px 0 0;
    font-size: 0.78rem;
    color: #8a94a3;
    text-align: center;
}

@keyframes contactWidgetSlideIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    .contact-widget-fab {
        bottom: 16px;
        right: 16px;
    }
}
