/** Shopify CDN: Minification failed

Line 8:2 Unexpected "="
Line 13:60 Unterminated string token
Line 16:56 Unterminated string token

**/
* ============================================================
   component-product-enrichment.css
   UPSPLUSBATTERY.CA · Phase 3 product template styles
   ============================================================
   Version: Step 2 (adds compat-matrix, runtime-table,
   outputs-block, connectivity, compat-batteries to Step 1's
   spec-grid, feature-strip, trust-strip, product-faq).

   All components use Dawn's color-scheme CSS variables:
     - var(--color-foreground)  (rgb triplet)
     - var(--color-background)  (rgb triplet)
     - var(--color-button)      (rgb triplet, accent)
   No hard-coded colors. No typography overrides.
   ============================================================ */


/* ================================================
   STEP 1 COMPONENTS
   ================================================ */

/* ---------- Spec grid ---------- */
.spec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 2.4rem 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(var(--color-foreground), 0.1);
}

@media screen and (min-width: 750px) {
  .spec-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 2.4rem;
  }
}

.spec-grid__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: baseline;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(var(--color-foreground), 0.1);
  margin: 0;
}

.spec-grid__label {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(var(--color-foreground), 0.65);
  margin: 0;
}

.spec-grid__value {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: right;
  color: rgb(var(--color-foreground));
  margin: 0;
}

.spec-grid__value--numeric {
  font-variant-numeric: tabular-nums;
}


/* ---------- Feature strip ---------- */
.feature-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

@media screen and (min-width: 750px) {
  .feature-strip {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2.4rem;
  }
}

.feature-strip__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}

.feature-strip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  color: rgb(var(--color-button));
  margin-bottom: 0.4rem;
}

.feature-strip__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.feature-strip__label {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.3;
  color: rgb(var(--color-foreground));
  margin: 0;
}

.feature-strip__sublabel {
  font-size: 1.2rem;
  color: rgba(var(--color-foreground), 0.7);
  line-height: 1.4;
  margin: 0;
}


/* ---------- Trust strip ---------- */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.4rem 3.2rem;
  padding: 2.4rem;
  margin: 3.2rem 0;
  background: rgba(var(--color-foreground), 0.03);
  border-radius: 0.4rem;
}

.trust-strip__group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}

.trust-strip__label {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(var(--color-foreground), 0.6);
  margin: 0;
}

