/* CONTENEDOR */
.cards-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 10px;
}

/* CARD */
.pc-card {
  width: 180px;
  min-width: 180px;
  height: 240px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

/* IMG */
.pc-card-img {
  height: 120px;
  width: 100%;
}

.pc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.pc-card-body {
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.pc-title {
  font-size: 13px;
  font-weight: 600;
}

.pc-store {
  font-size: 12px;
  color: #777;
}

.pc-price {
  font-size: 14px;
  font-weight: bold;
  color: #ff6a00;
}

.pc-rating {
  font-size: 11px;
  color: #f59e0b;
}
