body {
  background: radial-gradient(circle at top left, #FFE14D 0, transparent 55%), radial-gradient(circle at bottom right, #81D4FA 0, transparent 55%), var(--color-background);
}

.section-header {
  margin-bottom: var(--space-6);
}

.section-header-center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-header p {
  color: var(--color-text-light);
}

.reviews-hero {
  padding-top: var(--space-16);
  padding-bottom: var(--space-12);
}

.reviews-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--space-10);
  align-items: center;
}

.reviews-hero-text h1 {
  margin-bottom: var(--space-4);
}

.reviews-badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  background-color: rgba(255, 213, 0, 0.2);
  color: var(--color-text);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-3);
}

.reviews-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
  margin-bottom: var(--space-3);
}

.reviews-hero-meta {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.reviews-hero-image-wrapper {
  position: relative;
  max-width: 440px;
  margin-left: auto;
}

.reviews-hero-image {
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
}

.reviews-hero-image-wrapper::after {
  content: "⭐";
  position: absolute;
  right: -12px;
  top: -12px;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background-color: var(--color-accent-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-playful);
  font-size: var(--font-size-xl);
}

.reviews-latest,
.reviews-top-rated,
.reviews-featured,
.reviews-profiles,
.reviews-safety,
.reviews-gallery,
.reviews-expert,
.reviews-team-responses,
.reviews-leave,
.reviews-tips {
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
}

.reviews-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-6);
}

.reviews-filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
}

.reviews-sort {
  min-width: 220px;
}

.reviews-list {
  display: grid;
  gap: var(--space-4);
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-3);
}

.review-meta .review-author {
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-1);
}

.review-meta .review-date {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.review-rating {
  text-align: right;
  font-weight: var(--font-weight-semibold);
}

.review-rating span {
  display: block;
}

.review-rating-label {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.top-rated-grid,
.safety-grid,
.expert-grid,
.reviewer-grid {
  gap: var(--space-6);
}

.top-rated-card .top-rated-rating {
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-3);
}

.top-rated-card .top-rated-rating span {
  margin-left: var(--space-1);
  color: var(--color-text-muted);
}

.reviewer-avatar-wrapper {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: var(--space-3);
  border: 3px solid var(--color-secondary-light);
}

.reviewer-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer-history {
  margin-top: var(--space-3);
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
}

.reviewer-history li + li {
  margin-top: var(--space-1);
}

.featured-review-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: var(--space-6);
  align-items: stretch;
}

.featured-review-image-wrapper {
  overflow: hidden;
}

.featured-review-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-review-body h2 {
  margin-top: var(--space-3);
}

.featured-review-author {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.featured-review-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.safety-card .card-body,
.expert-card .card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.safety-card .btn,
.expert-card .btn {
  margin-top: auto;
}

.gallery-card {
  border-style: dashed;
  border-color: var(--color-secondary-light);
}

.gallery-body {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: var(--space-6);
  align-items: center;
}

.gallery-image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-text p:first-of-type {
  font-weight: var(--font-weight-medium);
}

.team-responses-list .team-response-label {
  margin-top: var(--space-3);
}

.review-form {
  margin-top: var(--space-6);
}

.review-form .btn-block {
  margin-top: var(--space-2);
}

.review-tips-list {
  display: grid;
  gap: var(--space-4);
}

.review-tips-list h3 {
  font-family: var(--font-family-accent);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

.review-tips-cta {
  margin-top: var(--space-6);
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 1024px) {
  .reviews-hero-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }

  .featured-review-card {
    grid-template-columns: 1fr;
  }

  .gallery-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .reviews-hero {
    padding-top: var(--space-12);
    padding-bottom: var(--space-10);
  }

  .reviews-hero-inner {
    grid-template-columns: 1fr;
  }

  .reviews-hero-image-wrapper {
    order: -1;
    margin-right: auto;
  }

  .reviews-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .reviews-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-sort {
    min-width: 0;
  }

  .featured-review-card,
  .gallery-body {
    gap: var(--space-4);
  }
}

@media (max-width: 560px) {
  .reviews-filters {
    grid-template-columns: 1fr;
  }

  .review-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .review-rating {
    text-align: left;
  }

  .featured-review-cta,
  .reviews-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .reviews-latest,
  .reviews-top-rated,
  .reviews-featured,
  .reviews-profiles,
  .reviews-safety,
  .reviews-gallery,
  .reviews-expert,
  .reviews-team-responses,
  .reviews-leave,
  .reviews-tips {
    padding-top: var(--space-10);
    padding-bottom: var(--space-10);
  }
}
