/* OTT Child Product Categories
   - 카테고리 '이름만' 출력
   - 빈 카테고리도 포함해서 항상 노출
*/

.ott-child-cats{ width:100%; }

.ott-child-cats__grid{
  box-sizing:border-box;
  width:100%;
  display:flex;
  flex-wrap:wrap;
  justify-content:center; /* 가운데 정렬 */
  align-items:center;
  gap:15px;              /* 아이템 간격 15px */
  list-style:none;
  margin:0;
  padding:0;
}

.ott-child-cats__item{ margin:0; }

.ott-child-cats__link{
  display:block;
  text-decoration:none;
  text-align:center;
  padding:0 15px;        /* 가운데 기준 양옆 15px */
}

.ott-child-cats__title{
  display:block;
  margin:0;
  font-size:14px;
  font-weight:400;
  color:#7a7a7a;         /* 일반 */
  line-height:1.3;
}

/* 오버/포커스 */
.ott-child-cats__link:hover .ott-child-cats__title,
.ott-child-cats__link:focus .ott-child-cats__title,
.ott-child-cats__link:focus-visible .ott-child-cats__title{
  color:#333;
}

/* 액션(클릭 순간) */
.ott-child-cats__link:active .ott-child-cats__title{
  color:#333;
}

/* 현재 카테고리(액티브 표시) */
.ott-child-cats__item.is-current .ott-child-cats__title{
  color:#333;
}
