/* ============================
   BREED COMPARISON PAGE STYLES
   ============================ */

/* Hero */
.cmp-hero {
  text-align: center;
  padding: var(--sp-3xl) var(--sp-lg) var(--sp-2xl);
  background: linear-gradient(135deg, rgba(255,160,50,.08) 0%, rgba(120,80,255,.08) 100%);
  border-bottom: 1px solid var(--clr-border);
}
.cmp-hero-inner { max-width: 800px; margin: 0 auto; }
.cmp-hero-thumbs { display: flex; align-items: center; justify-content: center; gap: var(--sp-lg); margin-bottom: var(--sp-md); }
.cmp-hero-thumb { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 4px solid rgba(255,255,255,.2); box-shadow: 0 4px 16px rgba(0,0,0,.25); }
.cmp-hero-vs { background: linear-gradient(135deg, #ff6b2b, #e84393); color: #fff; font-weight: 900; font-size: 1.2rem; width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,.2); }
@media (max-width: 640px) { .cmp-hero-thumb { width: 80px; height: 80px; } .cmp-hero-vs { width: 36px; height: 36px; font-size: 0.9rem; } }
.cmp-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ffa032, #ff6b2b);
  color: #fff;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: var(--fs-sm);
  font-weight: 700;
  margin-bottom: var(--sp-md);
}
.cmp-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: var(--sp-md);
}
.cmp-vs {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b2b, #e84393);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.8em;
  margin: 0 8px;
}
.cmp-subtitle {
  font-size: var(--fs-base);
  color: var(--clr-text-dim);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Comparison Table */
.cmp-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-lg) 0;
  background: var(--clr-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.cmp-table thead {
  background: linear-gradient(135deg, rgba(255,160,50,.15), rgba(120,80,255,.1));
}
.cmp-table th {
  padding: 16px 20px;
  font-weight: 700;
  font-size: var(--fs-sm);
  text-align: center;
}
.cmp-table th:first-child { text-align: left; width: 25%; }
.cmp-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--clr-border);
  font-size: var(--fs-sm);
  line-height: 1.6;
}
.cmp-label {
  font-weight: 600;
  color: var(--clr-text);
}
.cmp-val {
  text-align: center;
  color: var(--clr-text-dim);
}
.cmp-table tbody tr:hover {
  background: rgba(255,160,50,.04);
}
.cmp-table tbody tr:last-child td { border-bottom: none; }

/* Guide link */
.cmp-guide-link {
  display: inline-block;
  margin-top: var(--sp-sm);
  color: var(--clr-accent);
  font-weight: 600;
  font-size: var(--fs-sm);
  text-decoration: none;
  transition: opacity .2s;
}
.cmp-guide-link:hover { opacity: .8; }

/* Light mode */
html[data-theme="light"] .cmp-hero {
  background: linear-gradient(135deg, rgba(255,160,50,.06) 0%, rgba(120,80,255,.06) 100%);
}
html[data-theme="light"] .cmp-table {
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}

/* Mobile */
@media (max-width: 768px) {
  .cmp-table th, .cmp-table td { padding: 10px 12px; font-size: 0.85rem; }
  .cmp-title { font-size: 1.6rem; }
}
