/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: center;
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background: var(--color-primary);
    color: #FFFFFF;
    border: none;
    height: 48px;
}

.btn-primary:hover {
    background: #0f4022; /* slightly darker green */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 83, 45, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
    height: 48px;
}

.btn-outline:hover {
    background: var(--color-bg-main);
    color: var(--color-text-primary);
    border-color: #d1d5db;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    height: 38px;
}

.w-100 {
    width: 100%;
}
