
:root {
  --bg: #fafafa;
  --bg-alt: #ffffff;
  --text: #1a1a1a;
  --text-muted: #666666;
  --text-light: #999999;
  --accent: #c41e3a;
  --accent-hover: #a31830;
  --border: #e5e5e5;
  --border-light: #f0f0f0;
  --green: #16a34a;
  --green-bg: #f0fdf4;
  --amber: #d97706;
  --amber-bg: #fffbeb;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Newsreader', Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

a { color: var(--text); text-decoration: none; }

/* Header */
header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.logo span { color: var(--accent); }

nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  margin-left: 1.5rem;
}

nav a:hover { color: var(--accent); }

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  padding: 4rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto 1.5rem;
}

.hero-cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--text);
  color: white;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-cta:hover { background: #333; }

/* Featured */
.featured {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.5rem;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
}

.section-header a {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.featured-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.featured-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(196,30,58,0.08);
}

.featured-card-img {
  height: 180px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.featured-card-img img {
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
}

.featured-card-body { padding: 1.25rem; }

.featured-card-category {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.featured-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.featured-card-pick {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.featured-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-light);
}

.featured-card-lifespan {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Editorial */
.editorial {
  background: var(--bg-alt);
  padding: 4rem 1.5rem;
  margin: 2rem 0;
}

.editorial-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.editorial-content h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.editorial-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.editorial-content a {
  color: var(--accent);
  font-weight: 600;
}

.editorial-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.editorial-stat {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg);
  border-radius: 12px;
}

.editorial-stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.editorial-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Categories */
.categories {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.quick-nav {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 3rem;
}

.quick-nav h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.quick-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.quick-nav-links a {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  background: var(--bg);
  border-radius: 6px;
  font-weight: 500;
}

.quick-nav-links a:hover {
  background: var(--text);
  color: white;
}

.category-section { margin-bottom: 4rem; }

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.category-header h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.category-header span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.category-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.item-list { display: flex; flex-direction: column; }

.item-row {
  display: grid;
  grid-template-columns: 1fr 240px 100px;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.15s;
}

.item-row:hover {
  background: var(--bg-alt);
  margin: 0 -1rem;
  padding: 0.9rem 1rem;
  border-radius: 8px;
}

.item-name { font-weight: 600; font-size: 0.95rem; }
.item-pick { font-size: 0.85rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.item-lifespan { font-size: 0.8rem; color: var(--text-light); text-align: right; }

/* Category Page */
.cat-hero {
  background: var(--bg-alt);
  padding: 3rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.cat-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.cat-hero .breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.cat-hero .breadcrumb a { color: var(--text-muted); }
.cat-hero .breadcrumb a:hover { color: var(--accent); }

.cat-hero h1 {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cat-hero p { color: var(--text-muted); }

.cat-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.subcat-section { margin-bottom: 3rem; }

.subcat-section h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-light);
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}

.item-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  gap: 1rem;
  transition: border-color 0.15s;
}

.item-card:hover { border-color: var(--accent); }

.item-card-img {
  width: 80px;
  height: 80px;
  background: #f5f5f5;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.item-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.item-card-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.item-card-info .winner {
  font-size: 0.8rem;
  color: var(--accent);
}

/* Item Page */
main {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }

.page-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.page-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-hero-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.page-hero-meta-item { display: flex; flex-direction: column; }

.page-hero-meta-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
}

.page-hero-meta-value {
  font-size: 1.1rem;
  font-weight: 600;
}

.page-hero-summary {
  font-size: 1rem;
  color: var(--text-muted);
}

.page-hero-visual {
  background: #f8f8f8;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  overflow: hidden;
}

.page-hero-visual img {
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.winner-section { margin-bottom: 3rem; }

.winner-card {
  background: var(--bg-alt);
  border: 2px solid var(--accent);
  border-radius: 16px;
  overflow: hidden;
}

.winner-card-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
}

.winner-card-img {
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.winner-card-img img {
  max-width: 100%;
  max-height: 200px;
  object-fit: contain;
}

.winner-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.winner-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.winner-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.buy-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: white;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-right: 0.75rem;
  margin-bottom: 0.5rem;
}

.buy-btn:hover { background: var(--accent-hover); }

.buy-btn.secondary {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
}

.buy-btn.secondary:hover { background: var(--border-light); }

.alternatives-section { margin-bottom: 3rem; }

.alternatives-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.alt-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.alt-card-img {
  height: 120px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alt-card-img img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
}

.alt-card-body { padding: 1.25rem; }

.alt-card-badge {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.alt-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.alt-card-footer {
  display: flex;
  gap: 0.5rem;
}

.alt-card-footer .btn {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.related-section {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 3rem;
}

.related-section h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.related-item {
  display: block;
  padding: 1rem;
  background: var(--bg);
  border-radius: 8px;
  text-align: center;
  transition: background 0.15s;
}

.related-item:hover { background: var(--border-light); }

.related-item-name {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Footer */
footer {
  background: var(--text);
  color: white;
  padding: 4rem 1.5rem 2rem;
  margin-top: 4rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.footer-links h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.5);
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.5rem;
}

.footer-links a:hover { color: white; }

.footer-bottom {
  max-width: 1100px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 900px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .editorial-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .alternatives-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .hero h1 { font-size: 2rem; }
  .featured-grid { grid-template-columns: 1fr; }
  .editorial-stats { grid-template-columns: 1fr; }
  .page-hero { grid-template-columns: 1fr; gap: 2rem; }
  .page-hero-visual { order: -1; min-height: 200px; }
  .winner-card-inner { grid-template-columns: 1fr; }
  .winner-card-img { height: 150px; }
  .item-row { grid-template-columns: 1fr; gap: 0.25rem; }
  .item-pick, .item-lifespan { text-align: left; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  nav { display: none; }
}
