.lcp-container {
    position: fixed;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999999;
}
.lcp-left { left: 20px; }
.lcp-right { right: 20px; }
.lcp-btn {
    width: var(--lcp-size, 50px);
    height: var(--lcp-size, 50px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background-color: #fff;
    text-decoration: none;
    cursor: pointer;
}
.lcp-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}
.lcp-btn img {
    width: 55%;
    height: 55%;
    object-fit: contain;
}
/* Default branding if transparent icons are uploaded */
.lcp-whatsapp { background-color: #25D366; }
.lcp-phone { background-color: #007bff; }
.lcp-telegram { background-color: #0088cc; }
