.tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 37px;
  flex-wrap: wrap;
  row-gap: 29px;
}

.tab-button {
  background: none;
  border: none;
  color: #2c3e50;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  position: relative;
  padding-bottom: 5px;
  font-family: var(--body-font);
  text-align: left;
  padding: 0px 30px 6px 0px;
  opacity: 70%;
}

.tab-button:hover,
.tab-button.active,
.tab-button.active::after {
  opacity: 100%;
}

.tab-button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: #2c3e50;
  transition: width 0.3s ease;
  opacity: 70%;
}

.collection-slider {
  display: none;
  opacity: 0;
  animation-name: fadeBlur;
  animation-timing-function: cubic-bezier(0.11, 0, 0.5, 0);
  animation-fill-mode: forwards;
  animation-duration: 0.3s;
  animation-iteration-count: 1;
}
@keyframes fadeBlur {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.collection-slider.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.tab-button.active::after {
  opacity: 100%;
  width: 100%;
}

.collection-slider-section .arrows-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
}
.collection-slider-section .arrow {
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: solid 1.5px #212d56;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #212d56;
  transition: all 0.2s ease-in-out;
}

.collection-slider-section .arrow:hover {
  background-color: #212d56;
  color: #fff;
  transition: all 0.2s ease-in-out;
}
.arrow.right {
  transform: rotate(-90deg);
}
.arrow.left {
  transform: rotate(90deg);
}
.arrow:disabled {
  opacity: 0.5;
  cursor: default;
}
.arrow:disabled:hover {
  background-color: #fff;
  color: #212d56;
}
