/** Shopify CDN: Minification failed

Line 365:6 Expected ":"
Line 366:0 Expected "}" to go with "{"

**/
/* ═══════════════════════════════════════════════════════════
   Dynamic Comparison — Card-based comparison table
   ═══════════════════════════════════════════════════════════ */

/* Anchor offset for fixed header */
.dc-anchor {
  display: block;
  position: relative;
  top: -100px;
  visibility: hidden;
}

/* ─── Header ──────────────────────────────────────────────── */
.dc-header {
  text-align: center;
  margin-bottom: 40px;
}

.dc-header__heading {
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.dc-header__desc {
  margin: 0;
  color: rgba(var(--color-foreground), 0.6);
  font-size: 16px;
}

.dc-header__desc p {
  margin: 0;
}

/* ─── Columns grid ────────────────────────────────────────── */
.dc-comparison {
  display: block;
  -webkit-user-select: none;
  user-select: none;
}

.dc-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 12px;
}

.dc-toolbar__check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(var(--color-foreground), 0.8);
  cursor: pointer;
}

.dc-toolbar__check input {
  width: 14px;
  height: 14px;
  margin: 0;
}

.dc-comparison .dc-combobox__input {
  -webkit-user-select: text;
  user-select: text;
}

.dc-columns {
  display: grid;
  grid-template-columns: repeat(var(--dc-columns, 3), 1fr);
  gap: 24px;
}

.dc-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* ─── Combobox / Selector ─────────────────────────────────── */
.dc-col__selector {
  margin-bottom: 20px;
}

.dc-combobox {
  position: relative;
  width: 100%;
}

.dc-combobox__input {
  width: 100%;
  padding: 10px 36px 10px 14px;
  border: 1px solid rgba(var(--color-foreground), 0.2);
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  background: rgb(var(--color-background));
  color: rgb(var(--color-foreground));
  cursor: text;
  outline: none;
  box-sizing: border-box;
  appearance: none;
}

.dc-combobox__input:focus {
  border-color: rgba(var(--color-foreground), 0.4);
}

.dc-combobox__chevron {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: rgba(var(--color-foreground), 0.5);
}

/* Detached dropdown (appended to body by JS) */
.dc-combobox__dropdown,
.dc-combobox__dropdown--detached {
  z-index: 9999;
  background: rgb(var(--color-background));
  border: 1px solid rgba(var(--color-foreground), 0.15);
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  max-height: 280px;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: 4px 0;
}

.dc-combobox__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.dc-combobox__item:hover,
.dc-combobox__item:focus {
  background: rgba(var(--color-foreground), 0.06);
  outline: none;
}

.dc-combobox__item.is-active {
  background: rgba(var(--color-foreground), 0.1);
}

.dc-combobox__item img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.dc-combobox__no-img {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(var(--color-foreground), 0.06);
  border-radius: 4px;
  flex-shrink: 0;
}

.dc-combobox__item-title {
  font-size: 14px;
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  color: rgb(var(--color-foreground));
}

.dc-combobox__item-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dc-combobox__item-subtitle {
  font-size: 12px;
  line-height: 1.2;
  color: rgba(var(--color-foreground), 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dc-combobox__group-label {
  padding: 8px 12px 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(var(--color-foreground), 0.55);
  list-style: none;
}

.dc-combobox__group-divider {
  height: 1px;
  margin: 6px 12px;
  background: rgba(var(--color-foreground), 0.12);
  list-style: none;
}

.dc-combobox__status {
  padding: 8px 12px;
  font-size: 13px;
  color: rgba(var(--color-foreground), 0.5);
  list-style: none;
}

/* ─── Placeholder ─────────────────────────────────────────── */
.dc-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  border: 2px dashed rgba(var(--color-foreground), 0.15);
  border-radius: 8px;
  color: rgba(var(--color-foreground), 0.35);
  font-size: 14px;
  flex: 1;
}

/* ─── Product card ────────────────────────────────────────── */
.dc-col__product {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dc-product-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dc-product-card__image-link {
  display: block;
  background: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  padding: 20px;
  margin-bottom: 12px;
  position: relative;
}

.dc-product-card__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 1 / 1;
}

.dc-product-card__img--hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: inherit;
  box-sizing: border-box;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.dc-product-card__image-link:hover .dc-product-card__img--hover {
  opacity: 1;
}

/* Color swatches */
.dc-product-card__swatches {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
}

.dc-swatch {
  display: inline-block;
  width: var(--dc-swatch-size, 14px);
  height: var(--dc-swatch-size, 14px);
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

/* Product info */
.dc-product-card__title {
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 4px;
  line-height: 1.3;
}

/* Hide starting price */
.dc-product-card__price {
  display: none;
}

.dc-product-card__learn-more {
  font-size: 14px;
  color: rgba(var(--color-foreground), 0.6);
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-block;
  margin-bottom: 20px;
  transition: color 0.2s ease;
}

.dc-product-card__learn-more:hover {
  color: rgb(var(--color-foreground));
}

/* Info section at bottom of card */
.dc-product-card__info {
  margin-top: auto;
}

/* ─── Spec rows ───────────────────────────────────────────── */
.dc-col__specs {
  border-top: 1px solid rgba(var(--color-foreground), 0.1);
}

.dc-spec-item {
  text-align: center;
  padding: 16px 8px;
  border-bottom: none;
  min-height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

/* Spec row dividers (toggled via class on parent) */
.dc-comparison--spec-dividers .dc-spec-item {
  border-bottom: 1px solid rgba(var(--color-foreground), 0.1);
}

.dc-spec__value {
  font-weight: 700;
  font-size: var(--dc-value-size, 16px);
  color: var(--dc-value-color, inherit);
  line
