/** Shopify CDN: Minification failed

Line 48:6 Expected ":"
Line 49:0 Expected "}" to go with "{"

**/
/* TECHNICAL SPECS – STRUCTURED + THEME MATCHED */

.product-specs summary {
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  padding: 16px 0;
  border-top: 1px solid #e5e5e5;
  list-style: none;
}

.product-specs summary::-webkit-details-marker {
  display: none;
}

/* Grid layout */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #e5e5e5;
}

/* Each spec cell */
.specs-grid div {
  padding: 16px;
  border-bottom: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
}

/* Remove right border on last column */
.specs-grid div:nth-child(3n) {
  border-right: none;
}

/* LABEL (FRAME, BATTERY, MOTOR, etc.) */
.specs-grid strong {
  display: block;
  font: inherit;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  marg
