.flash-wa-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999999;
    /* Super high z-index */
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    transform-origin: right bottom;
    line-height: normal;
}

.flash-wa-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 8px;
    border: none;
    outline: none;
}

.flash-wa-cta-bubble {
    background: #000;
    color: var(--brand-gold, #FFD737);
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 12px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;

    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);

    line-height: 1.2;
    letter-spacing: 0.5px;
}

/* Show on hover */
.flash-wa-widget:hover .flash-wa-cta-bubble {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.flash-wa-icon-img {
    width: 40px !important;
    /* Desktop size tiny */
    height: 40px !important;
    min-width: 40px !important;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.flash-wa-widget:hover .flash-wa-icon-img {
    transform: scale(1.05);
}

@keyframes flashFadeIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 600px) {
    .flash-wa-widget {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }

    .flash-wa-cta-bubble {
        font-size: 11px !important;
        padding: 5px 10px;
    }

    .flash-wa-icon-img {
        width: 36px !important;
        /* Mobile size tiny */
        height: 36px !important;
        min-width: 36px !important;
    }
}