/* ============================================
   COMPARE TABLE & EXTRAS
   ============================================ */

.comparison-wrap {
  overflow-x: auto;
  margin-top: 10px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.compare-table th {
  background: var(--primary);
  color: white;
  padding: 16px 20px;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}

.compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--light-gray);
  color: var(--text-mid);
}

.compare-table td:first-child {
  font-weight: 600;
  color: var(--text-dark);
}

.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--off-white); }
