.wa-container-40607323 {
    position: fixed !important;
    bottom: 30px !important;
    left: 30px !important;
    right: auto !important;
    z-index: 99999 !important;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

.wa-btn-40607323 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #0D8575; /* Website main brand green */
    color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(13, 133, 117, 0.4);
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.wa-btn-40607323:hover {
    transform: scale(1.08);
    background-color: #6B705C; /* Website Secondary brand green/olive */
    color: #ffffff;
}

.wa-icon-40607323 {
    width: 32px;
    height: 32px;
    z-index: 2;
}

/* Pulse animation */
.wa-pulse-40607323 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background-color: rgba(13, 133, 117, 0.4);
    z-index: 1;
}

.wa-pulse-40607323.dynamic {
    animation: wa-pulse-anim-40607323 2s infinite ease-out;
}

@keyframes wa-pulse-anim-40607323 {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Tooltip positioned on the right of the button */
.wa-tooltip-40607323 {
    position: absolute;
    left: 75px !important;
    right: auto !important;
    background: #ffffff;
    color: #2E3028; /* Website title/dark color */
    padding: 8px 14px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-15px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.4;
}

/* Arrow for tooltip */
.wa-tooltip-40607323::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -6px !important;
    right: auto !important;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #ffffff;
    box-shadow: -3px 3px 3px rgba(0, 0, 0, 0.02);
}

.wa-status-40607323 {
    font-size: 11px;
    color: #0D8575; /* Website green */
    font-weight: bold;
    margin-bottom: 2px;
}

.wa-text-40607323 {
    font-size: 13px;
    font-weight: 500;
}

/* Trigger tooltip on hover */
.wa-btn-40607323:hover .wa-tooltip-40607323 {
    opacity: 1;
    transform: translateX(0);
}

/* Always show tooltip on desktop, slide in after 2s */
@media (min-width: 768px) {
    .wa-tooltip-40607323 {
        animation: wa-slide-in-tooltip-40607323 0.5s forwards;
        animation-delay: 2.5s;
    }
}

@keyframes wa-slide-in-tooltip-40607323 {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive adjust for mobile */
@media (max-width: 480px) {
    .wa-container-40607323 {
        bottom: 20px !important;
        left: 20px !important;
        right: auto !important;
    }
    .wa-tooltip-40607323 {
        display: none; /* Hide tooltip on small mobiles to avoid overflow */
    }
}
