.tnd-pg-widget * {
  box-sizing: border-box;
}

.tnd-pg-widget {
  width: 100%;
}

.tnd-pg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.tnd-pg-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
}

.tnd-pg-card__img-link {
  display: block;
  text-decoration: none;
}

.tnd-pg-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f7f7f7;
}

.tnd-pg-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Top-left ribbon */
.tnd-pg-card__ribbon {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  font-size: 9px;
  font-weight: 700;
  color: #1a1a1a;
  padding: 3px 7px;
  border-radius: 4px;
  line-height: 1.3;
  max-width: 75%;
}

/* Wishlist heart icon */
.tnd-pg-card__wishlist {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #555;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

/* Bottom-left feature badge (playback/battery) */
.tnd-pg-card__feature-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  z-index: 2;
  background: #000000;
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  line-height: 1.3;
}

.tnd-pg-card__rating {
  background: #ffffff;
  color: #1a1a1a;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.tnd-pg-card__body {
  padding: 10px 10px 12px;
}

.tnd-pg-card__title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tnd-pg-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.tnd-pg-card__price-current {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
}

.tnd-pg-card__price-original {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
}

.tnd-pg-card__bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  flex-wrap: wrap;
}

.tnd-pg-card__discount {
  font-size: 11px;
  font-weight: 600;
  color: #2e7d32;
}

.tnd-pg-card__colors {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.tnd-pg-card__color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
  display: inline-block;
}

.tnd-pg-card__color-extra {
  font-size: 10px;
  color: #666;
  font-weight: 600;
}

/* ===== Mobile: keep readable, allow shrink but stay tidy ===== */
@media (max-width: 767px) {
  .tnd-pg-grid {
    gap: 8px;
  }
  .tnd-pg-card__body {
    padding: 8px 8px 10px;
  }
  .tnd-pg-card__title {
    font-size: 12px;
  }
  .tnd-pg-card__price-current {
    font-size: 13px;
  }
  .tnd-pg-card__price-original {
    font-size: 10px;
  }
  .tnd-pg-card__discount {
    font-size: 10px;
  }
  .tnd-pg-card__ribbon,
  .tnd-pg-card__feature-badge {
    font-size: 8px;
    padding: 3px 6px;
  }
}
