.lkv-share-panel {
    display: none;
}

.lkv-floating-contact {
    position: fixed;
    right: 18px;
    bottom: 92px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    pointer-events: none;
}

.lkv-float-btn {
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 999px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #0F172A;
    box-shadow: 0 12px 28px rgba(15,23,42,.26);
    cursor: pointer;
    pointer-events: auto;
    text-decoration: none;
    transform: translateZ(0);
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
    -webkit-tap-highlight-color: transparent;
}

.lkv-float-btn:hover,
.lkv-float-btn:focus {
    color: #fff;
    text-decoration: none;
    outline: none;
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(15,23,42,.3);
}

.lkv-float-btn svg {
    width: 27px;
    height: 27px;
    fill: currentColor;
    flex: 0 0 auto;
    display: block;
}

.lkv-attention {
    animation: lkv-breathe 7s ease-in-out infinite;
    will-change: transform;
}

.lkv-floating-contact .lkv-attention:nth-child(2) { animation-delay: .7s; }
.lkv-floating-contact .lkv-attention:nth-child(3) { animation-delay: 1.4s; }
.lkv-floating-contact .lkv-attention:nth-child(4) { animation-delay: 2.1s; }
.lkv-floating-contact .lkv-attention:nth-child(5) { animation-delay: 2.8s; }

@keyframes lkv-breathe {
    0%, 78%, 100% { transform: scale(1) translateZ(0); }
    84% { transform: scale(1.08) translateZ(0); }
    90% { transform: scale(1) translateZ(0); }
}

@media (prefers-reduced-motion: reduce) {
    .lkv-attention {
        animation: none;
    }
}

.lkv-float-whatsapp { background: #25D366; }
.lkv-float-sms { background: #2563EB; }
.lkv-float-call { background: #16A34A; }
.lkv-float-share { background: #F97316; }
.lkv-float-more { background: #FFFFFF; color: #0F172A; }

.lkv-float-close {
    width: 64px;
    height: 64px;
    background: #14D6C8;
    color: #07111F;
}

.lkv-float-close svg {
    width: 31px;
    height: 31px;
}

.lkv-mobile-more-item,
.lkv-float-more,
.lkv-float-close,
.lkv-float-sms {
    display: none;
}

.lkv-call-popover {
    position: absolute;
    right: 68px;
    bottom: 66px;
    min-width: 190px;
    padding: 13px 15px;
    border-radius: 18px;
    background: #FFFFFF;
    color: #111827;
    box-shadow: 0 18px 50px rgba(15,23,42,.28);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    opacity: 0;
    visibility: hidden;
    transform: translateX(12px) scale(.96);
    transform-origin: right center;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    pointer-events: none;
}

.lkv-call-popover.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.lkv-call-popover-label {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 700;
    color: #6B7280;
}

.lkv-call-popover a {
    color: #0F172A;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
}

.lkv-share-panel.is-open {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 100000;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
    background: rgba(15,23,42,.52);
}

.lkv-share-panel-box {
    width: min(100%, 420px);
    border-radius: 20px;
    background: #FFFFFF;
    padding: 14px;
    box-shadow: 0 22px 60px rgba(0,0,0,.28);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.lkv-share-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #111827;
}

.lkv-share-close {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #F3F4F6;
    color: #111827;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.lkv-share-option {
    width: 100%;
    min-height: 48px;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    margin-top: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #111827;
    background: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
}

.lkv-share-option svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    color: #0F172A;
}

@media (max-width: 1024px) {
    .lkv-floating-contact {
        right: 18px;
        bottom: 92px;
    }

    .lkv-float-sms,
    .lkv-float-more {
        display: inline-flex;
    }

    .lkv-desktop-item,
    .lkv-call-popover {
        display: none;
    }

    .lkv-floating-contact.is-expanded .lkv-mobile-more-item {
        display: inline-flex;
    }

    .lkv-floating-contact.is-expanded .lkv-float-more {
        display: none;
    }
}

@media (max-width: 390px) {
    .lkv-floating-contact {
        right: 14px;
        bottom: 86px;
        gap: 10px;
    }

    .lkv-float-btn {
        width: 50px;
        height: 50px;
    }

    .lkv-float-btn svg {
        width: 25px;
        height: 25px;
    }

    .lkv-float-close {
        width: 60px;
        height: 60px;
    }
}
