.showmybike-root .product-breadcrumb {
  display: flex;
  gap: var(--space-2);
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: var(--space-4) var(--space-5);
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}

.showmybike-root .product-breadcrumb a {
  color: var(--color-text-secondary);
  text-decoration: none;
}

.showmybike-root .product-breadcrumb a:hover {
  color: var(--color-accent);
}

.showmybike-root .product-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: var(--space-7);
  align-items: center;
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: var(--space-5) var(--space-5) var(--space-7);
}

.showmybike-root .product-hero__brand,
.showmybike-root .product-section-title,
.showmybike-root .product-spec-group__title {
  color: var(--color-text-secondary);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

.showmybike-root .product-hero__name {
  margin: var(--space-2) 0 var(--space-4);
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-heading);
  line-height: var(--leading-tight);
}

.showmybike-root .product-hero__market-price {
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
}

.showmybike-root .product-hero__msrp {
  margin-left: var(--space-2);
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  text-decoration: line-through;
}

.showmybike-root .product-hero__price-checked {
  display: block;
  margin-top: var(--space-1);
  color: var(--color-text-tertiary);
  font-size: var(--text-xs);
}

.showmybike-root .product-hero__image,
.showmybike-root .product-related__image {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-bg-tertiary);
}

.showmybike-root .product-hero__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180%;
  height: 180%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  transform: translate(-50%, -50%);
}

.showmybike-root .product-content {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 var(--space-5) var(--space-8);
}

.showmybike-root .product-section-title {
  margin-bottom: var(--space-3);
}

.showmybike-root .product-section-desc {
  margin-bottom: var(--space-4);
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}

.showmybike-root .product-section-desc a {
  color: var(--color-accent);
}

.showmybike-root .product-scores,
.showmybike-root .product-specs,
.showmybike-root .product-features,
.showmybike-root .product-cta,
.showmybike-root .product-related {
  margin-bottom: var(--space-7);
}

.showmybike-root .product-score-list {
  display: grid;
  gap: var(--space-3);
}

.showmybike-root .product-score {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr) 32px;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}

.showmybike-root .product-score__track {
  height: 7px;
  overflow: hidden;
  border-radius: var(--radius-full);
  background: var(--color-border-subtle);
}

.showmybike-root .product-score__fill {
  display: block;
  width: calc(var(--score) * 1%);
  height: 100%;
  border-radius: inherit;
  background: var(--color-accent);
}

.showmybike-root .product-score__value {
  color: var(--color-text-primary);
  font-weight: var(--weight-semibold);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.showmybike-root .product-spec-group {
  margin-bottom: var(--space-5);
}

.showmybike-root .product-spec-group__title {
  margin-bottom: var(--space-3);
}

.showmybike-root .product-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.showmybike-root .product-spec {
  display: grid;
  gap: 2px;
  padding: var(--space-3);
  border-radius: var(--radius-md);
  background: var(--color-bg-hover);
}

.showmybike-root .product-spec__label {
  color: var(--color-text-secondary);
  font-size: var(--text-xs);
}

.showmybike-root .product-spec__value {
  color: var(--color-text-primary);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  font-variant-numeric: tabular-nums;
}

.showmybike-root .product-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.showmybike-root .product-feature-badge {
  display: inline-flex;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  background: var(--color-accent-subtle);
  color: var(--color-accent);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
}

.showmybike-root .product-cta__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}

.showmybike-root .product-related__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
}

.showmybike-root .product-related__card {
  display: grid;
  gap: var(--space-2);
  color: inherit;
  text-decoration: none;
  transition: transform var(--duration-fast) var(--ease-out-soft);
}

.showmybike-root .product-related__card:hover {
  transform: translateY(-2px);
}

.showmybike-root .product-related__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 170%;
  height: 170%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  transform: translate(-50%, -50%);
}

.showmybike-root .product-related__brand {
  color: var(--color-text-secondary);
  font-size: 10px;
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

.showmybike-root .product-related__name {
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
}

.showmybike-root .product-related__price {
  color: var(--color-text-primary);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 768px) {
  .showmybike-root .product-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .showmybike-root .product-hero {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .showmybike-root .product-hero__image {
    order: -1;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .showmybike-root .product-hero__name {
    font-size: var(--text-xl);
  }
}

@media (max-width: 480px) {
  .showmybike-root .product-spec-grid,
  .showmybike-root .product-cta__actions,
  .showmybike-root .product-related__grid {
    grid-template-columns: 1fr;
  }

  .showmybike-root .product-score {
    grid-template-columns: 86px minmax(0, 1fr) 32px;
  }
}
