/* CookersWay - Generated 2026-03-25 */
:root {
  --primary: #FF5722;
  --secondary: #FFC107;
  --accent: #4CAF50;
  --bg: #ffffff;
  --bg-alt: #f8f9fa;
  --text: #1a1a2e;
  --text-light: #6c757d;
  --border: #e9ecef;
  --radius: 12px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --max-w: 1200px;
  --transition: all 0.2s ease;
}
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: var(--text); line-height: 1.6; background: var(--bg); }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { opacity: 0.85; }
img { max-width: 100%; height: auto; }

/* Layout */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Header */
.site-header {
  background: rgba(255,255,255,0.94);
  border-bottom: 1px solid rgba(255,87,34,0.12);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 26px rgba(15,23,42,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-size: 1.28rem;
  font-weight: 900;
  letter-spacing: -0.035em;
  color: #111827;
}
.logo::before {
  content: '🍳';
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff5722, #ffc107);
  box-shadow: 0 8px 22px rgba(255,87,34,0.24);
  font-size: 1rem;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  list-style: none;
  min-width: 0;
  padding: 7px;
  border: 1px solid rgba(255,87,34,0.14);
  border-radius: 999px;
  background: linear-gradient(180deg, #fffaf3 0%, #ffedd5 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.92),
    inset 0 -1px 0 rgba(255,87,34,0.10),
    0 10px 28px rgba(124,45,18,0.08);
  overflow: hidden;
}
.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  color: #2f2a25;
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: -0.01em;
  line-height: 1;
  padding: 11px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #fff7ed 55%, #fed7aa 100%);
  border: 1px solid rgba(234,88,12,0.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.96),
    inset 0 -1px 0 rgba(154,52,18,0.10),
    0 4px 0 rgba(194,65,12,0.18),
    0 10px 18px rgba(124,45,18,0.10);
  transform: translateY(0);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  top: 5px;
  height: 1px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
}
.nav a:hover {
  color: #ea580c;
  background: linear-gradient(180deg, #ffffff 0%, #fff3e0 55%, #fdba74 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -1px 0 rgba(154,52,18,0.12),
    0 6px 0 rgba(194,65,12,0.22),
    0 15px 24px rgba(124,45,18,0.16);
  transform: translateY(-2px);
  opacity: 1;
}
.nav a:active {
  transform: translateY(1px);
  box-shadow:
    inset 0 2px 5px rgba(124,45,18,0.16),
    0 2px 0 rgba(194,65,12,0.16),
    0 6px 14px rgba(124,45,18,0.10);
}
@media (max-width: 980px) {
  .header-inner { align-items: flex-start; flex-direction: column; gap: 10px; }
  .nav { width: 100%; justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
  .nav::-webkit-scrollbar { display: none; }
}
@media (max-width: 640px) {
  .site-header { padding: 8px 0; }
  .header-inner { padding: 0 14px; }
  .logo { font-size: 1.15rem; }
  .logo::before { width: 30px; height: 30px; border-radius: 10px; }
  .nav a { font-size: 0.8rem; padding: 9px 10px; }
  .nav li:nth-child(n+5) { display: none; }
}

/* Hero */
.hero { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; padding: 80px 0; text-align: center; }
.hero h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 16px; }
.hero p { font-size: 1.2rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }

/* Cards */
.card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: var(--transition); }
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.card-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.card-desc { color: var(--text-light); font-size: 0.9rem; }

/* Category Cards */
.cat-card { text-align: center; padding: 32px 20px; }
.cat-icon { font-size: 2.5rem; margin-bottom: 12px; }
.cat-label { font-weight: 700; font-size: 1rem; }
.cat-count { color: var(--text-light); font-size: 0.85rem; margin-top: 4px; }

/* Review Cards */
.review-card { display: flex; gap: 20px; align-items: flex-start; }
.review-card .brand-logo { width: 80px; height: 80px; border-radius: 12px; object-fit: contain; background: var(--bg-alt); padding: 8px; flex-shrink: 0; }
.review-card .info { flex: 1; }
.review-card .brand-name { font-size: 1.1rem; font-weight: 700; }
.review-card .brand-cat { color: var(--text-light); font-size: 0.85rem; }
.review-card .score { background: var(--primary); color: white; font-weight: 800; font-size: 1.2rem; padding: 8px 14px; border-radius: 8px; min-width: 48px; text-align: center; }

/* Score Bar */
.score-bar { height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; margin: 4px 0; }
.score-bar .fill { height: 100%; background: var(--primary); border-radius: 4px; transition: width 0.5s ease; }

/* Buttons */
.btn { display: inline-block; padding: 12px 28px; border-radius: 8px; font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: var(--transition); border: none; }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { opacity: 0.9; color: white; }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }

/* Footer */
.site-footer { background: var(--text); color: #adb5bd; padding: 48px 0 24px; margin-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-title { color: white; font-weight: 700; margin-bottom: 12px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #adb5bd; font-size: 0.9rem; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid #343a40; padding-top: 24px; text-align: center; font-size: 0.85rem; }

/* Review Page */
.review-hero { padding: 48px 0; background: var(--bg-alt); }
.review-hero h1 { font-size: 2rem; }
.review-meta { color: var(--text-light); font-size: 0.9rem; margin-top: 8px; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0; }
@media (max-width: 768px) { .pros-cons { grid-template-columns: 1fr; } }
.pros { border-left: 4px solid #4CAF50; padding-left: 16px; }
.cons { border-left: 4px solid #f44336; padding-left: 16px; }
.pros h3 { color: #4CAF50; }
.cons h3 { color: #f44336; }
.pros li, .cons li { margin: 8px 0; font-size: 0.95rem; }

/* Score Dimensions */
.score-dims { margin: 24px 0; }
.score-dim { display: flex; align-items: center; gap: 12px; margin: 12px 0; }
.score-dim .label { width: 140px; font-weight: 500; font-size: 0.9rem; }
.score-dim .bar { flex: 1; }
.score-dim .val { font-weight: 700; width: 40px; text-align: right; }

/* Comparison Table */
.comp-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.comp-table th, .comp-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.comp-table th { background: var(--bg-alt); font-weight: 600; font-size: 0.9rem; }
.comp-table tr:hover { background: var(--bg-alt); }

/* Trust Box */
.trust-box { background: var(--bg-alt); border-radius: var(--radius); padding: 20px; margin: 24px 0; display: flex; gap: 16px; align-items: center; }
.trust-icon { font-size: 2rem; }
.trust-text { font-size: 0.9rem; color: var(--text-light); }
.trust-text strong { color: var(--text); }

/* Breadcrumb */
.breadcrumb { padding: 12px 0; font-size: 0.85rem; color: var(--text-light); }
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--primary); }
