:root{
  --teal:#46c6cf;
  --yellow:#ffd233;
  --bg:#f3f5f4;
  --text:#3b3b3b;
  --muted:#8a8a8a;
  --card:#ffffff;
  --shadow:0 8px 24px rgba(0,0,0,.08);
  --radius:18px;
  --max:1100px;
}
*{box-sizing:border-box}
body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:var(--text);background:#fff}
a{color:inherit;text-decoration:none}
header{
  background:var(--teal);
  color:#fff;
  padding:18px 0;
  position:sticky;top:0;z-index:10;
}
.nav{
  max-width:var(--max);
  margin:0 auto;
  padding:0 22px;
  display:flex;align-items:center;justify-content:space-between;
}
.brand{font-weight:700;letter-spacing:.4px}
.menu{display:flex;gap:18px;font-weight:600;opacity:.95}
.hero{
  position:relative;
  padding:44px 22px 18px;
}
.logoWrap {
  width: 200px;
  height: 200px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.logoWrap img {
  width: auto;
  height: 200px;
  max-width: none
  display: block;
}

}

.logoWrap img:hover {
  transform: scale(1.05);
}



.searchRow {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 700px;
}
.searchRow input{
  flex:1;
  padding:18px 18px;
  border:2px solid #d7dbda;
  border-right:none;
  border-radius:999px 0 0 999px;
  font-size:18px;
  outline:none;
}
.searchRow button{
  padding:16px 30px;
  border:none;
  border-radius:0 999px 999px 0;
  background:var(--yellow);
  font-weight:800;
  cursor:pointer;
  font-size:18px;
}
.panel{
  background:var(--bg);
  padding:26px 0;
}
.grid3{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}
.card{
  background:var(--card);
  border-radius:var(--radius);
  padding:18px 18px;
  box-shadow:var(--shadow);
}
.card h3{margin:0 0 10px;font-size:16px;color:#4b4b4b}
.list{margin:0;padding:0;list-style:none;display:grid;gap:10px}
.list a{color:var(--muted);font-weight:600}
.badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 12px;border-radius:999px;font-weight:800;
  background:#eef3f2;color:#2d2d2d;
}
.badge.toxic{background:#ffe9ea;color:#a11a22}
.badge.caution{background:#fff5d6;color:#7a5400}
.badge.safe{background:#e7fbef;color:#1f6b3a}
.detail{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap:26px;
  align-items:start;
  padding:30px 0 52px;
}
.bigDog{
  display:flex;justify-content:center;align-items:center;
}
.bigDog img{width:220px;height:220px;filter:drop-shadow(0 10px 18px rgba(0,0,0,.12))}
.verdict{
  font-size:54px;font-weight:900;margin:0;line-height:1;
}
.kv{margin:10px 0 0;color:var(--muted);font-weight:650}
.checks{margin:18px 0 16px;display:grid;gap:10px}
.checkline{display:flex;align-items:center;gap:10px;font-weight:750}
.check{
  width:18px;height:18px;border-radius:4px;
  display:inline-flex;align-items:center;justify-content:center;
  font-size:14px;color:#fff;font-weight:900;
}
.check.ok{background:#2ca75b}
.check.no{background:#c73b3b}
.sectionTitle{margin:18px 0 8px;font-weight:900}
.p{margin:0;color:var(--muted);line-height:1.55}
.small{font-size:13px}
.footer{padding:30px 0;color:var(--muted);font-size:13px;border-top:1px solid #eef0ef}
@media (max-width:900px){
  .grid3{grid-template-columns:1fr}
  .detail{grid-template-columns:1fr}
  header{position:static}
}
/* TEMP: hide cooked/raw block everywhere */
.checks,
.checkline,
.checks * {
  display: none !important;
}
#food-name {
  font-size: 2rem; /* adjust as you like */
  margin: 0.25rem 0 0.5rem;
}