/* Compare */
/* Comparador (tabla) */
.compare {
  display: grid;
  gap: 16px;
}
.compare__head {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}
.compare__product {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}
.compare__product-top {
  display: flex;
  gap: 12px;
  align-items: center;
}
.compare__img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  background: #f3f4f6;
}
.compare__name {
  font-weight: 900;
  display: inline-block;
  line-height: 1.25;
}
.compare__sku { color: var(--muted); font-size: 12px; margin-top: 2px; }
.compare__table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.compare__row {
  display: grid;
  grid-template-columns: 180px repeat(auto-fit, minmax(220px, 1fr));
  border-top: 1px solid var(--border);
}
.compare__row:first-child { border-top: none; }
.compare__cell {
  padding: 12px 14px;
  border-left: 1px solid var(--border);
  font-size: 13px;
}
.compare__cell--label {
  border-left: none;
  font-weight: 800;
  color: var(--text);
  background: rgba(17, 24, 39, .02);
}
