.best-seller-card {
  position: relative;
  height: 100%;
}

.best-seller-card .product-badge {
  top: -10px;
  right: 10px;
}

.best-seller-card .trc-product-card-horizontal {
  display: flex;
  flex-direction: row;
  height: 200px;
  padding: 12px;
  overflow: hidden;
  border: 1px solid var(--border-fotsy);
  border-radius: 15px;
  background: var(--fotsy);
  text-decoration: none;
  transition: var(--transition);
}

.best-seller-card .trc-product-card-horizontal:hover {
  transform: translateY(-2px);
}

.best-seller-card .trc-img-container {
  display: flex;
  flex: 0 0 40%;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.best-seller-card .trc-img-container img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.best-seller-card .trc-content-body {
  display: flex;
  flex: 0 0 60%;
  flex-direction: column;
  justify-content: center;
  padding-left: 15px;
  text-align: left;
}

.best-seller-card .trc-price-box .prix_de_base {
  margin-top: auto;
  color: var(--vert);
  font-size: 1rem;
  font-weight: 800;
}

@media (max-width: 991px) {
  .best-seller-card .trc-product-card-horizontal {
    height: 250px;
  }
}
