.t888-pet-shop-carousel-module {
  position: relative;
  width: 100%;
  padding: 0;
  border-top: 1px solid #f4b183;
  border-bottom: 0;
  overflow: hidden;
  background-color: #fff;
}

.t888-pet-shop-carousel-module .pet-shop-carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 30px;
  margin-bottom: 0;
  border-bottom: 1px solid #e6e6e6;
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.t888-pet-shop-carousel-module .header-left {
  display: flex;
  align-items: end;
  gap: 25px;
  flex: 1;
  min-width: 0;
}

.t888-pet-shop-carousel-module .pet-shop-carousel-title {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  flex: 0 0 auto;
  color: #000;
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  font-family: var(--font-philosopher);
}

.t888-pet-shop-carousel-module .pet-shop-carousel-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.t888-pet-shop-carousel-module .pet-shop-carousel-menu::-webkit-scrollbar {
  display: none;
}

.t888-pet-shop-carousel-module .pet-shop-carousel-menu .menu-item {
  padding: 0;
  border: 0;
  background: transparent;
  color: #000;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 2;
  opacity: 0.8;
  pointer-events: auto;
  font-family: var(--font-family);
}

.t888-pet-shop-carousel-module .pet-shop-carousel-menu .menu-item:hover,
.t888-pet-shop-carousel-module .pet-shop-carousel-menu .menu-item.is-active {
  color: #f2af80;
}

.t888-pet-shop-carousel-module .pet-shop-carousel-panel[hidden] {
  display: none !important;
}

.t888-pet-shop-carousel-module .header-nav {
  display: flex;
  gap: 4px;
  flex: 0 0 auto;
  position: relative;
  z-index: 25;
}

.t888-pet-shop-carousel-module .header-nav button {
  width: 30px;
  height: 30px;
  border: 0;
  background: #000;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.t888-pet-shop-carousel-module .header-nav button:hover {
  background: #c8605f;
}

.t888-pet-shop-carousel-module .pet-shop-carousel-list {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 19px 10px 10px;
}

.t888-pet-shop-carousel-module .pet-shop-carousel-tabs {
  width: 100%;
  position: relative;
  z-index: 1;
}

.t888-pet-shop-carousel-module .pet-shop-carousel-empty {
  margin: 0;
  color: #444;
  font-size: 16px;
}

.t888-pet-shop-carousel-module .pet-shop-carousel-list .swiper-slide {
  height: auto;
}

.t888-pet-shop-carousel-module .pet-shop-carousel-list .swiper-wrapper>.pet-shop-carousel-empty {
  width: 100%;
}

.t888-pet-shop-carousel-module .grid-product-item {
  padding: 0 10px 8px;
  border: 0;
  background: transparent;
  height: 100%;
  box-shadow: none;
  transition: transform 0.3s ease;
}

.t888-pet-shop-carousel-module .grid-product-item:hover {
  /* transform: translateY(-2px); */
}

.t888-pet-shop-carousel-module .product-item-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  min-height: 100%;
}

.t888-pet-shop-carousel-module .product-badges-wrap {
  top: 0;
  left: 0;
  gap: 8px;
}

.t888-pet-shop-carousel-module .product-item-inner .product-badge {
  width: 40px;
  height: 40px;
  font-size: 12px;
  font-weight: 500;
}

.t888-pet-shop-carousel-module .product-thumbnail {
  margin-bottom: 11px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  min-height: 310px;
}

.t888-pet-shop-carousel-module .product-thumbnail img {
  max-width: 100%;

  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
  object-fit: contain;
}

.t888-pet-shop-carousel-module .product-thumbnail .hover-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: none;
  opacity: 0;
}

.t888-pet-shop-carousel-module .product-item-inner:hover .product-thumbnail .primary-img {
  opacity: 0;
}

.t888-pet-shop-carousel-module .product-item-inner:hover .product-thumbnail .hover-img {
  /* transform: scale(2); */
  opacity: 1;
}

.t888-pet-shop-carousel-module .hover-actions-group {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
}

.t888-pet-shop-carousel-module .grid-product-item:hover .hover-actions-group {
  opacity: 1;
  visibility: visible;
}

