.big_home_slider {
  position: relative;
}
.big_home_slider .swiper-wrapper .swiper-slide a picture img {
  width: 100%;
  margin: 0 auto;
  object-fit: cover;
}
.big_home_slider .big_home_slider-button-next {
  cursor: pointer;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(calc(-50% - 50px));
  z-index: 1;
}
@media (max-width: 768px) {
  .big_home_slider .big_home_slider-button-next {
    display: none;
  }
}
.big_home_slider .big_home_slider-button-prev {
  cursor: pointer;
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(calc(-50% - 50px));
  z-index: 1;
}
@media (max-width: 768px) {
  .big_home_slider .big_home_slider-button-prev {
    display: none;
  }
}
.big_home_slider .big_home_slider-pagination {
  position: absolute;
  width: fit-content !important;
  top: initial !important;
  left: 40px !important;
  bottom: 50px !important;
  z-index: 1 !important;
  padding: 0 !important;
  display: flex;
}
/* Hide the big slider pagination on desktop only (visible on tablet/mobile) */
@media (min-width: 1121px) {
  .big_home_slider .big_home_slider-pagination {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .big_home_slider .big_home_slider-pagination {
    left: 20px !important;
    bottom: 20px !important;
  }
}
.big_home_slider .big_home_slider-pagination .swiper-pagination-bullet {
  width: 36px;
  height: 36px;
  border-radius: 0px !important;
  background: transparent !important;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  opacity: 1 !important;
  margin: 0px !important;
  padding: 1px;
}
.big_home_slider .big_home_slider-pagination .swiper-pagination-bullet:last-child {
  border-right: 1px solid #000;
}
.big_home_slider .big_home_slider-pagination .swiper-pagination-bullet:after {
  content: "";
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border: 1px solid #000;
  display: block;
  border-radius: 50%;
  opacity: 0;
}
.big_home_slider .big_home_slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  opacity: 1;
}

/* All home sliders share one box so their columns line up on the same
   vertical grid (padding gives the desktop hover-scale room to breathe) */
.swiper.products_home_slider,
.swiper.kits_home_slider,
.swiper.category_home_slider {
  padding: 10px !important;
}
.swiper .slider__header {
  display: flex;
  justify-content: flex-start;
  position: relative;
  margin-bottom: 35px;
}
@media (max-width: 768px) {
  .swiper .slider__header {
    margin-bottom: 15px;
    justify-content: flex-start;
  }
}
.swiper .slider__header .slider__header_title {
  font-size: var(--fs-heading);
  color: #141414;
}
@media (max-width: 768px) {
  .swiper .slider__header .slider__header_title {
    font-size: var(--fs-subhead-lg);
  }
}
.swiper .slider__header .slider__header_navigation {
  display: flex;
  position: absolute;
  gap: 10px;
  right: 0;
}
.swiper .category_link {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  justify-content: center;
  color: #000000;
  font-size: var(--fs-subhead);
  font-weight: var(--fw-strong);
  -webkit-text-stroke: 1px transparent;
  transition: 0.2s 0s;
}
.swiper .category_link:hover {
  -webkit-text-stroke: 1px #000000;
}
@media (max-width: 1120px) {
  .swiper .category_link:hover {
    -webkit-text-stroke: 1px transparent;
  }
}
@media (max-width: 768px) {
  .swiper .category_link {
    font-size: var(--fs-caption);
  }
}

.product__gallery {
  position: relative;
}
.product__gallery .swiper-slide {
  padding: 60px;
  background: #F1F1F1;
}
.product__gallery .swiper-slide img {
  display: block;
  width: 100%;
}
.product__gallery .product_slider-button-prev {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-100%);
  z-index: 1;
}
.product__gallery .product_slider-button-prev.swiper-button-disabled {
  display: none;
}
.product__gallery .product_slider-button-next {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-100%);
  z-index: 1;
}
.product__gallery .product_slider-button-next.swiper-button-disabled {
  display: none;
}
