.bt-card-product {
  display: block;
  border: 1px solid #272C35;
  border-radius: 8px;
  overflow: hidden;
  background: transparent; /* sem fundo */
  text-decoration: none;
  color: inherit;
}

/* Espaço interno geral */
.bt-card-image {
  width: 100%;
  padding: 6px; /* afasta da borda */
  box-sizing: border-box;
}

.bt-card-image-inner {
  width: 100%;
  aspect-ratio: 16 / 9; /* 1280x720 */
  overflow: hidden;
  border-radius: 6px;
}

.bt-card-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bt-card-body {
  padding: 0 14px 14px;
}

.bt-card-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 8px;
  color: #fff;
}

.bt-card-price {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #FFDF00;
}

.bt-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #9aa0a6;
}

.bt-card-user {
  font-weight: 300;
  color: #fff;
  font-size: 8px;
}

.bt-card-date {
  font-weight: 300;
  color: #fff;
  font-size: 8px;
}