.trust-strip__icons {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-strip__icons svg {
  height: 2.4rem;
  width: auto;
}

.trust-strip__carrier,
.trust-strip__badge {
  font-size: 1.3rem;
  font-weight: 500;
  color: rgba(var(--color-foreground), 0.85);
  white-space: nowrap;
}


/* ---------- Product FAQ ---------- */
.product-faq {
  margin: 0;
}

.product-faq__title {
  font-size: 2.4rem;
  font-weight: 500;
  margin: 0 0 1.6rem;
  letter-spacing: -0.01em;
}

.product-faq__item {
  border-bottom: 1px solid rgba(var(--color-foreground), 0.12);
  padding: 1.2rem 0;
}

.product-faq__item[open] {
  padding-bottom: 1.6rem;
}

.product-faq__question {
  font-size: 1.6rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  padding: 0.4rem 0;
  color: rgb(var(--color-foreground));
}

.product-faq__question::-webkit-details-marker {
  display: none;
}

.product-faq__question::after {
  content: "+";
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  color: rgba(var(--color-foreground), 0.5);
  flex-shrink: 0;
}

.product-faq__item[open] .product-faq__question::after {
  content: "−";
}

.product-faq__answer {
  margin: 1rem 0 0;
  color: rgba(var(--color-foreground), 0.8);
  line-height: 1.55;
  font-size: 1.4rem;
}

.product-faq__answer p {
  margin: 0 0 1rem;
}

.product-faq__answer p:last-child {
  margin-bottom: 0;
}


/* ================================================
   STEP 2 COMPONENTS
   ================================================ */

/* ---------- Battery compatibility matrix ---------- */
.compat-matrix {
  margin: 0;
}

.compat-matrix__header {
  margin-bottom: 1.6rem;
}

.compat-matrix__title {
  font-size: 2.4rem;
  font-weight: 500;
  margin: 0 0 0.4rem;
  letter-spacing: -0.01em;
}

.compat-matrix__count {
  font-size: 1.3rem;
  color: rgba(var(--color-foreground), 0.7);
  margin: 0;
}

.compat-matrix__count strong {
  color: rgb(var(--color-foreground));
  font-variant-numeric: tabular-nums;
}

.compat-matrix__legend-linked {
  border-bottom: 1px dotted rgba(var(--color-foreground), 0.4);
}

.compat-matrix__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.compat-matrix__grid--expanded {
  margin-top: 0.6rem;
}

.compat-matrix__item {
  margin: 0;
}

.compat-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.2rem;
  font-size: 1.3rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
  border: 1px solid rgba(var(--color-foreground), 0.18);
  background: transparent;
  color: rgba(var(--color-foreground), 0.75);
  border-radius: 0.4rem;
  text-decoration: none;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.compat-chip--linked {
  border-color: rgba(var(--color-button), 0.5);
  background: rgba(var(--color-button), 0.06);
  color: rgb(var(--color-foreground));
}

.compat-chip--linked:hover,
.compat-chip--linked:focus-visible {
  background: rgba(var(--color-button), 0.14);
  border-color: rgb(var(--color-button));
  color: rgb(var(--color-foreground));
}

.compat-chip__arrow {
  width: 1.2rem;
  height: 1.2rem;
  opacity: 0.7;
}

.compat-matrix__expand {
  margin-top: 1.2rem;
}

.compat-matrix__expand-toggle {
  font-size: 1.3rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  color: rgb(var(--color-button));
  padding: 0.4rem 0;
}

.compat-matrix__expand-toggle::-webkit-details-marker {
  display: none;
}

.compat-matrix__expand-toggle::before {
  content: "+ ";
  font-weight: 400;
}

.compat-matrix__expand[open] .compat-matrix__expand-toggle::before {
  content: "− ";
}

.compat-matrix__expand-hint {
  color: rgba(var(--color-foreground), 0.55);
  font-weight: 400;
}

.compat-matrix__footer {
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(var(--color-foreground), 0.08);
}

.compat-matrix__footer p {
  margin: 0;
  font-size: 1.3rem;
  color: rgba(var(--color-foreground), 0.7);
  line-height: 1.5;
}

.compat-matrix__footer a {
  color: rgb(var(--color-button));
  font-weight: 500;
  text-decoration: none;
}

.compat-matrix__footer a:hover {
  text-decoration: underline;
}


/* ---------- UPS runtime table ---------- */
.runtime-block__title {
  font-size: 2.4rem;
  font-weight: 500;
  margin: 0 0 1.2rem;
  letter-spacing: -0.01em;
}

.runtime-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.runtime-table__th {
  text-align: left;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(var(--color-foreground), 0.6);
  padding: 0.8rem 1.2rem;
  border-bottom: 2px solid rgba(var(--color-foreground), 0.18);
}

.runtime-table__th--value {
  text-align: right;
}

.runtime-table__row td {
  padding: 1.2rem;
  border-bottom: 1px solid rgba(var(--color-foreground), 0.08);
  font-size: 1.5rem;
}

.runtime-table__load {
  font-weight: 500;
}

.runtime-table__wattage {
  font-variant-numeric: tabular-nums;
  color: rgba(var(--color-foreground), 0.7);
}

.runtime-table__value {
  text-align: right;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.runtime-table__na {
  color: rgba(var(--color-foreground), 0.35);
}

.runtime-block__footnote {
  margin: 1.2rem 0 0;
  font-size: 1.2rem;
  color: rgba(var(--color-foreground), 0.6);
  line-height: 1.55;
}


/* ---------- UPS outputs block ---------- */
.outputs-block__title {
  font-size: 2.4rem;
  font-weight: 500;
  margin: 0 0 1.6rem;
  letter-spacing: -0.01em;
}

.outputs-block__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
}

@media screen and (min-width: 750px) {
  .outputs-block__grid {
    grid-template-columns: auto 1fr;
    gap: 4rem;
    align-items: start;
  }
}

.outputs-block__side {
  min-width: 0;
}

.outputs-block__label {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(var(--color-foreground), 0.55);
  margin: 0 0 0.8rem;
}

.outputs-block__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.output-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid rgba(var(--color-foreground), 0.18);
  border-radius: 0.4rem;
  background: rgba(var(--color-foreground), 0.02);
}

