.card-product {
  height: 430px;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: center;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.card-product:hover {
  border-color: #eee;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.card-product-img-container {
  height: 240px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  margin-top: 10px;
  flex-shrink: 0;
}

.card-product .thumb {
  max-height: 220px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  padding: 10px;
  transition: transform 0.3s ease-out;
}

.card-product:hover .thumb {
  transform: translateY(-8px);
}
.card-product-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 0 10px 15px 10px;
}

.cp-title {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 400;
  text-transform: uppercase;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 5px;
}

.cp-title a {
  color: #333;
}

.rating {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 15px;
}

.rating i {
  font-size: 16px;
}

.star-filled {
  color: #ffc107;
}

.star-empty {
  color: #e0e0e0;
}

/* Preço */
.price-wrapper {
  margin-bottom: 15px;
}

.cp-price-usd {
  font-size: 23px;
  color: #333333;
  font-weight: 700;
  line-height: 1;
}

.cp-price-usd.price-promo {
  color: #FF1520;
}

.cp-price-old {
  text-decoration: line-through;
}

.cp-code {
  font-size: 13px;
  color: #888;
  text-transform: uppercase;
}

.product-badge {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FF1520;
  color: #fff;
  padding: 3px 18px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 4px;
  z-index: 2;
}

.product-semestoque {
  position: absolute;
  top: 0px;
  right: -22%;
  transform: translateX(-50%);
  background-color: #d48b00;
  color: #ffffff;
  padding: 3px 13px;
  font-size: 14px;
  border-radius: 5px;
  z-index: 2;
}

@media (max-width: 767px) {
  .card-product {
    height: 320px;
  }

  .card-product-img-container {
    height: 150px;
  }

  .card-product .thumb {
    max-height: 140px;
  }

  .cp-title {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .rating {
    margin-bottom: 10px;
  }

  .rating i {
    font-size: 13px;
  }

  .cp-price-usd {
    font-size: 20px;
  }

  .price-wrapper {
    margin-bottom: 10px;
  }
}
