/* Floating container setup */
.floating-actions-container-d1c2649c {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 99999;
    direction: ltr; /* Keeps buttons in vertical stack correctly */
}

/* Base style for buttons */
.floating-btn-d1c2649c {
    position: relative;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    cursor: pointer;
}

/* Specific colors */
.floating-btn-d1c2649c.whatsapp-btn {
    background-color: #25D366;
    animation: float-bounce-d1c2649c 3s ease-in-out infinite;
}

.floating-btn-d1c2649c.store-btn {
    background-color: #7c3aed; /* Brand purple */
    animation: float-bounce-d1c2649c 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* Hover effects */
.floating-btn-d1c2649c:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    color: #ffffff;
}

/* Tooltips */
.floating-btn-d1c2649c .tooltip-d1c2649c {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%) scale(0.8);
    background-color: #111827;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Cairo', sans-serif;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.floating-btn-d1c2649c:hover .tooltip-d1c2649c {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

/* Floating animation */
@keyframes float-bounce-d1c2649c {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Adjustments for WP Admin Bar */
body.admin-bar .floating-actions-container-d1c2649c {
    /* Safe-offset just in case it overflows or needs room */
}

/* Mobile responsive adjustments */
@media screen and (max-width: 480px) {
    .floating-actions-container-d1c2649c {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .floating-btn-d1c2649c {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    .floating-btn-d1c2649c .tooltip-d1c2649c {
        display: none; /* Hide tooltips on mobile to avoid layout breaking */
    }
}
