.best-swiper-btn {
  width: 50px;
  height: 50px;
  background-color: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.best-swiper-btn img {
  width: 35px;
  height: 35px;
  transition: all 0.3s ease;
}
.best-swiper-btn:hover {
  background-color: #ff8c40;
}
.best-swiper-btn:hover img {
  filter: brightness(0) invert(1);
}
.best-seller-card {
  width: 100%;
  height: 350px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.product-floating-box {
  position: absolute;
  bottom: 10px;
  left: 140px;
  right: 10px;
  background: #fff;
  border-radius: 15px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.product-float-thumb {
  width: 90px;
  height: 90px;
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.3s ease;
  overflow: hidden;
}
.product-float-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}
.product-floating-box:hover .product-float-thumb {
  border-color: #ff8c40;
}
.product-float-meta {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.product-float-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-float-price {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  gap: 8px;
  width: 100%;
  font-size: 16px;
  font-weight: 800;
  color: #ff8c40;
}
.product-float-price ins {
  text-decoration: none;
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  order: 1;
}
.product-float-price del {
  color: #aaa;
  font-size: 13px;
  font-weight: 400;
  order: 2;
  opacity: 0.8;
}
.product-float-price > span.amount {
  color: #ff8c40;
  font-weight: 800;
}