.output-chip--input {
  background: rgba(var(--color-button), 0.06);
  border-color: rgba(var(--color-button), 0.28);
}

.output-chip__icon {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  color: rgba(var(--color-foreground), 0.7);
  flex-shrink: 0;
}

.output-chip__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.output-chip__text {
  font-size: 1.3rem;
  font-weight: 500;
  color: rgb(var(--color-foreground));
  line-height: 1.2;
}


/* ---------- UPS connectivity ---------- */
.connectivity-block__title {
  font-size: 2.4rem;
  font-weight: 500;
  margin: 0 0 1.6rem;
  letter-spacing: -0.01em;
}

.connectivity-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.connectivity-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid rgba(var(--color-foreground), 0.18);
  border-radius: 0.4rem;
  background: rgba(var(--color-foreground), 0.02);
  cursor: help;
}

.connectivity-chip[title]:hover {
  border-color: rgba(var(--color-button), 0.5);
  background: rgba(var(--color-button), 0.04);
}

.connectivity-chip__icon {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  color: rgb(var(--color-button));
  flex-shrink: 0;
}

.connectivity-chip__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.connectivity-chip__label {
  font-size: 1.3rem;
  font-weight: 500;
  color: rgb(var(--color-foreground));
  line-height: 1.2;
}


/* ---------- Compatible batteries cross-sell ---------- */
.compat-batteries__header {
  margin-bottom: 2rem;
}

.compat-batteries__title {
  font-size: 2.4rem;
  font-weight: 500;
  margin: 0 0 0.4rem;
  letter-spacing: -0.01em;
}

.compat-batteries__subtitle {
  font-size: 1.4rem;
  color: rgba(var(--color-foreground), 0.7);
  margin: 0;
  line-height: 1.5;
}

.compat-batteries__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}

@media screen and (min-width: 750px) {
  .compat-batteries__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.4rem;
  }
}

.compat-batteries__item {
  margin: 0;
  min-width: 0;
}

.compat-battery-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(var(--color-foreground), 0.08);
  border-radius: 0.6rem;
  overflow: hidden;
  background: rgb(var(--color-background));
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  height: 100%;
}

.compat-battery-card:hover,
.compat-battery-card:focus-visible {
  border-color: rgba(var(--color-button), 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--color-foreground), 0.06);
}

.compat-battery-card__media {
  aspect-ratio: 1 / 1;
  background: rgba(var(--color-foreground), 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.compat-battery-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.2rem;
}

.compat-battery-card__placeholder {
  width: 60%;
  height: 60%;
  opacity: 0.2;
}

.compat-battery-card__body {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.compat-battery-card__kicker {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(var(--color-button));
  margin: 0;
}

.compat-battery-card__title {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.35;
  margin: 0;
  color: rgb(var(--color-foreground));
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.compat-battery-card__footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.8rem;
  padding-top: 0.6rem;
}

.compat-battery-card__price {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgb(var(--color-foreground));
  font-variant-numeric: tabular-nums;
}

.compat-battery-card__stock {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 0.2rem;
  white-space: nowrap;
}

.compat-battery-card__stock--in {
  background: rgba(var(--color-button), 0.1);
  color: rgb(var(--color-button));
}

.compat-battery-card__stock--out {
  background: rgba(var(--color-foreground), 0.08);
  color: rgba(var(--color-foreground), 0.55);
}

.compat-batteries__more {
  margin: 2rem 0 0;
  font-size: 1.3rem;
  color: rgba(var(--color-foreground), 0.7);
  text-align: center;
}

.compat-batteries__more a {
  color: rgb(var(--color-button));
  font-weight: 500;
  text-decoration: none;
}

.compat-batteries__more a:hover {
  text-decoration: underline;
}
