.commerce-app .style-row { gap: 10px; }
.commerce-app .style-row label {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 42px;
  box-sizing: border-box;
  border: 2px solid #81838a;
  border-radius: 999px;
  padding: 0 18px;
  background: #fff;
  color: #35373d;
  cursor: pointer;
  font-size: .86rem;
  font-weight: 600;
  transition: .16s ease;
}
.commerce-app .style-row label:hover { border-color: #6f7fae; background: #f8faff; }
.commerce-app .style-row input { position: absolute; opacity: 0; pointer-events: none; }
.commerce-app .style-row label:has(input:checked) {
  border-color: #7284b7;
  background: #cbd8ff;
  color: #34456f;
  box-shadow: inset 0 0 0 1px rgba(69, 89, 142, .12);
}
.commerce-app .style-row label:has(input:checked)::before { content: '✓'; margin-right: 8px; color: #34456f; font-weight: 800; }

.commerce-app .history-item b,
.commerce-app .history-item span { display: block; }
.commerce-app .history-item b {
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.45;
}
.commerce-app .history-item span {
  margin-top: 4px;
  white-space: normal;
  line-height: 1.4;
}
