/* Sewanin eyewear measurement guide.
   Pure CSS replacement of the legacy inline SVG: no JS observers, no DOM mutation. */

svg[aria-label="Схема размеров очков"],
svg[aria-label="Eyewear measurement guide"] {
  display: none !important;
}

svg[aria-label="Схема размеров очков"] + p,
svg[aria-label="Eyewear measurement guide"] + p {
  display: none !important;
}

details > div:has(> svg[aria-label="Схема размеров очков"]) {
  width: 100%;
  aspect-ratio: 480 / 326;
  background: url('/frame-measurement-guide-ru.svg') center / contain no-repeat;
}

details > div:has(> svg[aria-label="Eyewear measurement guide"]) {
  width: 100%;
  aspect-ratio: 480 / 326;
  background: url('/frame-measurement-guide-en.svg') center / contain no-repeat;
}
