.ceys-social-popups {
    position: fixed;
    right: clamp(12px, 2vw, 28px);
    bottom: max(20px, env(safe-area-inset-bottom));
    z-index: 9998;
    display: grid;
    gap: 10px;
}

.ceys-social-popup {
    position: relative;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 5px 16px rgba(13, 42, 72, 0.3);
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.ceys-social-popup:hover,
.ceys-social-popup:focus-visible {
    color: #fff;
    box-shadow: 0 7px 20px rgba(13, 42, 72, 0.4);
    outline: 3px solid rgba(255, 255, 255, 0.92);
    outline-offset: 2px;
    transform: translateY(-2px);
}

.ceys-social-popup--whatsapp {
    background: #25d366;
}

.ceys-social-popup--instagram {
    background: #e1306c;
}

.ceys-social-popup--facebook {
    background: #1877f2;
}

.ceys-social-popup .dashicons {
    width: 22px;
    height: 22px;
    font-size: 22px;
    line-height: 22px;
}

.ceys-social-popup-label {
    position: absolute;
    top: 50%;
    right: 48px;
    padding: 7px 11px;
    border-radius: 4px;
    background: #17345f;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    transform: translate(8px, -50%);
    transition: opacity 160ms ease, transform 160ms ease;
    white-space: nowrap;
}

.ceys-social-popup:hover .ceys-social-popup-label,
.ceys-social-popup:focus-visible .ceys-social-popup-label {
    opacity: 1;
    transform: translate(0, -50%);
}

@media (max-width: 600px) {
    .ceys-social-popups {
        right: 12px;
        bottom: max(14px, env(safe-area-inset-bottom));
        gap: 8px;
    }

    .ceys-social-popup-label {
        right: 48px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ceys-social-popup,
    .ceys-social-popup-label {
        transition: none;
    }
}
