/* ===========================
   REVIEWS — Severimgs Style
   Nude + mint + soft glass
=========================== */

#reviews {
  --rv-bg-main: #f5f5f7;
  --rv-bg-soft: #fef7f2;
  --rv-card-bg: rgba(255, 255, 255, 0.92);
  --rv-card-border: rgba(148, 163, 184, 0.4);

  --rv-text-main: var(--color-text-main, #111827);
  --rv-text-muted: var(--color-text-soft, #6b7280);

  --rv-accent-orange: #ff7a32;
  --rv-accent-mint: #22c55e;
}

/* контейнер секции */
#reviews {
  padding: 3rem 0;
  background: transparent;
}

/* контейнер свайпера */
#reviews .swiper {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
}

/* шапка секции */
.rv-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  text-align: left;
  gap: 14px;
}

.rv-kicker {
  grid-column: 1 / -1;
  color: var(--rv-text-muted);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
}

.rv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7a32, #f97316);
}

.rv-title {
  margin: 0;
  color: var(--rv-text-main);
  font-family: var(--font-display, "DM Serif Display", serif);
  font-size: 26px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* контролы */
.rv-controls {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* кнопки навигации */
.rev-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: #ffffff;
  color: var(--rv-text-main);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.16s ease,
    box-shadow 0.18s ease;
}

.rev-btn:hover {
  background: linear-gradient(135deg, #ff7a32, #ff6a2f);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(255, 122, 50, 0.45);
}

/* карточки */
.rv-card {
  background: var(--rv-card-bg);
  border: 1px solid var(--rv-card-border);
  border-radius: 22px;
  padding: 18px 20px;
  color: var(--rv-text-main);
  display: flex;
  flex-direction: column;
  height: 270px;
  box-shadow: none;
  backdrop-filter: blur(14px);
  /* transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease; */
}

.rv-card:hover {
  border-color: rgba(148, 163, 184, 0.7);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: none;
  /* transform: translateY(-2px); */
}

/* верх карточки */
.rv-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.rv-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 0 0, #fef3e7, #e0f7f2);
  border: 1px solid rgba(148, 163, 184, 0.5);
  overflow: hidden;
}

.rv-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rv-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
  margin: 0;
}

.rv-meta strong {
  color: var(--rv-text-main);
  font-weight: 700;
  font-size: 15px;
}

.rv-meta span {
  font-size: 12px;
  color: var(--rv-text-muted);
}

.rv-rate {
  margin-left: auto;
  color: var(--rv-accent-orange);
  font-weight: 700;
  font-size: 14px;
}

/* текст отзыва */
.rv-quote {
  font-size: 14px;
  line-height: 1.5;
  margin: 6px 0 12px;
  color: var(--rv-text-muted);
  flex-grow: 1;
}

/* теги */
.rv-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.rv-tags span {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f3f4ff;
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--rv-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* мини-лейблы (например BEST ROUND) */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #fff0e2;
  color: #7c2d12;
  border: 1px solid rgba(248, 148, 72, 0.9);
}

/* адаптив */
@media (max-width: 980px) {
  .rv-card {
    height: auto;
    width: 95%;
    margin-inline: auto;
    padding: 16px;
  }

  .rv-title {
    font-size: 22px;
  }
}

@media (max-width: 640px) {
  .rv-card {
    width: 95%;
    height: auto;
    margin-inline: auto;
    padding: 16px;
  }

  .rv-quote {
    font-size: 13.5px;
  }

  .rv-controls {
    justify-content: flex-start;
  }
}
