/* WhatsApp floating widget */
.whatsapp-widget {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 1000;
}

.whatsapp-widget__link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #25d366;
    color: #fff;
    padding: 14px 20px 14px 16px;
    border-radius: 999px;
    box-shadow: 0 12px 25px rgba(12, 42, 84, 0.25);
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-widget__link:hover,
.whatsapp-widget__link:focus {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(12, 42, 84, 0.35);
    color: #fff;
}

.whatsapp-widget__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    font-size: 24px;
}

.whatsapp-widget__details {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.whatsapp-widget__label {
    font-size: 14px;
    opacity: 0.85;
}

.whatsapp-widget__cta {
    font-size: 15px;
}

@media (max-width: 767px) {
    .whatsapp-widget {
        bottom: 10px;
        right: 12px;
    }

    .whatsapp-widget__details {
        display: none;
    }

    .whatsapp-widget__link {
        padding: 12px;
    }
}
