/* ==================================================
   BASIC JUDO - BUTTONS
================================================== */

/* 01 - Base Button
-------------------------------------------------- */

.bj-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    min-height: 54px;
    padding: 0 28px;

    border-radius: var(--bj-radius-sm);

    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.045em;
    text-transform: uppercase;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

.bj-btn:hover {
    transform: translateY(-2px);
}

/* 02 - Primary
-------------------------------------------------- */

.bj-btn-primary {
    color: var(--bj-white);
    background: linear-gradient(
        135deg,
        var(--bj-red),
        var(--bj-red-dark)
    );

    box-shadow: 0 18px 45px rgba(193, 18, 31, 0.32);
}

.bj-btn-primary:hover {
    box-shadow: 0 22px 55px rgba(193, 18, 31, 0.40);
}

/* 03 - Outline
-------------------------------------------------- */

.bj-btn-outline {
    color: var(--bj-white);

    border: 1px solid rgba(212, 175, 55, 0.55);

    background: transparent;
}

.bj-btn-outline:hover {
    background: rgba(212, 175, 55, 0.14);
}

/* 04 - Disabled
-------------------------------------------------- */

.bj-btn:disabled,
.bj-btn[disabled] {
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
    box-shadow: none;
}