/* air-fryer-converter — extracted from inline <style> */
.evvy-food-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.evvy-food-chip-row .evvy-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  padding: 0.4rem 0.75rem;
}
.evvy-food-chip-row .evvy-chip i {
  font-size: 1rem;
}
.evvy-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.evvy-stat-card {
  background: var(--evvy-surface, #f8f9fa);
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  text-align: center;
}
.evvy-stat-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--evvy-text-secondary, #666);
  margin-bottom: 0.25rem;
}
.evvy-stat-card-value {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cluster-dark, #7C4A1A);
}
.evvy-comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.875rem;
}
.evvy-comparison-table th,
.evvy-comparison-table td {
  padding: 0.625rem 0.75rem;
  text-align: center;
  border-bottom: 1px solid var(--evvy-border, #dee2e6);
}
.evvy-comparison-table thead th {
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--evvy-text-secondary, #666);
  background: var(--evvy-surface, #f8f9fa);
}
.evvy-comparison-table tbody td:first-child {
  font-weight: 600;
  text-align: left;
  color: var(--evvy-text-secondary, #666);
}
.evvy-comparison-table .evvy-col-highlight {
  background: color-mix(in srgb, var(--cluster-dark, #7C4A1A) 6%, transparent);
  font-weight: 700;
  color: var(--cluster-dark, #7C4A1A);
}
.evvy-callout {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--evvy-surface, #f8f9fa);
  border-left: 4px solid var(--cluster-dark, #7C4A1A);
  border-radius: 0 0.75rem 0.75rem 0;
  padding: 1rem 1.125rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.55;
}
.evvy-callout i {
  font-size: 1.25rem;
  color: var(--cluster-dark, #7C4A1A);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.evvy-energy-section {
  margin-top: 1.25rem;
}
.evvy-energy-section .evvy-input-section {
  margin-top: 0.75rem;
}
.evvy-unit-toggle {
  display: inline-flex;
  gap: 0.35rem;
  margin-left: 0.5rem;
}
.evvy-unit-toggle .evvy-chip {
  padding: 0.2rem 0.625rem;
  font-size: 0.75rem;
}

/* Dark mode */
[data-bs-theme="dark"] .evvy-stat-card {
  background: var(--evvy-surface-dark, #1e1e1e);
}
[data-bs-theme="dark"] .evvy-callout {
  background: var(--evvy-surface-dark, #1e1e1e);
}
[data-bs-theme="dark"] .evvy-comparison-table thead th {
  background: var(--evvy-surface-dark, #1e1e1e);
}
[data-bs-theme="dark"] .evvy-comparison-table .evvy-col-highlight {
  background: color-mix(in srgb, var(--cluster-dark, #7C4A1A) 15%, transparent);
}

/* Mobile */
@media (max-width: 575.98px) {
  .evvy-food-chip-row {
    gap: 0.375rem;
  }
  .evvy-food-chip-row .evvy-chip {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }
  .evvy-stat-card-value {
    font-size: 1.15rem;
  }
  .evvy-comparison-table {
    font-size: 0.8rem;
  }
  .evvy-comparison-table th,
  .evvy-comparison-table td {
    padding: 0.5rem 0.4rem;
  }
}
