.heart-explosion-wrapper {
    position: relative;
    display: inline-block;
}

.heart-explosion-btn {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    background-color: #ff4081;
    border: none;
    border-radius: 5px;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible; /* Important for particles to be seen outside */
    z-index: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.heart-explosion-btn:hover {
    background-color: #f50057;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 64, 129, 0.4);
}

.heart-explosion-btn:active {
    transform: translateY(0);
}

/* Sizes */
.elementor-size-xs {
    font-size: 12px;
    padding: 8px 16px;
}

.elementor-size-sm {
    font-size: 14px;
    padding: 10px 20px;
}

.elementor-size-md {
    font-size: 16px;
    padding: 12px 24px;
}

.elementor-size-lg {
    font-size: 18px;
    padding: 16px 32px;
}

.elementor-size-xl {
    font-size: 20px;
    padding: 20px 40px;
}

/* Particle Style */
.heart-particle {
    position: absolute;
    top: 50%;
    left: 50%;
    pointer-events: none;
    font-size: 20px;
    opacity: 0;
    z-index: 0;
    transform: translate(-50%, -50%);
}

@keyframes float-up {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(0);
        opacity: 0;
    }
}
