.t888-pet-hot-deals-module {
  /* margin-bottom: 30px; */
  overflow: hidden;
  position: relative;
  width: 100%;
}

.t888-pet-hot-deals-module .hot-deals-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* margin-bottom: 30px; */
  flex-wrap: wrap;
  gap: 15px;
}

.t888-pet-hot-deals-module .hot-deals-header .header-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.t888-pet-hot-deals-module .hot-deals-header .hot-deals-title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
}

.t888-pet-hot-deals-module .hot-deals-countdown {
  display: flex;
  align-items: center;
  gap: 10px;
}

.t888-pet-hot-deals-module .hot-deals-countdown .cd-item {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #c8605f;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
  position: relative;
}

.t888-pet-hot-deals-module .hot-deals-countdown .cd-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 18px solid #c8605f;
  z-index: 1;
}

.t888-pet-hot-deals-module .hot-deals-countdown .cd-item span:first-child {
  font-weight: 700;
  font-size: 16px;
}

.t888-pet-hot-deals-module .hot-deals-countdown .cd-item span:last-child {
  font-size: 11px;
  text-transform: lowercase;
}

.t888-pet-hot-deals-module .hot-deals-header .header-nav {
  display: flex;
  gap: 10px;
}

.t888-pet-hot-deals-module .hot-deals-header .header-nav button {
  width: 32px;
  height: 32px;
  background-color: #000;
  color: #fff;
  border: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}

.t888-pet-hot-deals-module .hot-deals-header .header-nav button:hover {
  background-color: #c8605f;
}

.t888-pet-hot-deals-module .hot-deals-products {
  width: 100%;
}

.t888-pet-hot-deals-module .hot-deals-products .swiper-slide {
  height: auto;
}

.t888-pet-hot-deals-module .grid-product-item {
  border: 1px solid #ebebeb;
  padding: 20px;
  position: relative;
  background-color: #fff;
  height: 100%;
}

.t888-pet-hot-deals-module .grid-product-item .product-item-inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Badges */
.t888-pet-hot-deals-module .product-badges-wrap {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 9;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.t888-pet-hot-deals-module .product-item-inner .product-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

.t888-pet-hot-deals-module .product-item-inner .product-badge.new {
  background-color: #00b8c2;
}

.t888-pet-hot-deals-module .product-item-inner .product-badge.sale {
  background-color: #72bf42;
}

.t888-pet-hot-deals-module .product-item-inner .product-badge.hot {
  background-color: #e5476a;
}

/* Image */
.t888-pet-hot-deals-module .product-thumbnail {
  position: relative;
  margin-bottom: 15px;
  text-align: center;
  overflow: hidden;
}

.t888-pet-hot-deals-module .product-thumbnail img {
  max-width: 100%;
  height: auto;
  transition: all 0.5s ease;
}

.t888-pet-hot-deals-module .product-thumbnail .hover-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
}

.t888-pet-hot-deals-module .product-item-inner:hover .product-thumbnail .primary-img {
  opacity: 0;
}

.t888-pet-hot-deals-module .product-item-inner:hover .product-thumbnail .hover-img {
  opacity: 1;
}

.t888-pet-hot-deals-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-hot-deals-module .grid-product-item:hover .hover-actions-group {
  opacity: 1;
  visibility: visible;
}

.t888-pet-hot-deals-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-hot-deals-module .hover-actions-group .action-btn .icon-layer {
  font-size: 18px;
  line-height: 1;
  pointer-events: none;
  position: relative;
  z-index: 1;
}

.t888-pet-hot-deals-module .hover-actions-group .action-btn .btn-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.t888-pet-hot-deals-module .hover-actions-group .action-btn .btn-layer > div,
.t888-pet-hot-deals-module .hover-actions-group .action-btn .btn-layer > .yith-wcwl-add-to-wishlist,
.t888-pet-hot-deals-module .hover-actions-group .action-btn .btn-layer > .woocommerce,
.t888-pet-hot-deals-module .hover-actions-group .action-btn .btn-layer .yith-wcwl-add-button,
.t888-pet-hot-deals-module .hover-actions-group .action-btn .btn-layer .yith-wcwl-wishlistaddedbrowse,
.t888-pet-hot-deals-module .hover-actions-group .action-btn .btn-layer .yith-wcwl-wishlistexistsbrowse {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
}

.t888-pet-hot-deals-module .hover-actions-group .action-btn .btn-layer a,
.t888-pet-hot-deals-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-hot-deals-module .hover-actions-group .action-btn .btn-layer a::before,
.t888-pet-hot-deals-module .hover-actions-group .action-btn .btn-layer a::after,
.t888-pet-hot-deals-module .hover-actions-group .action-btn .btn-layer button::before,
.t888-pet-hot-deals-module .hover-actions-group .action-btn .btn-layer button::after {
  display: none !important;
}

