@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --body-background: #f9fafb;
  --text-color: #475569;
  --border-color: #eeeeee;
  --muted: #6b7c86;
}

body:has(div.reviews-page) {
  background-color: var(--body-background);
}

.review-card {
  background: white;
  border-radius: 16px;
  border: 1px solid #eeeeee;
  box-shadow: 0 0 64px rgba(0, 0, 0, 0.05);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.review-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.review-card__stars {
  display: flex;
  gap: 2px;
}
.review-card__star {
  color: #d1d5db;
  font-size: 16px;
  line-height: 1;
}
.review-card__star.is-filled {
  color: #948866;
}
.review-card__date {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
  margin-left: auto;
  flex-shrink: 0;
}
.review-card__title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #334155;
  line-height: 1.35;
}
.review-card__body {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-color);
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  min-width: 0;
}
.review-card__avatar {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
}
.review-card__meta {
  min-width: 0;
  flex: 1;
}
.review-card__name {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.review-card__badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  color: #7a6a42;
  background: #faf8f3;
  border: 1px solid #e8dfc8;
  white-space: nowrap;
}
.review-card__badge-wrap {
  position: relative;
  display: inline-flex;
}
@media (hover: hover) and (pointer: fine) {
  .review-card__badge-wrap--has-tooltip {
    cursor: help;
  }
  .review-card__badge-wrap--has-tooltip:hover, .review-card__badge-wrap--has-tooltip:focus-within {
    z-index: 5;
  }
}
.review-card__tooltip {
  position: fixed;
  z-index: 1000;
  min-width: 180px;
  max-width: 280px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fff;
  color: var(--text-color);
  border: 1px solid var(--border-color);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 400;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s, visibility 0.15s;
}
.review-card__tooltip::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #fff;
  filter: drop-shadow(0 1px 0 var(--border-color));
}
.review-card__tooltip.is-visible {
  opacity: 1;
  visibility: visible;
}
@media not all and (hover: hover) and (pointer: fine) {
  .review-card__tooltip {
    display: none !important;
  }
}
.review-card__details {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-card__sep {
  margin: 0 4px;
}
.review-card__response {
  margin-top: 4px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f8fafc;
  border-left: 3px solid #948866;
}
.review-card__response-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.review-card__response:not(.is-expanded) .review-card__response-label {
  display: none;
}
.review-card__response:not(.is-expanded) .review-card__response-controls {
  justify-content: flex-start;
}
.review-card__response-label {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0;
}
.review-card__response-body {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-color);
  white-space: pre-line;
}
.review-card__response-body[hidden] {
  display: none;
}
.review-card__response-toggle {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-size: 13px;
  font-weight: 600;
  color: #948866;
  cursor: pointer;
  text-align: right;
  white-space: nowrap;
}
.review-card__response-toggle:hover {
  text-decoration: underline;
}
.review-card__response-toggle:focus, .review-card__response-toggle:focus-visible {
  outline: none;
  box-shadow: none;
}

.reviews-summary {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.reviews-summary__score {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}
.reviews-summary__stars {
  display: flex;
  gap: 2px;
}
.reviews-summary__star {
  color: #d1d5db;
  font-size: 22px;
  line-height: 1;
}
.reviews-summary__star.is-filled {
  color: #948866;
}
.reviews-summary__average {
  font-size: 22px;
  font-weight: 600;
  color: #334155;
}
.reviews-summary__count {
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--muted);
}
.reviews-summary__bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 520px;
}
.reviews-summary__bar-row {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  align-items: center;
  gap: 12px;
}
@media (max-width: 520px) {
  .reviews-summary__bar-row {
    grid-template-columns: 72px 1fr auto;
    gap: 8px;
  }
}
.reviews-summary__bar-label {
  font-size: 13px;
  color: #948866;
  letter-spacing: -1px;
  white-space: nowrap;
}
.reviews-summary__bar-track {
  height: 10px;
  border-radius: 999px;
  background: #f1f5f9;
  overflow: hidden;
}
.reviews-summary__bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #a79155 0%, #ccb279 100%);
  min-width: 0;
}
.reviews-summary__bar-meta {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
  min-width: 72px;
  text-align: right;
}
@media (max-width: 520px) {
  .reviews-summary__bar-meta {
    min-width: 64px;
    font-size: 12px;
  }
}

