/* Floating Buttons Container */
.tel-wa-buttons-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Base Button Styles */
.tel-wa-btn {
    position: relative;
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff !important;
    text-decoration: none !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    cursor: pointer;
    outline: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tel-wa-btn:focus-visible {
    outline: 3px solid #005a87;
    outline-offset: 2px;
}

.tel-wa-btn:hover {
    transform: scale(1.08) translateY(-3px);
}

.tel-wa-btn:active {
    transform: scale(0.95) translateY(0);
}

/* Full SVG Icon Styles */
.tel-wa-icon-full {
    width: 56px;
    height: 56px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
    transition: filter 0.3s ease;
}

.tel-wa-btn:hover .tel-wa-icon-full {
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
}

/* Tooltips */
.tel-wa-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background-color: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

/* Tooltip Arrow */
.tel-wa-tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    border-width: 5px 0 5px 5px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(30, 30, 30, 0.9);
}

.tel-wa-btn:hover .tel-wa-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    visibility: visible;
}

/* Responsive / Mobile Design */
@media screen and (max-width: 768px) {
    .tel-wa-buttons-container {
        bottom: 16px;
        right: 16px;
        gap: 10px;
    }

    .tel-wa-btn {
        width: 50px;
        height: 50px;
    }

    .tel-wa-icon-full {
        width: 50px;
        height: 50px;
    }

    /* Hide tooltips on mobile/touch screens to prevent overlay clutter */
    .tel-wa-tooltip {
        display: none;
    }
}
