/* Calculator styles */
.calc-wrap { max-width: 700px; margin: 0 auto; }
.calc-section { margin-bottom: 2rem; }
.calc-section h3 { margin-bottom: 1rem; color: var(--brand); font-size: 1rem; }
.calc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.calc-grid label { display: block; font-size: 0.9rem; font-weight: 500; color: var(--mid); }
.calc-grid input { display: block; width: 100%; margin-top: 0.25rem; padding: 0.75rem; border: 1px solid #ddd; border-radius: var(--radius); font-size: 1.1rem; font-family: inherit; }
.calc-grid input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(45,80,22,0.1); }
.calc-section select { width: 100%; padding: 0.75rem; border: 1px solid #ddd; border-radius: var(--radius); font-size: 0.95rem; font-family: inherit; }
.calc-section select:focus { outline: none; border-color: var(--brand); }
.calc-note { font-size: 0.8rem; color: #999; margin-top: 0.5rem; }
.calc-results { background: var(--light); border-radius: var(--radius); padding: 1.5rem; margin: 2rem 0; }
.result-row { display: flex; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid #e5e5e5; }
.result-row:last-child { border-bottom: none; }
.result-row span { color: var(--mid); }
.result-row strong { color: var(--dark); font-size: 1.1rem; }
.result-total { border-top: 2px solid var(--brand); margin-top: 0.5rem; padding-top: 1rem; }
.result-total strong { color: var(--brand); font-size: 1.4rem; }
.calc-disclaimer { font-size: 0.75rem; color: #999; font-style: italic; text-align: center; }

@media (max-width: 480px) {
  .calc-grid { grid-template-columns: 1fr; }
}
