.tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  overflow-x: auto; /* Enable horizontal scrolling on mobile */
  white-space: nowrap; /* Prevents tabs from wrapping to a new line */
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 968px) {
  .tabs {
    margin-bottom: 30px !important;
  }
  .collection-slider-section .tabs {
    margin-bottom: 20px !important;
  }
}

.collection-slider-section .tabs {
  margin-bottom: 30px !important;
}
.tab-button {
  background: none;
  border: none;
  color: #000;
  font-size: 20px;
  font-weight: 400;
  cursor: pointer;
  position: relative;
  padding-bottom: 5px;
  font-family: var(--body-font);
  text-align: left;
  padding: 0 0 7px;
  margin-right: 46px;
  opacity: 50%;
}

.tab-button:hover,
.tab-button.active,
.tab-button.active::after {
  opacity: 100%;
}

.tab-button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #05a886;
  transition: width 0.3s ease;
  opacity: 70%;
  display: inline-block;
}

.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;
  padding-top: 0;
  transform: translateX(0);
}

.tab-button.active::after {
  opacity: 100%;
  width: 100%;
}

.collection-slider-section {
  /* margin-top: 60px; */
  padding-inline: 0;
  margin-block: 0 !important;
  margin-top: 3rem !important;
}

.collection-slider-section .price-item {
  font-size: 20px !important;
  font-weight: 400 !important;
}

.collection-slider-section .arrows-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-block: 25px;
  margin-right: 20px;
}
.collection-slider-section .arrow {
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: solid 1.5px #05a886;
  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: #05a886;
  color: #fff;
  transition: all 0.2s ease-in-out;
}
.collection-slider-section .arrow:hover svg path {
  fill: #fff;
}
.arrow.right {
  transform: rotate(-90deg) !important;
}
.arrow.left {
  transform: rotate(90deg) !important;
}
.arrow:disabled {
  opacity: 0.5;
  cursor: default;
}
.arrow:disabled:hover {
  background-color: #fff;
  color: #212d56;
}

.collection-slider-section .card .price {
  position: static !important;
}

.stock-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stock-status .pr-stock-indicator {
  display: block;
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
}

.stock-status .stock-status-text {
  font-size: 15px;
  font-weight: 400;
  color: #343434;
}

@media (max-width: 768px) {
  .tab-button {
    font-size: 16px; /* Smaller font size on mobile */
    margin-right: 10px !important;
  }
}

@media (max-width: 1360px) {
  #arrows_mobile {
    display: block !important;
  }
}
#arrows_mobile {
  display: none;
}
