/* WINOTA Category Bar Styles */

.winota-cat-bar {
  background: transparent;
  padding: 10px 0 20px 0;
  position: relative;
  z-index: 5;
  width: 100%;
}

.winota-cat-bar .cat-inner {
  /* max-width: 1200px; */
  /* margin: 0 auto; */
  padding: 0 15px;
}

.winota-cat-bar .cat-scroll {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none; /* Firefox */
}

.winota-cat-bar .cat-scroll::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.winota-cat-bar .cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 90px;
  transition: transform 0.2s ease;
}

.winota-cat-bar .cat-item:hover {
  transform: translateY(-5px);
}

.winota-cat-bar .cat-icon {
  width: 90px;
  height: 90px;
  background: url("/media/winlegend_media/assets/border_icon.svg") center center
    no-repeat;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
  position: relative;
}

/* Icon image inside the diamond */
.winota-cat-bar .cat-icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.winota-cat-bar .cat-label {
  color: #eebbce; /* Pinkish white text */
  font-family: "Oswald", sans-serif; /* Match site font */
  font-size: 13px;
  font-weight: 500;
  text-transform: capitalize;
  text-align: center;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.winota-cat-bar .cat-item:hover .cat-label {
  color: #fff;
  text-shadow: 0 0 5px #ff0055;
}

/* Active state if needed (can be added later via JS or PHP) */
.winota-cat-bar .cat-item.active .cat-icon {
  filter: brightness(1.2);
}

.winota-cat-bar .cat-item.active .cat-label {
  color: #fff;
  font-weight: 700;
}

/* Decorative bottom line if present in reference (looks like a pink separator) */
.winota-cat-bar::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #a90038, transparent);
  margin-top: 15px;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .winota-cat-bar .cat-scroll {
    justify-content: flex-start;
    padding-left: 15px;
    padding-right: 15px;
  }
}