.t888-pet-hot-deals-module .hover-actions-group .action-btn:hover {
  background: #c8605f !important;
  border-color: #c8605f !important;
}

.t888-pet-hot-deals-module .hover-actions-group .action-btn:hover .icon-layer i {
  color: #fff !important;
}

.t888-pet-hot-deals-module .hover-actions-group .btn-layer * {
  background-color: transparent !important;
}

.t888-pet-hot-deals-module .hover-actions-group .btn-layer .yith-wcwl-icon,
.t888-pet-hot-deals-module .hover-actions-group .btn-layer .ajax-loading,
.t888-pet-hot-deals-module .hover-actions-group .btn-layer .feedback,
.t888-pet-hot-deals-module .hover-actions-group .btn-layer .blockUI,
.t888-pet-hot-deals-module .hover-actions-group .btn-layer img {
  display: none !important;
  opacity: 0 !important;
}

.t888-pet-hot-deals-module .grid-horizontal-card {
  display: flex;
  align-items: stretch;
  position: relative;
  background: #fff;
  overflow: hidden;
  padding: 0 !important;
  height: 100%;
}

.t888-pet-hot-deals-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-hot-deals-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-hot-deals-module .grid-horizontal-card .hcard-image-col .hcard-img-link {
  display: block;
  width: 100%;
}

.t888-pet-hot-deals-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-hot-deals-module .grid-horizontal-card .hcard-image-col:hover .hcard-img-link img {
  transform: scale(1.04);
}

