/* ========================================================================== */
/* 🛡️ iOS WebKit GPU 잔상 및 터치 가상박스 원천 차단 (2026 SSOT V3.3)         */
/* ========================================================================== */

/* 전역 탭 하이라이트 박스 및 선택 방지 */
* {
  -webkit-tap-highlight-color: transparent !important;
}

/* 상단 동물 카테고리 탭 영역 독립 스택 컨텍스트(isolation) 강제 */
.species-tab-container,
.category-grid,
.pet-mode-selector,
.species-grid,
[class*="species"],
[class*="category"],
[class*="pet-tab"] {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  isolation: isolate !important;            /* 하위 DOM 리페인트 침범 방지 */
  contain: layout style !important;         /* 품종 버튼 클릭 시 리플로우 차단 */
  -webkit-touch-callout: none !important;  /* 롱프레스 잔여 박스 금지 */
  -webkit-user-select: none !important;
  user-select: none !important;
}

/* 품종 버튼 클릭 시 레이아웃 튀김 방지 */
.breed-button,
.breed-tag,
[class*="breed-btn"],
[class*="breed-tag"],
button {
  -webkit-appearance: none;
  touch-action: manipulation;               /* 300ms 터치 딜레이 및 줌 잔상 방지 */
  -webkit-tap-highlight-color: transparent;
}
