.lwa-rv {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 16px;
}

.lwa-rv[hidden] { display: none; }

.lwa-rv__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #0b1f2a;
}

.lwa-rv__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.lwa-rv__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .15s ease, transform .15s ease;
}

.lwa-rv__card:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}

.lwa-rv__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 6px;
  background: #f9fafb;
  margin-bottom: 8px;
}
.lwa-rv__img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lwa-rv__body { display: flex; flex-direction: column; gap: 4px; }

.lwa-rv__name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: #0b1f2a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lwa-rv__price {
  font-size: 14px;
  font-weight: 700;
  color: #0b1f2a;
}

@media (max-width: 640px) {
  .lwa-rv__grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 8px; }
  .lwa-rv__title { font-size: 17px; }
}
