/*.ue-button {*/
/*    background: var(--ue-gradient-primary);*/
/*    color: var(--ue-white);*/
/*    border: none;*/
/*    padding: var(--ue-space-15) var(--ue-space-30);*/
/*    font-size: var(--ue-font-size-16);*/
/*    font-weight: var(--ue-font-weight-semibold);*/
/*    border-radius: var(--ue-radius-8);*/
/*    cursor: pointer;*/
/*    transition: all var(--ue-transition-base);*/
/*    box-shadow: var(--ue-shadow-sm);*/
/*}*/

/*.ue-button:hover {*/
/*    transform: translateY(-2px);*/
/*    box-shadow: var(--ue-shadow-md);*/
/*}*/

/*.ue-button:active {*/
/*    transform: translateY(0);*/
/*}*/

/*.ue-button:focus-visible {*/
/*    outline: 3px solid rgba(65, 156, 220, 0.5);*/
/*    outline-offset: 2px;*/
/*}*/

.ue-button {
    background: var(
            --wp--preset--gradient--primary,
            var(--ue-button-bg)
    );
    color: var(
            --wp--preset--color--base,
            var(--ue-white)
    );
    border: none;
        padding: var(--ue-space-15) var(--ue-space-30);
        font-size: var(--ue-font-size-16);
        font-weight: var(--ue-font-weight-semibold);
        border-radius: var(--ue-radius-8);
        cursor: pointer;
        transition: all var(--ue-transition-base);
        box-shadow: var(--ue-shadow-sm);
}

.ue-button:hover {
    transform: translateY(-2px);
    box-shadow: var(
            --wp--preset--shadow--medium,
            0 4px 10px rgba(0,0,0,0.15)
    );
}

.ue-button:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

.ue-form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--ue-space-15);
    margin-top: var(--ue-space-30);
}

.ue-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--ue-space-8);
    padding: var(--ue-space-15) var(--ue-space-30);
    font-size: var(--ue-font-size-16);
    font-weight: var(--ue-font-weight-semibold);
    border-radius: var(--ue-radius-8);
    border: none;
    cursor: pointer;
    transition: all var(--ue-transition-base);
}

.ue-btn i {
    font-size: var(--ue-font-size-14);
}

.ue-btn-primary {
    background: var(--ue-gradient-primary);
    color: var(--ue-white);
    flex: 1;
    justify-content: center;
}

.ue-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--ue-shadow-sm);
}

.ue-btn-primary:active {
    transform: translateY(0);
}

.ue-btn-primary:focus-visible {
    outline: 3px solid rgba(65, 156, 220, 0.5);
    outline-offset: 2px;
}

.ue-btn-secondary {
    background: var(--ue-gray-400);
    color: var(--ue-gray-950);
    flex: 1;
    justify-content: center;
}

.ue-btn-secondary:hover {
    background: var(--ue-gray-600);
    transform: translateY(-2px);
}

.ue-btn-secondary:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .ue-form-actions {
        gap: var(--ue-space-10);
    }

    .ue-btn {
        padding: var(--ue-space-12) var(--ue-space-20);
        font-size: var(--ue-font-size-15);
    }
}

@media (max-width: 480px) {
    .ue-form-actions {
        flex-direction: column-reverse;
    }

    .ue-btn {
        width: 100%;
    }
}