.smoker-intro {
  padding: 56px 0 8px;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, var(--lighter-background), var(--background) 70%);
}

.smoker-intro h1 {
  color: var(--foreground);
  font-size: 2rem;
  margin-bottom: 8px;
}

.smoker-intro .tagline {
  color: var(--light-foreground);
  font-size: 0.95rem;
}

.smoker-panel {
  padding: 40px 0 80px;
}

.smoker-form {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}

.field {
  margin-bottom: 16px;
  text-align: left;
}

.field label {
  display: block;
  color: var(--light-foreground);
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.field input {
  width: 100%;
  background: var(--dark-background);
  color: var(--foreground);
  border: 1px solid var(--muted);
  border-radius: 8px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 1rem;
}

.field input:focus {
  outline: none;
  border-color: var(--accent);
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  color: var(--light-foreground);
  font-size: 0.85rem;
  line-height: 1.4;
  cursor: pointer;
  margin-bottom: 4px;
}

.checkbox-field input {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--accent);
  cursor: pointer;
}

#calc-btn {
  display: block;
  margin: 20px auto 0;
  background: var(--accent);
  color: var(--dark-background);
  border: none;
  border-radius: 999px;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease;
}

#calc-btn:hover {
  transform: scale(1.05);
}

.range-warning {
  margin-top: 12px;
  color: var(--accent);
  font-size: 0.8rem;
}

.smoker-result {
  max-width: 500px;
  margin: 28px auto 0;
  background: var(--lighter-background);
  border: 1px solid var(--muted);
  border-radius: 12px;
  padding: 8px 20px;
}

.smoker-table {
  width: 100%;
  border-collapse: collapse;
}

.smoker-table th {
  text-align: left;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 12px 4px 8px;
  border-bottom: 1px solid var(--muted);
}

.smoker-table td {
  padding: 12px 4px;
  border-bottom: 1px solid var(--muted);
  color: var(--light-foreground);
  font-size: 0.9rem;
}

.smoker-table tr:last-child td {
  border-bottom: none;
}

.smoker-table td:first-child {
  color: var(--foreground);
  font-weight: 700;
  white-space: nowrap;
}

.smoker-table td:last-child {
  color: var(--accent);
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.smoker-note {
  max-width: 560px;
  margin: 28px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}
