.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-lg);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-sm);
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
}

/* Mobile touch targets */
@media (max-width: 767px) {
    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
        min-height: 44px;
    }
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-forest-dark);
}

.btn-primary:hover {
    filter: brightness(1.1);
}

.btn-secondary-inverse {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-secondary-inverse:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-ghost {
    background-color: transparent;
    color: var(--color-text);
}

.btn-search {
    background-color: var(--color-primary);
    color: var(--color-forest-dark);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: var(--radius-sm);
}

.btn-search:hover {
    filter: brightness(1.1);
}