/* =========================================
   BUTTON WIDGETS
   ========================================= */

.base-button-standard {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-sm);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    border: none;
    outline: none;
    text-decoration: none;
    background: var(--gradient-brand);
    color: var(--color-text-inverse);
    box-shadow: var(--shadow-md);
}

.base-button-standard:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.base-button-lg {
    padding: 1rem 2rem;
    font-size: var(--font-size-base);
}

.base-button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-sm);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    outline: none;
    text-decoration: none;
    background: var(--gradient-brand);
    color: var(--color-text-inverse);
    box-shadow: var(--shadow-md);
}

.base-button-primary:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.base-button-secondary {
    background: var(--color-surface);
    color: var(--color-primary);
    border: 1px solid var(--color-border);
}

.base-button-secondary:hover {
    background: var(--color-surface-hover);
    border-color: var(--color-border-highlight);
    transform: scale(1.02);
}

.base-button-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-sm);
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease;
    border: none;
    outline: none;
    text-decoration: none;
    background: transparent;
    color: var(--color-text-muted);
}

.base-button-ghost:hover {
    color: var(--color-primary);
    background-color: var(--color-surface-hover);
}

.base-button-delete {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-sm);
    cursor: pointer;
    border: 1px solid var(--color-error);
    background: var(--color-surface);
    color: var(--color-error);
    transition: all 0.2s ease;
}

.base-button-delete:hover {
    background: var(--color-error);
    color: var(--color-text-inverse);
}

.base-button-primary-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: var(--font-size-base);
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    outline: none;
    text-decoration: none;
    background: var(--gradient-brand);
    color: var(--color-text-inverse);
    box-shadow: var(--shadow-md);
}

.base-button-primary-lg:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.base-button-secondary-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: var(--font-size-base);
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    outline: none;
    text-decoration: none;
    background: var(--color-surface);
    color: var(--color-primary);
    border: 1px solid var(--color-border);
}

.base-button-secondary-lg:hover {
    background: var(--color-surface-hover);
    border-color: var(--color-border-highlight);
    transform: scale(1.02);
}

.base-button-ghost-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: var(--font-size-base);
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    outline: none;
    text-decoration: none;
    background: transparent;
    color: var(--color-text-muted);
}

.base-button-ghost-lg:hover {
    color: var(--color-primary);
    background-color: var(--color-surface-hover);
}