/* ===== KALKULAČKA KOMÍNŮ – STYLY ===== */

/* Scope kalkulačky, aby se to netlouklo se šablonou */
.chimney-scope { font-family: Arial, sans-serif; }
.chimney-scope button,
.chimney-scope input,
.chimney-scope label,
.chimney-scope h1,
.chimney-scope h2,
.chimney-scope h3,
.chimney-scope p,
.chimney-scope span {
  font-family: inherit;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.chimney-scope .main-wrapper {
  width: 100%;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #333333;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

.header {
  text-align: center;
  margin-bottom: 3rem;
}

.main-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #c83528;
  margin: 0 0 0.5rem 0;
}

.subtitle {
  font-size: 1.5rem;
  color: #666666;
  margin: 0;
}

.chimney-scope .calculator-card {
  background: #f8f8f8;
  border-radius: 24px;
  padding: 2.5rem;
  border: 2px solid #e0e0e0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-section {
  margin-bottom: 2rem;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #c83528;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.button-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
}

.chimney-scope .option-btn {
  padding: 1.25rem;
  background: #ffffff;
  border: 2px solid #c83528;
  border-radius: 12px;
  color: #c83528;
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.chimney-scope .option-btn:hover {
  background: #fff5f5;
  transform: translateY(-2px);
}

.chimney-scope .option-btn.active {
  background: #c83528;
  color: #ffffff;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

label {
  font-size: 1.5rem;
  color: #666666;
}

.slider-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

input[type="range"] {
  flex: 1;
}

.length-display {
  font-size: 2rem;
  font-weight: 700;
  color: #c83528;
  min-width: 120px;
  text-align: right;
}

.calculate-btn {
  width: 100%;
  padding: 1.5rem;
  background: #c83528;
  border: none;
  border-radius: 16px;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
}

.results {
  display: none;
  margin-top: 2rem;
  padding: 2rem;
  background: #ffffff;
  border: 2px solid #c83528;
  border-radius: 16px;
}

.chimney-scope .results.show {
  display: block;
}

.result-title {
  font-size: 2rem;
  font-weight: 700;
  color: #c83528;
  margin-bottom: 1.5rem;
}

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

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

.result-label {
  font-size: 1.4rem;
  color: #666666;
}

.result-value {
  font-size: 2.4rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .main-title { font-size: 2rem; }
  .subtitle { font-size: 1rem; }
  .calculator-card { padding: 1.5rem; }
}
/* ===== NASTAVENÍ VELIKOSTÍ PÍSMA ===== */

/* Hlavní nadpis */
.chimney-scope .main-title {
  font-size: 2,8rem;   /* změň podle chuti */
}

/* Podnadpis */
.chimney-scope .subtitle {
  font-size: 1.4rem;
}

/* Nadpisy sekcí (Typ komínu, Průměr…) */
.chimney-scope .section-title {
  font-size: 1.5rem;
}

/* Popisky (Výška komínu, Vzdálenost…) */
.chimney-scope label {
  font-size: 1.3rem;
}

/* Tlačítka (BLK, průměry…) */
.chimney-scope .option-btn {
  font-size: 1.2rem;
}

/* Tlačítko Spočítat cenu */
.chimney-scope .calculate-btn {
  font-size: 1.3rem;
}

/* Hodnoty ve výsledcích */
.chimney-scope .result-value {
  font-size: 2rem;
}

/* CELKOVÁ CENA (nejdůležitější) */
.chimney-scope #totalCostWithVAT {
  font-size: 2rem;
  font-weight: 800;
}
.chimney-scope .result-value {
  font-size: 1.6rem !important;
  line-height: 1.1 !important;
}

.chimney-scope #totalCost {
  font-size: 1.8rem !important;
}
