.wwp-button-container {
    margin: 25px 0;
}

form.cart+.wwp-button-container {
    margin-top: 10px;
}

.wwp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--wwp-color, #25D366);
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
    border: none;
    gap: 12px;
}

.wwp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px 0 rgba(0, 0, 0, 0.15);
    color: #fff;
    opacity: 0.9;
}

.wwp-button:active {
    transform: translateY(-1px);
}

.wwp-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wwp-button-icon svg {
    width: 22px;
    height: 22px;
}

.wwp-error {
    color: #e53e3e;
    font-size: 14px;
    margin-top: 10px;
    font-style: italic;
}

/* Animations */
@keyframes wwp-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Pulse animation can be added here if desired */