.t888-pet-shop-carousel-module .hover-actions-group .action-btn {
  width: 42px;
  height: 42px;
  background: #fff;
  border: 1px solid #ebebeb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.t888-pet-shop-carousel-module .hover-actions-group .action-btn .icon-layer {
  font-size: 18px;
  line-height: 1;
  pointer-events: none;
  position: relative;
  z-index: 1;
}

.t888-pet-shop-carousel-module .hover-actions-group .action-btn .btn-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.t888-pet-shop-carousel-module .hover-actions-group .action-btn .btn-layer > div,
.t888-pet-shop-carousel-module .hover-actions-group .action-btn .btn-layer > .yith-wcwl-add-to-wishlist,
.t888-pet-shop-carousel-module .hover-actions-group .action-btn .btn-layer > .woocommerce,
.t888-pet-shop-carousel-module .hover-actions-group .action-btn .btn-layer .yith-wcwl-add-button,
.t888-pet-shop-carousel-module .hover-actions-group .action-btn .btn-layer .yith-wcwl-wishlistaddedbrowse,
.t888-pet-shop-carousel-module .hover-actions-group .action-btn .btn-layer .yith-wcwl-wishlistexistsbrowse {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
}

.t888-pet-shop-carousel-module .hover-actions-group .action-btn .btn-layer a,
.t888-pet-shop-carousel-module .hover-actions-group .action-btn .btn-layer button {
  width: 100%;
  height: 100%;
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  background: transparent !important;
  color: transparent !important;
  box-shadow: none !important;
  text-shadow: none !important;
  font-size: 0 !important;
  line-height: 42px !important;
  overflow: hidden !important;
}

.t888-pet-shop-carousel-module .hover-actions-group .action-btn .btn-layer a::before,
.t888-pet-shop-carousel-module .hover-actions-group .action-btn .btn-layer a::after,
.t888-pet-shop-carousel-module .hover-actions-group .action-btn .btn-layer button::before,
.t888-pet-shop-carousel-module .hover-actions-group .action-btn .btn-layer button::after {
  display: none !important;
}

.t888-pet-shop-carousel-module .hover-actions-group .action-btn:hover {
  background: #c8605f !important;
  border-color: #c8605f !important;
}

.t888-pet-shop-carousel-module .hover-actions-group .action-btn:hover .icon-layer i {
  color: #fff !important;
}

.t888-pet-shop-carousel-module .hover-actions-group .btn-layer * {
  background-color: transparent !important;
}

.t888-pet-shop-carousel-module .hover-actions-group .btn-layer .yith-wcwl-icon,
.t888-pet-shop-carousel-module .hover-actions-group .btn-layer .ajax-loading,
.t888-pet-shop-carousel-module .hover-actions-group .btn-layer .feedback,
.t888-pet-shop-carousel-module .hover-actions-group .btn-layer .blockUI,
.t888-pet-shop-carousel-module .hover-actions-group .btn-layer img {
  display: none !important;
  opacity: 0 !important;
}

.t888-pet-shop-carousel-module .grid-horizontal-card {
  display: flex;
  align-items: stretch;
  position: relative;
  background: #fff;
  overflow: hidden;
  padding: 0 !important;
  height: 100%;
}

.t888-pet-shop-carousel-module .grid-horizontal-card .hcard-image-col {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
}

.t888-pet-shop-carousel-module .grid-horizontal-card .hcard-image-col .product-badges-wrap {
  position: absolute;
  top: 18px;
  left: 10px;
  right: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}

.t888-pet-shop-carousel-module .grid-horizontal-card .hcard-image-col .hcard-img-link {
  display: block;
  width: 100%;
}