.t888-pet-hot-deals-module .grid-horizontal-card .hcard-info-col {
  flex: 1;
  padding: 22px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.t888-pet-hot-deals-module .grid-horizontal-card .hcard-category {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 4px;
}

.t888-pet-hot-deals-module .grid-horizontal-card .hcard-title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.t888-pet-hot-deals-module .grid-horizontal-card .hcard-title a {
  color: #222;
  text-decoration: none;
}

.t888-pet-hot-deals-module .grid-horizontal-card .hcard-title a:hover {
  color: #c8605f;
}

.t888-pet-hot-deals-module .grid-horizontal-card .hcard-rating {
  display: flex;
  gap: 2px;
  color: #f5a623;
  font-size: 15px;
  line-height: 1;
}

.t888-pet-hot-deals-module .grid-horizontal-card .hcard-rating i.empty {
  opacity: 0.3;
}

.t888-pet-hot-deals-module .grid-horizontal-card .hcard-price {
  font-size: 14px;
  font-weight: 700;
  color: #c8605f;
  line-height: 1.2;
  margin-bottom: 12px;
}

.t888-pet-hot-deals-module .grid-horizontal-card .hcard-price del {
  color: #bbb;
  font-weight: 400;
  font-size: 13px;
  margin-left: 6px;
}

.t888-pet-hot-deals-module .grid-horizontal-card .hcard-price ins {
  text-decoration: none;
}

.t888-pet-hot-deals-module .grid-horizontal-card .hcard-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.t888-pet-hot-deals-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-hot-deals-module .grid-horizontal-card .hcard-action-btn i {
  font-size: 17px;
  color: inherit;
  pointer-events: none;
}

.t888-pet-hot-deals-module .grid-horizontal-card .hcard-action-btn:hover {
  border-color: #c8605f;
  color: #c8605f;
}

.t888-pet-hot-deals-module .grid-horizontal-card .hcard-action-btn.disabled {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}

/* Content */
.t888-pet-hot-deals-module .product-content {
  text-align: left;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.t888-pet-hot-deals-module .product-title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.t888-pet-hot-deals-module .product-title a {
  color: #222;
  text-decoration: none;
  transition: color 0.3s;
}

.t888-pet-hot-deals-module .product-title a:hover {
  color: #c8605f;
}

/* Rating */
.t888-pet-hot-deals-module .product-rating {
  margin-bottom: 10px;
}

.t888-pet-hot-deals-module .star-rating {
  color: #ffc107;
  font-size: 13px;
  display: inline-block;
}

/* Price */
.t888-pet-hot-deals-module .product-price {
  font-size: 16px;
  font-weight: 700;
  color: #c8605f;
  margin-top: auto;
}

.t888-pet-hot-deals-module .product-price del {
  color: #999;
  font-weight: 400;
  font-size: 14px;
  margin-left: 8px; /* Move margin to left since sale is now on the left */
  text-decoration: line-through;
  opacity: 0.8;
}

.t888-pet-hot-deals-module .product-price ins {
  color: #c8605f;
  text-decoration: none;
}

/* Responsive Header */
@media (max-width: 768px) {
  .t888-pet-hot-deals-module .hot-deals-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/*# sourceMappingURL=t888-pet-hot-deals-carousel.css.map */
/* Home 2 variant */
.pet-hotdeal-home2 {
    .t888-pet-hot-deals-module {
        background-color: #ffe192;
        padding: 24px 30px 30px;
    }
    .t888-pet-hot-deals-module .hot-deals-header .header-nav button:hover{
      background-color: #ffc326;
    }

    .t888-pet-hot-deals-module .hot-deals-header {
        margin-bottom: 26px;
        align-items: center;
        gap: 20px;
    }

    .t888-pet-hot-deals-module .hot-deals-header .header-left {
        gap: 18px;
        align-items: end;
    }

    .t888-pet-hot-deals-module .hot-deals-header .hot-deals-title {
        color: #000;
        font-size: 30px;
        font-weight: bold;
        line-height: 1;
        text-transform: uppercase;
    }

    .t888-pet-hot-deals-module .hot-deals-countdown {
        gap: 2px;
    }

    .t888-pet-hot-deals-module .hot-deals-countdown .cd-item {
        width: 52px;
        height: 42px;
        border-radius: 0;
        background-color: #fff;
        color: #111;
        border: 1px solid #f0d79e;
    }

    .t888-pet-hot-deals-module .hot-deals-countdown .cd-item:not(:last-child)::after {
        display: none;
    }

    .t888-pet-hot-deals-module .hot-deals-countdown .cd-item span:first-child {
        font-size: 15px;
        line-height: 1;
    }

    .t888-pet-hot-deals-module .hot-deals-countdown .cd-item span:last-child {
        font-size: 10px;
        text-transform: lowercase;
        font-weight: 600;
    }

    .t888-pet-hot-deals-module .hot-deals-header .header-nav {
        gap: 4px;
    }

    .t888-pet-hot-deals-module .hot-deals-header .header-nav button {
        width: 30px;
        height: 30px;
        background-color: #000;
        font-size: 14px;
    }

    .t888-pet-hot-deals-module .grid-product-item {
        padding: 14px 14px 8px;
        border: 1px solid #d9d9d9;
        box-shadow: none;
    }

    .t888-pet-hot-deals-module .grid-product-item .product-item-inner {
        min-height: 100%;
    }

    .t888-pet-hot-deals-module .product-badges-wrap {
        top: 0;
        left: 0;
        gap: 8px;
    }

    .t888-pet-hot-deals-module .product-item-inner .product-badge {
        width: 40px;
        height: 40px;
        font-size: 12px;
        font-weight: 500;
    }

    .t888-pet-hot-deals-module .product-thumbnail {
        margin-bottom: 5px;
        min-height: 310px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .t888-pet-hot-deals-module .product-thumbnail img {
        /* max-height: 290px; */
        object-fit: contain;
    }

    .t888-pet-hot-deals-module .product-title {
        font-size: 14px;
        font-weight: bold;
        line-height: 33px;
        margin: 0;
    }

    .t888-pet-hot-deals-module .product-rating {
        margin-bottom: 0px;
    }

    .t888-pet-hot-deals-module .star-rating {
        font-size: 14px;
        line-height: 24px;
    }

    .t888-pet-hot-deals-module .product-price {
        font-size: 14px;
        font-weight: 700;
        line-height: 33px;
        color: #c8605f;
        margin:0 ;
    }

    .t888-pet-hot-deals-module .product-price del {
        color: #c8605f;
        font-size: 14px;
        font-weight: 700;
        line-height: 33px;
        opacity: 1;
        margin-left: 0;
    }

    .t888-pet-hot-deals-module .product-price ins {
        margin-right: 4px;
    }

    @media (max-width: 1024px) {
        .t888-pet-hot-deals-module {
            padding: 22px 20px 24px;
        }

        .t888-pet-hot-deals-module .product-thumbnail {
            min-height: 260px;
        }

        .t888-pet-hot-deals-module .product-thumbnail img {
            max-height: 240px;
        }
    }

    @media (max-width: 767px) {
        .t888-pet-hot-deals-module {
            padding: 18px 16px 20px;
        }

        .t888-pet-hot-deals-module .hot-deals-header {
            margin-bottom: 18px;
        }

        .t888-pet-hot-deals-module .hot-deals-header .hot-deals-title {
            font-size: 26px;
        }

        .t888-pet-hot-deals-module .hot-deals-countdown .cd-item {
            width: 48px;
            height: 40px;
        }

        .t888-pet-hot-deals-module .product-thumbnail {
            min-height: 220px;
        }

        .t888-pet-hot-deals-module .product-thumbnail img {
            max-height: 200px;
        }
    }
}
