/* ================================================
   REVIEWS PAGE - EXTRA STYLES
   ================================================ */

/* REVIEWS HERO */
.reviews-hero {
  padding: 140px 0 60px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.reviews-hero-content { text-align: center; }
.reviews-hero-content .section-title { margin-bottom: 1rem; }
.reviews-hero-content .section-desc { margin-bottom: 2.5rem; }

.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  max-width: 800px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.summary-score {
  display: flex;
  align-items: center;
  gap: 14px;
}

.big-score {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.big-stars { font-size: 1.3rem; color: var(--accent); margin-bottom: 4px; }
.score-label { font-size: 0.8rem; color: var(--text-muted); }

.summary-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 200px;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-bar > span:first-child {
  font-size: 0.78rem;
  color: var(--text-muted);
  width: 24px;
  text-align: right;
}

.rating-bar > span:last-child {
  font-size: 0.78rem;
  color: var(--text-muted);
  width: 28px;
}

.bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 100px;
  transition: width 1s ease;
}

.summary-stats {
  display: flex;
  gap: 28px;
}

.sum-stat { text-align: center; }
.sum-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.sum-label { font-size: 0.75rem; color: var(--text-muted); }

/* FILTER */
.reviews-filter-section {
  padding: 24px 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 68px;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.filter-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }

.filter-tab {
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.filter-tab:hover { border-color: var(--border-accent); color: var(--accent); }
.filter-tab.active { background: var(--accent); border-color: var(--accent); color: #000; }

.sort-select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 32px 8px 14px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: var(--transition);
}

.sort-select:hover, .sort-select:focus { border-color: var(--border-accent); color: var(--text-primary); }

/* REVIEWS MAIN */
.reviews-main { padding: 60px 0 80px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 2.5rem;
}

/* REVIEW CARD */
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  animation: cardFadeIn 0.5s ease forwards;
}

@keyframes cardFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

.review-card:nth-child(1) { animation-delay: 0.05s; }
.review-card:nth-child(2) { animation-delay: 0.10s; }
.review-card:nth-child(3) { animation-delay: 0.15s; }
.review-card:nth-child(4) { animation-delay: 0.20s; }
.review-card:nth-child(5) { animation-delay: 0.25s; }
.review-card:nth-child(6) { animation-delay: 0.30s; }
.review-card:nth-child(7) { animation-delay: 0.35s; }
.review-card:nth-child(8) { animation-delay: 0.40s; }
.review-card:nth-child(9) { animation-delay: 0.45s; }

.review-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 30px rgba(200,241,53,0.06);
}

.review-card.featured-review {
  background: linear-gradient(135deg, #141a08 0%, #0f1a04 100%);
  border-color: rgba(200,241,53,0.3);
}

.review-card.hidden { display: none; }

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(200,241,53,0.12);
  border: 1.5px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--accent);
  flex-shrink: 0;
}

.reviewer-info { flex: 1; }
.reviewer-info strong { display: block; font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.reviewer-plan { font-size: 0.78rem; color: var(--text-muted); }

.review-stars-date { text-align: right; flex-shrink: 0; }
.review-stars { color: var(--accent); font-size: 0.85rem; }
.review-date { font-size: 0.75rem; color: var(--text-muted); display: block; margin-top: 2px; }

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(200,241,53,0.06);
  border: 1px solid rgba(200,241,53,0.2);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  width: fit-content;
}

.review-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.review-body {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
}

.review-result-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200,241,53,0.07);
  border: 1px solid rgba(200,241,53,0.15);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  width: fit-content;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-top: 1px solid var(--border);
  padding-top: 10px;
}

.helpful-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}

.helpful-btn:hover { border-color: var(--accent); color: var(--accent); }
.helpful-btn.voted { background: rgba(200,241,53,0.1); border-color: var(--accent); color: var(--accent); }

/* LOAD MORE */
.load-more-wrap { text-align: center; padding: 1rem 0; }

/* LEAVE REVIEW */
.leave-review {
  padding: 80px 0;
  background: linear-gradient(135deg, #0e1800 0%, #0a0a0a 50%, #0e1800 100%);
  border-top: 1px solid var(--border-accent);
  text-align: center;
}

.leave-review-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.leave-review-content h2 em { font-style: normal; color: var(--accent); }
.leave-review-content p { color: var(--text-secondary); margin-bottom: 1.5rem; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-summary { gap: 32px; }
}

@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-summary { flex-direction: column; align-items: center; padding: 24px; gap: 24px; }
  .summary-bars { width: 100%; }
  .filter-tabs { width: 100%; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .filter-wrap { flex-direction: column; align-items: flex-start; }
}
