/*
 * PC: 레거시 default_shop.css a:hover underline 보정 — pointer만, 밑줄 없음 (자식 포함)
 */
@media (hover: hover) and (pointer: fine) {
  a:hover,
  a:focus,
  a:active,
  a:hover *,
  a:focus *,
  a:active * {
    text-decoration: none !important;
    text-decoration-line: none !important;
    cursor: pointer;
  }
}
