/* ============================================================
   Woo Recensioner – Lista alla (isolera med wo-listall-*)
   ============================================================ */

.wo-listall-wrap {
  --wo-gap: 12px;
  --wo-radius: 10px;
  --wo-border: 1px solid #e9ecef;
  --wo-shadow: 0 1px 2px rgba(0,0,0,.04);
  --wo-muted: #6b7280;
  --wo-bg: #fff;
  --wo-pad: 16px;
  margin: 8px 0 16px;
}

.wo-listall-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--wo-gap);
}

.wo-listall-card {
  background: var(--wo-bg);
  border: var(--wo-border);
  border-radius: var(--wo-radius);
  box-shadow: var(--wo-shadow);
  padding: var(--wo-pad);
}

.wo-listall-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.wo-listall-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: #f3f4f6; color: #111827; font-weight: 700; font-size: 14px;
  box-shadow: inset 0 0 0 1px #e5e7eb; flex: 0 0 auto;
}
.wo-listall-avatar.is-image { background: transparent; box-shadow: none; padding: 0; }
.wo-listall-avatar-img { width: 40px; height: 40px; border-radius: 50%; display: block; object-fit: cover; }

.wo-listall-meta { display: flex; flex-direction: column; min-width: 0; }
.wo-listall-author { font-weight: 600; color: #111827; line-height: 1.2; }
.wo-listall-subline { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--wo-muted); margin-top: 2px; }

/* Woo stjärnor inline */
.wo-listall-subline .star-rating {
  float: none; margin: 0; line-height: 1; display: inline-block;
}

.wo-listall-content {
  color: #1f2937;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Mobilkompakt */
@media (max-width: 767px) {
  .wo-listall-wrap { --wo-pad: 12px; --wo-radius: 8px; }
  .wo-listall-card { padding: var(--wo-pad); }
  .wo-listall-content { font-size: 14px; line-height: 1.55; }
}

/* ======= Lista: Visa fler-knapp ======= */
.wo-listall-actions {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}
.wo-listall-more {
  appearance: none; -webkit-appearance: none;
  border: 1px solid #e5e7eb;
  background: #fafafa;
  color: #111827;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.wo-listall-more:hover {
  background: #f3f4f6;
  border-color: #e9ecef;
  box-shadow: 0 1px 2px rgba(0,0,0,.06);
}

/* Dölj extra items initialt */
.wo-listall-item.is-hidden { display: none; }
