.custom-category-section {
    max-width: 1400px;
    margin: 40px auto 0;
    padding: 0px 50px;
}
h4.category_title_section {
    text-align: center;
    letter-spacing: -.035em;
    font-size: max(1.400rem, min(.63452vw + .71891rem, 1.75rem));
    font-weight: 700;
    margin: 0px 0px 40px;
    font-family: 'HelveticaCustom', Arial, sans-serif;
}
.category_items {
  position: relative;
}
.category_items button {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 9;
  width: 34px;
  height: 34px;
  background: #000;
  border: 1px solid #000;
  border-radius: 4px;
  display: none;
  align-items: center;
  justify-content: center;
}
.category_items button:hover {
  background: #fff;
}
.category_items button svg {
  width: 15px;
  height: 15px;
  color: #fff;
}
.custom-category-section:hover button {
  display: flex;
}
.category_items button:hover svg {
  color: #000;
}
.category_items #nextBtn {
  right: 0;
  left: auto;
}
.category_item {
  margin: 0px 5px;
}
.category-item-in {
  display: flex;
  flex-flow: column;
  gap: 12px;
}
.category-item-in img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 1px solid #cccccc3b;
}
.category-item-in h3 {
  font-size: 20px;
  letter-spacing: 0.02em;
  line-height: 140%;
  font-weight: 700;
  color: #000;
  margin: 0;
  font-family: 'HelveticaCustom', Arial, sans-serif;
}
.category_items #slider::after {
  opacity: 1;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.15s;
  position: absolute;
  content: "";
  background: linear-gradient(to left, #fff, #0000);
  top: 0;
  right: 0;
  width: min(100px, 10vw);
  height: 100%;
}
.category_items #slider::before {
  opacity: 1;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.15s;
  position: absolute;
  content: "";
  background: linear-gradient(to right, #fff, #0000);
  top: 0;
  left: 0;
  width: min(100px, 10vw);
  height: 100%;
}
#slider:has(.slick-dots li.slick-active:last-child)::after,
#slider:has(.slick-dots li.slick-active:first-child)::before {
  opacity: 0;
}
.category_items:has(.slick-dots li.slick-active:last-child) #nextBtn,
.category_items:has(.slick-dots li.slick-active:first-child) #prevBtn {
  display: none;
}
.category_items .slick-dots {
  display: flex;
  align-items: center;
}
.category_items .slick-dots li {
  margin: 0;
  width: 100%;
  height: 1px;
  display: block;
  background: #e7e5e5;
}
.category_items .slick-dots li.slick-active {
  background: #000;
}
.category_items .slick-dots li button,
.category_items .slick-dots li button::before {
  display: none;
}
