.mqs-product-compare {
  margin: 2rem 0;
  border: 1px solid #d9e5f5;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
.mqs-product-compare__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #f4f9ff;
  border-bottom: 1px solid #d9e5f5;
}
.mqs-product-compare__header h2 {
  margin: 0 0 .25rem 0;
  color: #084a9b;
  font-size: 1.35rem;
}
.mqs-product-compare__header p {
  margin: 0;
  color: #526070;
}
.mqs-product-compare__toggle {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .9rem;
}
.mqs-product-compare__scroll {
  overflow-x: auto;
}
.mqs-product-compare__table {
  min-width: 980px;
  width: 100%;
  border-collapse: collapse;
}
.mqs-product-compare__table th,
.mqs-product-compare__table td {
  border: 1px solid #e6ebf2;
  padding: .75rem;
  text-align: center;
  vertical-align: middle;
}
.mqs-product-compare__table tbody th {
  text-align: left;
  background: #fafafa;
  width: 160px;
  font-weight: 700;
}
.mqs-product-compare__product {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  min-height: 220px;
}
.mqs-product-compare__product img {
  max-width: 110px;
  max-height: 110px;
  object-fit: contain;
}
.mqs-product-compare__price {
  color: #084a9b;
  font-weight: 700;
}
.mqs-product-compare__badge {
  display: inline-block;
  background: #0d6efd;
  color: #fff;
  border-radius: 4px;
  padding: .2rem .5rem;
  font-size: .75rem;
  margin-bottom: .25rem;
}
.mqs-product-compare__table .is-current {
  background: #eef6ff;
}
.mqs-product-compare.is-highlighting tr.is-different td:not(.is-current) {
  background: #fff9db;
}
@media (max-width: 767px) {
  .mqs-product-compare__header {
    flex-direction: column;
  }
  .mqs-product-compare__table {
    min-width: 900px;
  }
}