.t888-pet-shop-carousel-module .grid-horizontal-card .hcard-image-col .hcard-img-link img {
  width: 180px;
  max-width: 100%;
  height: 220px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.t888-pet-shop-carousel-module .grid-horizontal-card .hcard-image-col:hover .hcard-img-link img {
  transform: scale(1.04);
}

.t888-pet-shop-carousel-module .grid-horizontal-card .hcard-info-col {
  flex: 1;
  padding: 22px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.t888-pet-shop-carousel-module .grid-horizontal-card .hcard-category {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 4px;
}

.t888-pet-shop-carousel-module .grid-horizontal-card .hcard-title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.t888-pet-shop-carousel-module .grid-horizontal-card .hcard-title a {
  color: #222;
  text-decoration: none;
}

.t888-pet-shop-carousel-module .grid-horizontal-card .hcard-title a:hover {
  color: #c8605f;
}

.t888-pet-shop-carousel-module .grid-horizontal-card .hcard-rating {
  display: flex;
  gap: 2px;
  color: #f5a623;
  font-size: 15px;
  line-height: 1;
}

.t888-pet-shop-carousel-module .grid-horizontal-card .hcard-rating i.empty {
  opacity: 0.3;
}

.t888-pet-shop-carousel-module .grid-horizontal-card .hcard-price {
  font-size: 14px;
  font-weight: 700;
  color: #c8605f;
  line-height: 1.2;
  margin-bottom: 12px;
}

.t888-pet-shop-carousel-module .grid-horizontal-card .hcard-price del {
  color: #bbb;
  font-weight: 400;
  font-size: 13px;
  margin-left: 6px;
}

.t888-pet-shop-carousel-module .grid-horizontal-card .hcard-price ins {
  text-decoration: none;
}

.t888-pet-shop-carousel-module .grid-horizontal-card .hcard-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.t888-pet-shop-carousel-module .grid-horizontal-card .hcard-action-btn {
  width: 42px;
  height: 42px;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
  text-decoration: none;
  transition: all 0.3s ease;
}

.t888-pet-shop-carousel-module .grid-horizontal-card .hcard-action-btn i {
  font-size: 17px;
  color: inherit;
  pointer-events: none;
}

.t888-pet-shop-carousel-module .grid-horizontal-card .hcard-action-btn:hover {
  border-color: #c8605f;
  color: #c8605f;
}

.t888-pet-shop-carousel-module .grid-horizontal-card .hcard-action-btn.disabled {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}

.t888-pet-shop-carousel-module .product-content {
  text-align: left;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.t888-pet-shop-carousel-module .product-title {
  font-size: 14px;
  font-weight: bold;
  line-height: 33px;
  margin: 0;
}

.t888-pet-shop-carousel-module .product-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.t888-pet-shop-carousel-module .product-title a:hover {
  color: #c8605f;
}

.t888-pet-shop-carousel-module .product-rating {
  margin-bottom: 0px;
}

.t888-pet-shop-carousel-module .star-rating {
  font-size: 14px;
  line-height: 24px;
}

.t888-pet-shop-carousel-module .product-price {
  font-size: 14px;
  font-weight: 700;
  line-height: 33px;
  color: #c8605f;
  margin: 0;
}

.t888-pet-shop-carousel-module .product-price ins {
  color: inherit;
  text-decoration: none;
  margin-right: 4px;
}

.t888-pet-shop-carousel-module .product-price del {
  margin-left: 0;
  color: #d76163;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  opacity: 1;
}

@media (max-width: 1199px) {
  .t888-pet-shop-carousel-module .pet-shop-carousel-menu {
    gap: 24px;
  }

  .t888-pet-shop-carousel-module .pet-shop-carousel-menu .menu-item {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .t888-pet-shop-carousel-module .pet-shop-carousel-header {
    align-items: flex-start;
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }

  .t888-pet-shop-carousel-module .header-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
  }

  .t888-pet-shop-carousel-module .product-thumbnail {
    min-height: 240px;
  }

  .t888-pet-shop-carousel-module .product-thumbnail img {
    max-height: 210px;
  }
}

@media (max-width: 767px) {
  .t888-pet-shop-carousel-module .pet-shop-carousel-title {
    font-size: 26px;
  }

  .t888-pet-shop-carousel-module .pet-shop-carousel-menu {
    gap: 18px;
  }

  .t888-pet-shop-carousel-module .pet-shop-carousel-menu .menu-item {
    font-size: 15px;
  }

  .t888-pet-shop-carousel-module .pet-shop-carousel-header {
    padding: 14px 16px 12px;
  }

  .t888-pet-shop-carousel-module .pet-shop-carousel-list {
    padding: 20px 8px 12px;
  }

  .t888-pet-shop-carousel-module .grid-product-item {
    padding: 0 8px 8px;
  }

  .t888-pet-shop-carousel-module .product-thumbnail {
    min-height: 190px;
    margin-bottom: 14px;
  }

  .t888-pet-shop-carousel-module .product-thumbnail img {
    max-height: 165px;
  }
}