.reviews-cta-layout__title {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 600;
  color: #334155;
  text-align: left;
  line-height: 1.35;
}
.reviews-cta-layout--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}
@media (max-width: 768px) {
  .reviews-cta-layout--split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.reviews-cta-layout--split .reviews-cta-layout__col--action {
  min-width: 0;
}
@media (min-width: 769px) {
  .reviews-cta-layout--split .reviews-cta-layout__col--action {
    border-left: 1px solid #eeeeee;
    padding-left: 32px;
  }
}
@media (max-width: 768px) {
  .reviews-cta-layout--split .reviews-cta-layout__col--action {
    border-top: 1px solid #eeeeee;
    padding-top: 24px;
  }
}
.reviews-cta-layout--split .reviews-cta-layout__col--summary .reviews-summary__bars {
  max-width: none;
}

.reviews-page {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 40px;
  padding-bottom: 48px;
  color: var(--text-color);
}
@media (max-width: 1000px) {
  .reviews-page {
    padding-top: 24px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.reviews-page h1, .reviews-page h2 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 600;
  color: #334155;
  text-align: left;
}
.reviews-page .section-description {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  text-align: left;
}
.reviews-page__disclaimer {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}
.reviews-page__footer-note {
  margin: 24px 0 0;
  font-size: 14px;
  color: var(--muted);
}
.reviews-page__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}
.reviews-page__back {
  font-size: 15px;
  color: #948866;
  text-decoration: none;
}
.reviews-page__back:hover {
  text-decoration: underline;
}
.reviews-page__hero > .wrapper, .reviews-page__list-section > .wrapper, .reviews-page__cta > .wrapper {
  padding: 0;
}
.reviews-page__cta--top {
  margin-top: 0;
}
.reviews-page__count {
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--muted);
}
.reviews-page__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 900px) {
  .reviews-page__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .reviews-page__list {
    grid-template-columns: 1fr;
  }
}
.reviews-page__list .review-card {
  height: 100%;
  min-width: 0;
}
.reviews-page__empty {
  grid-column: 1/-1;
  background: white;
  border-radius: 16px;
  border: 1px solid #eeeeee;
  box-shadow: 0 0 64px rgba(0, 0, 0, 0.05);
  padding: 32px;
  text-align: center;
  color: var(--muted);
}
.reviews-page__cta {
  text-align: left;
}
.reviews-page__cta .wrapper {
  background: white;
  border-radius: 16px;
  border: 1px solid #eeeeee;
  box-shadow: 0 0 64px rgba(0, 0, 0, 0.05);
  padding: 32px 24px;
}

.reviews-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text-color);
}
.reviews-breadcrumb a {
  color: var(--text-color);
  text-decoration: none;
}
.reviews-breadcrumb a:hover {
  text-decoration: underline;
}
.reviews-breadcrumb__sep {
  color: var(--text-color);
  opacity: 0.45;
}

.reviews-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .reviews-features {
    grid-template-columns: 1fr;
  }
}
.reviews-features__item {
  background: white;
  border-radius: 16px;
  border: 1px solid #eeeeee;
  box-shadow: 0 0 64px rgba(0, 0, 0, 0.05);
  padding: 24px;
}
.reviews-features__item h2 {
  font-size: 16px;
  margin-bottom: 8px;
}
.reviews-features__item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.reviews-filters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .reviews-filters {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .reviews-filters {
    grid-template-columns: 1fr;
  }
}
.reviews-filters__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.reviews-filters__field label {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}
.reviews-filters__field select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background: #fff;
  font-size: 14px;
  color: var(--text-color);
}

.reviews-submit-page {
  gap: 12px;
}
.reviews-submit-page .reviews-submit > .wrapper {
  padding: 0;
}
.reviews-submit-page .reviews-page__hero .section-description {
  margin-bottom: 0;
}

.reviews-submit__form, .reviews-submit__notice, .reviews-submit__success {
  background: white;
  border-radius: 16px;
  border: 1px solid #eeeeee;
  box-shadow: 0 0 64px rgba(0, 0, 0, 0.05);
  padding: 32px 24px;
  max-width: 640px;
}
.reviews-submit__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.reviews-submit__field label {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}
.reviews-submit__field input[type=text],
.reviews-submit__field textarea,
.reviews-submit__field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  font-size: 15px;
  color: var(--text-color);
  background: #fff;
}
.reviews-submit__field textarea {
  resize: vertical;
  min-height: 140px;
}
.reviews-submit__rating {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.reviews-submit__rating-option {
  margin: 0;
  cursor: pointer;
}
.reviews-submit__rating-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.reviews-submit__rating-option span {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  font-size: 14px;
  color: var(--text-color);
  background: #fff;
  transition: border-color 0.15s, background 0.15s;
}
.reviews-submit__rating-option input:checked + span {
  border-color: #948866;
  background: #faf8f3;
  color: #334155;
  font-weight: 600;
}
.reviews-submit__error {
  font-size: 13px;
  color: #dc3545;
}
.reviews-submit__notice, .reviews-submit__success {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reviews-submit__notice p, .reviews-submit__success p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

/*# sourceMappingURL=reviews.css.map */
