.pet-cate-carousel-home2 {
  --pet-cate-carousel-home2-gap: 16px;
  position: relative;
  width: 100%;
}
.pet-cate-carousel-home2__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  padding: 14px 30px;
}
.pet-cate-carousel-home2__title {
  margin: 0;
  color: #111111;
  font-family: "Philosopher", serif;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
}
.pet-cate-carousel-home2__nav {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.pet-cate-carousel-home2__nav.is-hidden {
  display: none;
}
.pet-cate-carousel-home2__nav button {
  width: 31px;
  height: 31px;
  border: 0;
  border-radius: 0;
  background: #000000;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.pet-cate-carousel-home2__nav button:hover {
  background: #c8605f;
  color: #ffffff;
}
.pet-cate-carousel-home2__swiper {
  overflow: hidden;
  padding-left: 30px;
  padding-right: 30px;
}
.pet-cate-carousel-home2__swiper .swiper-wrapper {
  align-items: stretch;
}
.pet-cate-carousel-home2__swiper.is-slider-disabled {
  overflow: visible;
}
.pet-cate-carousel-home2__swiper.is-slider-disabled .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: var(--pet-cate-carousel-home2-gap);
  transform: none !important;
}
.pet-cate-carousel-home2__swiper.is-slider-disabled .swiper-slide {
  width: auto !important;
  margin-right: 0 !important;
}
.pet-cate-carousel-home2__slide {
  height: auto;
}
.pet-cate-carousel-home2__card-link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.pet-cate-carousel-home2__card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 386px;
  height: 100%;
  overflow: hidden;
  background: #faeaea;
  padding: 28px 16px 20px;
}
.pet-cate-carousel-home2__image {
  position: absolute;
  top: 28px;
  left: 50%;
  z-index: 1;
  width: 100% ;
  /* width: calc(100%-20px); */
  transform: translateX(-50%);
  text-align: center;
  pointer-events: none;
}
.pet-cate-carousel-home2__image img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.pet-cate-carousel-home2__content {
  position: relative;
  z-index: 2;
}
.pet-cate-carousel-home2__card-title {
  margin: 0;
  color: #111111;
  font-family: "Philosopher", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 33px;
  text-transform: uppercase;
}
.pet-cate-carousel-home2__count {
  display: block;
  color: #2b2b2b;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .pet-cate-carousel-home2__header {
    align-items: flex-start;
    flex-direction: column;
  }
  .pet-cate-carousel-home2__title {
    font-size: 24px;
  }
  .pet-cate-carousel-home2__card {
    min-height: 320px;
  }
}
