/* Approved live correction: keep scale labels whole without changing values. */
.home-product-card__scale-label,
.home-product-card__scale-end {
  width: max-content;
  flex: 0 0 auto;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

/* Let the thickness label own its grid column, preserving the existing gap. */
.home-product-card__scale-row--thickness {
  grid-template-columns: max-content minmax(0, 1fr);
}

/* Approved mobile correction: the saved-choice entry follows the footer. */
@media (max-width: 768px) {
  .consent-control {
    position: static;
    inset: auto;
    margin: 0;
    padding: 0;
  }

  .consent-control__banner {
    position: fixed;
    z-index: 80;
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom));
  }

  .consent-control--slim .consent-control__banner {
    z-index: 92;
  }

  .consent-control__manage,
  .consent-control--slim .consent-control__manage {
    position: static;
    min-height: 44px;
    width: auto;
    max-width: calc(100% - 32px);
    margin: 0 16px calc(16px + env(safe-area-inset-bottom)) auto;
    transform: none;
  }
}
