/* Fix: keep disabled Buy Now from changing on hover/focus/active */
#buy-now-button-main[disabled]:hover,
#buy-now-button-main[disabled]:focus,
#buy-now-button-main[disabled]:active,
.button--buy-now[disabled]:hover,
.button--buy-now[disabled]:focus,
.button--buy-now[disabled]:active {
  background-color: #d1d6db !important;
  border-color: #d1d6db !important;
  color: #ffffff !important;
  box-shadow: none !important;   /* prevents glow on focus/hover */
  transform: none !important;    /* prevents press-down effects */
}

h1, h2, h3, h4, h5, h6 {
  font-synthesis: none;
}

.productView-title {
  font-weight: 600;
}

.side-cart .side-cart-item-name {
  font-weight: 600;
}

/* Compact, single-line cart item titles (brand fonts) */
.side-cart .side-cart-item-name {
  font-size: 0.875rem;      /* visually matches system-font demo */
  line-height: 1.2;         /* tight vertical rhythm */
  white-space: nowrap;      /* single line */
  overflow: hidden;         /* required for ellipsis */
  text-overflow: ellipsis;  /* truncate long titles */
}