/* Base button styles */
.wpiko-buttonflow-button {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    font-family: inherit;
    line-height: 1.5;
    margin: 10px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover effects */
.wpiko-buttonflow-button:hover {
    background-color: var(--hover-color);
}

/* Animation: Slide Up */
.wpiko-buttonflow-animation-slide {
    transform: translateY(0);
}

.wpiko-buttonflow-animation-slide:hover {
    transform: translateY(-5px);
}

/* Animation: Scale */
.wpiko-buttonflow-animation-scale {
    transform: scale(1);
}

.wpiko-buttonflow-animation-scale:hover {
    transform: scale(1.05);
}

/* Animation: Fade */
.wpiko-buttonflow-animation-fade {
    opacity: 1;
}

.wpiko-buttonflow-animation-fade:hover {
    opacity: 0.8;
}

/* Animation: Pulse */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.wpiko-buttonflow-animation-pulse:hover {
    animation: pulse 1s infinite;
}

/* Active state */
.wpiko-buttonflow-button:active {
    transform: translateY(1px);
}

/* Responsive adjustments */
@media screen and (max-width: 600px) {
    .wpiko-buttonflow-button {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
}
