/* ===== Hot Categories Bar (Optimized for #f8f8f8) ===== */

.hot-categories{
  background: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 14px;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 12px 16px;
  margin: 16px 0;

  /* overflow-x: auto; */
  scrollbar-width: none;
  justify-content: center;
}

.hot-categories::-webkit-scrollbar{
  display: none;
}

.hot-category{
  flex: 0 0 auto;
}

/* Category Chip */
.hot-category__name{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 8px 14px;
  border-radius: 999px;

  background: #f3f3f3;
  border: 1px solid #e5e5e5;

  font-weight: 600;
  font-size: 14px;
  color: #222;
  text-decoration: none;

  transition: all 0.2s ease;
}

/* Count Badge */
.hot-category__count{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 26px;
  height: 22px;
  padding: 0 8px;

  border-radius: 999px;

  background: linear-gradient(135deg, #111, #333);
  color: #fff;

  font-size: 12px;
  font-weight: 600;

  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Hover */
.hot-category__name:hover{
  background: #ffffff;
  border-color: #dcdcdc;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Mobile behavior */
@media (max-width: 768px){
  .hot-categories{
    padding: 10px;
    width: 100%;
  flex-direction: column;
  }

  .hot-category__name{
    font-size: 13px;
    padding: 7px 12px;
  }
}

/* Category Chip */
.hot-category__name{
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  padding: 8px 10px 8px 16px;
  border-radius: 999px;

  background: #f3f3f3;
  border: 1px solid #e5e5e5;

  font-weight: 600;
  font-size: 14px;
  color: #222;
  text-decoration: none;

  transition: all 0.2s ease;
}

/* Label */
.hot-category__label{
  white-space: nowrap;
}

/* Count Badge */
.hot-category__count{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 28px;
  height: 24px;
  padding: 0 8px;

  border-radius: 999px;

  background: linear-gradient(135deg, #ff7b00, #ff3c38);
  color: #ffffff;

  font-size: 12px;
  font-weight: 600;

  margin-left: 4px;
}

/* Hover */
.hot-category__name:hover{
  background: #ffffff;
  border-color: #dcdcdc;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
/* ===== Hot Categories Title ===== */

.hot-categories__title{
  display: flex;
  align-items: center;      /* vertical center */
  justify-content: center;  /* horizontal center */

  gap: 12px;


  padding: 0;

  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #111;
  position: relative;
  text-align: center;
}

/* Accent Line */
.hot-categories__title::before{
  content: "";
  width: 4px;
  height: 20px;
  border-radius: 4px;
  background: linear-gradient(180deg, #111, #444);
}

/* Optional subtle underline effect */
.hot-categories__title-text{
  position: relative;
}

.hot-categories__title-text::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 40%;
  height: 2px;
  background: #111;
  opacity: 0.12;
  border-radius: 2px;
}