.vr {
  background: var(--vierlot-bg);
  padding: 60px 0;
  font-family: var(--vierlot-font);
}
.vr__head {
  text-align: center;
  margin-bottom: 32px;
}
.vr__title {
  font-family: var(--vierlot-font);
  font-size: 24px;
  font-weight: 500;
  color: var(--vierlot-text);
  margin: 0;
  line-height: 1.3;
}
.vr__subtitle {
  font-family: var(--vierlot-font);
  font-size: 14px;
  font-weight: 400;
  color: var(--vierlot-text-light);
  margin: 12px 0 0;
}

.vr__summary {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 28px 0;
  border-top: 1px solid var(--vierlot-line);
  border-bottom: 1px solid var(--vierlot-line);
  margin-bottom: 32px;
}
.vr__summary-score {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 180px;
}
.vr__avg {
  font-size: 52px;
  font-weight: 500;
  color: var(--vierlot-text);
  line-height: 1;
}
.vr__summary-count {
  font-size: 12px;
  color: var(--vierlot-text-muted);
}
.vr__dist {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 460px;
}
.vr__dist-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--vierlot-text-light);
}
.vr__dist-label {
  flex: 0 0 14px;
  text-align: right;
  color: var(--vierlot-text-muted);
}
.vr__dist-bar {
  flex: 1 1 auto;
  height: 6px;
  background: var(--vierlot-line);
  display: block;
  overflow: hidden;
}
.vr__dist-bar i {
  display: block;
  height: 100%;
  background: var(--vierlot-star);
}
.vr__dist-pct {
  flex: 0 0 34px;
  text-align: right;
  color: var(--vierlot-text-muted);
}

.vr__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.vr__card {
  border: 1px solid var(--vierlot-line);
  background: #FAF8F3;
  padding: 24px;
}
.vr__card--extra {
  display: none;
}
.vr.vr--expanded .vr__card--extra {
  display: block;
}
.vr__card-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}
.vr__avatar {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--vierlot-line);
  background-size: cover;
  background-position: center;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.vr__id {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.vr__name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.vr__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--vierlot-text);
}
.vr__verified {
  font-size: 11px;
  color: #2E7D46;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.vr__verified::before {
  content: "\2713";
  font-size: 11px;
}
.vr__loc {
  font-size: 12px;
  color: var(--vierlot-text-muted);
}
.vr__date {
  flex: 0 0 auto;
  font-size: 12px;
  color: var(--vierlot-text-muted);
  white-space: nowrap;
}

.vr__stars {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 3px;
  white-space: nowrap;
}
.vr__stars--lg {
  font-size: 20px;
}
.vr__stars-base {
  color: var(--vierlot-disabled);
}
.vr__stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  overflow: hidden;
  color: var(--vierlot-star);
  white-space: nowrap;
}

.vr__purchased {
  font-size: 12px;
  color: var(--vierlot-text-muted);
  margin: 10px 0 0;
}
.vr__purchased span {
  color: var(--vierlot-text-light);
}
.vr__body {
  font-size: 14px;
  font-weight: 400;
  color: var(--vierlot-text-light);
  line-height: 1.7;
  margin: 12px 0 0;
}
.vr__photos {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.vr__photos:empty {
  display: none;
}
.vr__thumb {
  width: 72px;
  height: 72px;
  padding: 0;
  border: 1px solid var(--vierlot-line);
  background: none;
  cursor: pointer;
  overflow: hidden;
  display: block;
}
.vr__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.vr__thumb:hover img {
  transform: scale(1.06);
}

.vr__more {
  text-align: center;
  margin-top: 28px;
}
.vr__more-btn {
  border: 1px solid var(--vierlot-text);
  background: transparent;
  color: var(--vierlot-text);
  padding: 12px 32px;
  font-family: var(--vierlot-font);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.vr__more-btn:hover {
  background: var(--vierlot-text);
  color: var(--vierlot-bg);
}

.vr__lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.vr__lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}
.vr__lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 40px;
  height: 40px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 768px) {
  .vr {
    padding: 40px 0;
  }
  .vr__title {
    font-size: 22px;
  }
  .vr__summary {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .vr__summary-score {
    min-width: 0;
    flex-direction: row;
    justify-content: center;
    align-items: baseline;
    gap: 14px;
  }
  .vr__avg {
    font-size: 40px;
  }
  .vr__dist {
    max-width: none;
  }
  .vr__card {
    padding: 18px;
  }
  .vr__card-head {
    gap: 12px;
  }
  .vr__avatar {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }
  .vr__thumb {
    width: 64px;
    height: 64px;
  }
}
