.result {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--light);
    border-radius: var(--border-radius);
    display: none;
}

.result.active {
    display: block;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.result-item:last-child {
    border-bottom: none;
}

.result-label {
    font-weight: 500;
}

.result-value {
    font-weight: bold;
    color: var(--primary);
}

.total-profit {
    font-size: 1.2rem;
    margin-top: 1rem;
    text-align: center;
    font-weight: bold;
    color: var(--accent);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}