/* Price list layout */

.price-list-stack {
  display: grid;
  gap: 1.5rem;
}

/* Price matrices */

.price-matrix {
  min-width: 42rem;
}

.price-matrix th,
.price-matrix td {
  text-align: center;
  white-space: nowrap;
}

.price-matrix th:first-child,
.price-matrix td:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  text-align: left;
  background: var(--shop-card);
}

.price-matrix thead th:first-child {
  z-index: 2;
  background: var(--shop-table-header-bg);
}

/* Price cell content */

.price-heading-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-weight: 700;
}

.price-cell-primary {
  font-weight: 700;
}

.price-cell-secondary {
  display: block;
  margin-top: 0.15rem;
  color: var(--shop-muted);
  font-size: 0.85rem;
}

.price-empty {
  color: var(--shop-muted);
}
