/* The accessory stays with the existing BLOCK canvas. */
.grille-picker { width: min(100%, 332px); color: var(--text-primary); }
.grille-options { display: flex; gap: 6px; }
.grille-options button {
  display: flex; align-items: center; justify-content: center; gap: 4px;
  flex: 1; min-width: 44px; min-height: 44px; padding: 7px 4px;
  border: 1px solid transparent; border-radius: 5px;
  color: inherit; background: transparent; cursor: pointer; font: inherit; font-size: 11px;
}
.grille-options button:hover { background: var(--border); }
.grille-options button[aria-pressed="true"] { border-color: currentColor; }
.grille-options button:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.grille-options svg { width: 25px; height: 18px; fill: currentColor; }
.grille-caption { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 4px 10px; margin-top: 9px; font-size: 12px; line-height: 1.5; color: var(--text-primary); }
.product-hero-img.has-grille { flex-wrap: wrap; }
.product-cta-section.has-p3d.has-grille {
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  column-gap: 56px; align-content: center; justify-items: start;
  min-height: 520px; padding: 56px max(32px, calc((100vw - 1160px) / 2)); text-align: left;
}
.has-p3d.has-grille .p3d-bg { position: relative; inset: auto; grid-column: 1; grid-row: 1; width: 100%; }
.has-p3d.has-grille .p3d-wrap { width: 100%; transform: none !important; }
.has-p3d.has-grille .hero-stage { width: 100%; max-width: none; aspect-ratio: 1.25; }
.has-p3d.has-grille > .grille-cta-copy { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
.has-p3d.has-grille > .grille-picker { grid-column: 1; grid-row: 2; justify-self: center; }
.grille-jump { display: inline-block; width: fit-content; margin: 0 0 20px; font-size: 13px; color: var(--text-primary); text-underline-offset: 4px; }
.grille-jump:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
@media (max-width: 700px) {
  .product-cta-section.has-p3d.has-grille { display: flex; flex-direction: column; align-items: stretch; gap: 0; min-height: 0; padding: 24px 24px 48px; }
  .has-p3d.has-grille .p3d-bg { order: 0; }
  .has-p3d.has-grille .hero-stage { aspect-ratio: 1.25; }
  .has-p3d.has-grille > .grille-picker { order: 1; align-self: center; margin: 0 0 40px; }
  .has-p3d.has-grille > .grille-cta-copy { order: 2; align-self: stretch; }
}
@media (prefers-reduced-motion: reduce) { .has-grille .hero-3d { transition: none; } }

/* Field labels the loaded transport variant, not the standard product fallback. */
.grille-field-badge { display: none; position: absolute; top: 12px; left: 12px; z-index: 1; padding: 4px 9px; border: 1px solid var(--border); border-radius: 999px; color: var(--text-primary); font-size: 11px; line-height: 1.4; letter-spacing: .04em; pointer-events: none; }
.hero-stage.is-3d .grille-field-badge { display: inline-block; }
