/* ==================== PRICE ESTIMATOR WIDGET ==================== */
.estimator-card {
    padding: 40px;
    background: linear-gradient(145deg, var(--surface-2), var(--surface));
    border: 1px solid var(--line-gold);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.estimator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

.form-group label {
    display: block;
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-select, .form-input {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    color: var(--text);
    background: var(--surface-3);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: var(--transition);
}

.form-select:focus, .form-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-wash);
}

.estimate-result {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px;
    background: var(--gold-wash);
    border: 1px solid var(--line-gold);
    border-radius: var(--radius);
}

.estimate-amount {
    font-size: 32px;
    font-weight: 900;
    color: var(--gold-light);
}

