.rv-visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.rv-tag {
  display: block;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #5d7b6f;
  margin-bottom: 0.6rem;
}

.rv-btn {
  display: inline-block;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 0.95rem 2.4rem;
  border-radius: 2px;
  border: 1px solid #5d7b6f;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.rv-btn--primary {
  background: #5d7b6f;
  color: #eae7d6;
}
.rv-btn--primary:hover, .rv-btn--primary:focus-visible {
  background: rgb(71.0416666667, 93.9583333333, 84.7916666667);
  color: #eae7d6;
}
.rv-btn--ghost {
  background: transparent;
  color: #5d7b6f;
}
.rv-btn--ghost:hover, .rv-btn--ghost:focus-visible {
  background: #5d7b6f;
  color: #eae7d6;
}

.rv-page {
  background: #eae7d6;
  padding: 3rem 1rem 4.5rem;
  font-family: "DM Sans", system-ui, sans-serif;
  color: #1c1c1a;
}
.rv-page__container {
  max-width: 720px;
  margin: 0 auto;
}

.rv-product {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-bottom: 1.75rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(93, 123, 111, 0.25);
  text-decoration: none;
  color: inherit;
}
.rv-product__image {
  flex: 0 0 88px;
  height: 110px;
  background: #fffdf7;
  overflow: hidden;
}
.rv-product__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rv-product__name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.1;
  margin: 0 0 0.25rem;
  color: #1c1c1a;
}
.rv-product__category {
  margin: 0;
  font-size: 0.9rem;
  color: #6b6b60;
}

.rv-form__section {
  border: 0;
  margin: 0 0 2.25rem;
  padding: 0;
}
.rv-form__legend {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #1c1c1a;
  margin-bottom: 1rem;
  padding: 0;
}
.rv-form__intro {
  margin: -0.25rem 0 1.25rem;
  font-size: 0.9rem;
  color: #6b6b60;
  line-height: 1.55;
}
.rv-form__field {
  margin-bottom: 1.25rem;
}
.rv-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 1rem;
}
@media (min-width: 600px) {
  .rv-form__row {
    grid-template-columns: 1fr 1fr;
  }
}
.rv-form__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1c1c1a;
  margin-bottom: 0.45rem;
}
.rv-form__required {
  color: #5d7b6f;
}
.rv-form__input, .rv-form__textarea, .rv-form__select {
  width: 100%;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1rem;
  color: #1c1c1a;
  background: #fffdf7;
  border: 1px solid rgba(93, 123, 111, 0.35);
  border-radius: 2px;
  padding: 0.8rem 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.rv-form__input::placeholder, .rv-form__textarea::placeholder, .rv-form__select::placeholder {
  color: rgba(107, 107, 96, 0.75);
}
.rv-form__input:focus, .rv-form__textarea:focus, .rv-form__select:focus {
  outline: none;
  border-color: #5d7b6f;
  box-shadow: 0 0 0 3px rgba(176, 212, 184, 0.6);
}
.rv-form__textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.55;
}
.rv-form__help {
  margin: 0.4rem 0 0;
  font-size: 0.8rem;
  color: #6b6b60;
  line-height: 1.5;
}
.rv-form__error {
  margin: 0.4rem 0 0;
  font-size: 0.85rem;
  color: #a4473d;
}
.rv-form__field--error .rv-form__input,
.rv-form__field--error .rv-form__textarea,
.rv-form__field--error .rv-form__select {
  border-color: #a4473d;
}
.rv-form__alert {
  background: rgba(164, 71, 61, 0.08);
  border-left: 3px solid #a4473d;
  padding: 0.9rem 1rem;
  margin-bottom: 1.75rem;
  font-size: 0.9rem;
  color: #a4473d;
}
.rv-form__alert p {
  margin: 0;
}
.rv-form__consent {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 0.5rem;
}
.rv-form__consent .rv-form__error {
  flex-basis: 100%;
}
.rv-form__checkbox {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #5d7b6f;
  flex-shrink: 0;
}
.rv-form__consent-label {
  flex: 1;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #1c1c1a;
}
.rv-form__captcha {
  margin-bottom: 1.75rem;
}
.rv-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.rv-form__actions .rv-btn {
  flex: 1 1 200px;
}
.rv-form__note {
  margin: 1.25rem 0 0;
  font-size: 0.8rem;
  color: #6b6b60;
  text-align: center;
}

.rv-stars-input {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 0.2rem;
}
.rv-stars-input input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.rv-stars-input__star {
  font-size: 2.1rem;
  line-height: 1;
  color: rgba(93, 123, 111, 0.22);
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease;
  padding: 0.1rem;
}
.rv-stars-input input:checked ~ .rv-stars-input__star {
  color: #5d7b6f;
}
.rv-stars-input:hover input ~ .rv-stars-input__star {
  color: rgba(93, 123, 111, 0.22);
}
.rv-stars-input input ~ .rv-stars-input__star:hover,
.rv-stars-input .rv-stars-input__star:hover ~ .rv-stars-input__star {
  color: #5d7b6f;
}
.rv-stars-input .rv-stars-input__star:hover {
  transform: scale(1.12);
}
.rv-stars-input input:focus-visible + .rv-stars-input__star {
  outline: 2px solid #b0d4b8;
  outline-offset: 2px;
  border-radius: 2px;
}

.rv-fit-input {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.rv-fit-input input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.rv-fit-input__option {
  font-size: 0.85rem;
  padding: 0.6rem 1.1rem;
  border: 1px solid rgba(93, 123, 111, 0.35);
  border-radius: 999px;
  background: #fffdf7;
  color: #1c1c1a;
  cursor: pointer;
  transition: all 0.2s ease;
}
.rv-fit-input__option:hover {
  border-color: #5d7b6f;
}
.rv-fit-input input:checked + .rv-fit-input__option {
  background: #5d7b6f;
  border-color: #5d7b6f;
  color: #eae7d6;
}
.rv-fit-input input:focus-visible + .rv-fit-input__option {
  outline: 2px solid #b0d4b8;
  outline-offset: 2px;
}

.rv-form__order-line {
  display: inline-block;
  margin: 0 0 2rem;
  padding: 0.55rem 1rem;
  background: rgba(176, 212, 184, 0.45);
  border-radius: 2px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: #1c1c1a;
}

.rv-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  padding: 0.55rem 1.1rem;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #5d7b6f;
  background: transparent;
  border: 1px solid #5d7b6f;
  border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease;
}
.rv-order-btn:hover, .rv-order-btn:focus-visible {
  background: #5d7b6f;
  color: #eae7d6;
}
.rv-order-btn__star {
  font-size: 0.95rem;
  line-height: 1;
}

.rv-order-reviewed {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: #5d7b6f;
}

.rv-thanks {
  text-align: center;
  padding: 2rem 0;
}
.rv-thanks__icon {
  display: block;
  font-size: 2.6rem;
  color: #5d7b6f;
  margin-bottom: 1rem;
}
.rv-thanks__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: 2.6rem;
  margin: 0 0 1rem;
}
.rv-thanks__text {
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  color: #6b6b60;
}
.rv-thanks__actions {
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
}

.rv-stars {
  position: relative;
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
  vertical-align: middle;
  font-family: "DM Sans", system-ui, sans-serif;
}
.rv-stars__base {
  color: rgba(93, 123, 111, 0.2);
}
.rv-stars__fill {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  color: #5d7b6f;
  width: 0;
}
.rv-stars[data-half="0"] .rv-stars__fill {
  width: 0%;
}
.rv-stars[data-half="1"] .rv-stars__fill {
  width: 10%;
}
.rv-stars[data-half="2"] .rv-stars__fill {
  width: 20%;
}
.rv-stars[data-half="3"] .rv-stars__fill {
  width: 30%;
}
.rv-stars[data-half="4"] .rv-stars__fill {
  width: 40%;
}
.rv-stars[data-half="5"] .rv-stars__fill {
  width: 50%;
}
.rv-stars[data-half="6"] .rv-stars__fill {
  width: 60%;
}
.rv-stars[data-half="7"] .rv-stars__fill {
  width: 70%;
}
.rv-stars[data-half="8"] .rv-stars__fill {
  width: 80%;
}
.rv-stars[data-half="9"] .rv-stars__fill {
  width: 90%;
}
.rv-stars[data-half="10"] .rv-stars__fill {
  width: 100%;
}
.rv-stars--sm {
  font-size: 0.95rem;
}
.rv-stars--md {
  font-size: 1.15rem;
}
.rv-stars--lg {
  font-size: 1.6rem;
}

.rv-rating-line {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0.25rem 0 1rem;
  text-decoration: none;
  color: #1c1c1a;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.88rem;
}
.rv-rating-line__avg {
  font-weight: 500;
}
.rv-rating-line__count {
  color: #6b6b60;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.rv-rating-line:hover .rv-rating-line__count {
  color: #5d7b6f;
}

.rv-section {
  background: #eae7d6;
  padding: 3.5rem 1rem 4rem;
  margin-top: 2rem;
  font-family: "DM Sans", system-ui, sans-serif;
  color: #1c1c1a;
  scroll-margin-top: 90px;
}
.rv-section__container {
  max-width: 1140px;
  margin: 0 auto;
}
.rv-section__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: 2.2rem;
  text-align: center;
  margin: 0 0 2.25rem;
  color: #1c1c1a;
}

.rv-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2.25rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(93, 123, 111, 0.2);
}
@media (min-width: 900px) {
  .rv-summary {
    grid-template-columns: auto 1.3fr 1fr auto;
    align-items: center;
    gap: 0;
  }
  .rv-summary > * {
    padding: 0 2rem;
  }
  .rv-summary > * + * {
    border-left: 1px solid rgba(93, 123, 111, 0.2);
  }
  .rv-summary > :first-child {
    padding-left: 0;
  }
  .rv-summary > :last-child {
    padding-right: 0;
  }
}
.rv-summary__score {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}
.rv-summary__average {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4rem;
  font-weight: 300;
  line-height: 1;
}
.rv-summary__score-side {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.rv-summary__based {
  font-size: 0.85rem;
  color: #6b6b60;
}
.rv-summary__cta {
  display: flex;
  justify-content: center;
}

.rv-bar {
  display: grid;
  grid-template-columns: 2.4rem 1fr 2.5rem;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.3rem 0;
  background: none;
  border: 0;
  font: inherit;
  font-size: 0.88rem;
  color: #1c1c1a;
  cursor: pointer;
  text-align: left;
}
.rv-bar:disabled {
  cursor: default;
  opacity: 0.55;
}
.rv-bar:not(:disabled):hover .rv-bar__track {
  background: rgba(93, 123, 111, 0.2);
}
.rv-bar:focus-visible {
  outline: 2px solid #b0d4b8;
  outline-offset: 2px;
}
.rv-bar__label {
  white-space: nowrap;
}
.rv-bar__track {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: rgba(93, 123, 111, 0.12);
  overflow: hidden;
  transition: background 0.2s ease;
}
.rv-bar__fill {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: 999px;
  background: #5d7b6f;
  width: 0;
}
.rv-bar__fill[data-pct="0"] {
  width: 0%;
}
.rv-bar__fill[data-pct="5"] {
  width: 5%;
}
.rv-bar__fill[data-pct="10"] {
  width: 10%;
}
.rv-bar__fill[data-pct="15"] {
  width: 15%;
}
.rv-bar__fill[data-pct="20"] {
  width: 20%;
}
.rv-bar__fill[data-pct="25"] {
  width: 25%;
}
.rv-bar__fill[data-pct="30"] {
  width: 30%;
}
.rv-bar__fill[data-pct="35"] {
  width: 35%;
}
.rv-bar__fill[data-pct="40"] {
  width: 40%;
}
.rv-bar__fill[data-pct="45"] {
  width: 45%;
}
.rv-bar__fill[data-pct="50"] {
  width: 50%;
}
.rv-bar__fill[data-pct="55"] {
  width: 55%;
}
.rv-bar__fill[data-pct="60"] {
  width: 60%;
}
.rv-bar__fill[data-pct="65"] {
  width: 65%;
}
.rv-bar__fill[data-pct="70"] {
  width: 70%;
}
.rv-bar__fill[data-pct="75"] {
  width: 75%;
}
.rv-bar__fill[data-pct="80"] {
  width: 80%;
}
.rv-bar__fill[data-pct="85"] {
  width: 85%;
}
.rv-bar__fill[data-pct="90"] {
  width: 90%;
}
.rv-bar__fill[data-pct="95"] {
  width: 95%;
}
.rv-bar__fill[data-pct="100"] {
  width: 100%;
}
.rv-bar__count {
  text-align: right;
  color: #6b6b60;
}

.rv-summary__fit {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.rv-fit__title {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.rv-fit__track {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: rgba(93, 123, 111, 0.12);
}
.rv-fit__marker {
  position: absolute;
  top: 50%;
  width: 22px;
  height: 10px;
  margin-left: -11px;
  border-radius: 999px;
  background: #5d7b6f;
  transform: translateY(-50%);
  left: 50%;
}
.rv-fit__marker[data-pos="0"] {
  left: 0%;
}
.rv-fit__marker[data-pos="5"] {
  left: 5%;
}
.rv-fit__marker[data-pos="10"] {
  left: 10%;
}
.rv-fit__marker[data-pos="15"] {
  left: 15%;
}
.rv-fit__marker[data-pos="20"] {
  left: 20%;
}
.rv-fit__marker[data-pos="25"] {
  left: 25%;
}
.rv-fit__marker[data-pos="30"] {
  left: 30%;
}
.rv-fit__marker[data-pos="35"] {
  left: 35%;
}
.rv-fit__marker[data-pos="40"] {
  left: 40%;
}
.rv-fit__marker[data-pos="45"] {
  left: 45%;
}
.rv-fit__marker[data-pos="50"] {
  left: 50%;
}
.rv-fit__marker[data-pos="55"] {
  left: 55%;
}
.rv-fit__marker[data-pos="60"] {
  left: 60%;
}
.rv-fit__marker[data-pos="65"] {
  left: 65%;
}
.rv-fit__marker[data-pos="70"] {
  left: 70%;
}
.rv-fit__marker[data-pos="75"] {
  left: 75%;
}
.rv-fit__marker[data-pos="80"] {
  left: 80%;
}
.rv-fit__marker[data-pos="85"] {
  left: 85%;
}
.rv-fit__marker[data-pos="90"] {
  left: 90%;
}
.rv-fit__marker[data-pos="95"] {
  left: 95%;
}
.rv-fit__marker[data-pos="100"] {
  left: 100%;
}
.rv-fit__labels {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #6b6b60;
}
.rv-fit__labels span:nth-child(2) {
  text-align: center;
}
.rv-fit__labels span:last-child {
  text-align: right;
}

.rv-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(93, 123, 111, 0.2);
  scroll-margin-top: 100px;
}
.rv-toolbar__field {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.rv-toolbar__label {
  font-size: 0.85rem;
  color: #6b6b60;
  white-space: nowrap;
}
.rv-toolbar__select {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.9rem;
  color: #1c1c1a;
  background: #fffdf7;
  border: 1px solid rgba(93, 123, 111, 0.35);
  border-radius: 999px;
  padding: 0.5rem 2rem 0.5rem 1rem;
  cursor: pointer;
}
.rv-toolbar__select:focus {
  outline: none;
  border-color: #5d7b6f;
  box-shadow: 0 0 0 3px rgba(176, 212, 184, 0.6);
}

.rv-list {
  transition: opacity 0.2s ease;
}
.rv-list.is-loading {
  opacity: 0.45;
  pointer-events: none;
}
.rv-list__empty {
  padding: 2.5rem 0;
  text-align: center;
  color: #6b6b60;
}

.rv-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(93, 123, 111, 0.2);
}
@media (min-width: 768px) {
  .rv-card {
    grid-template-columns: 220px 1fr;
    gap: 2rem;
  }
}
.rv-card__author {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.rv-card__avatar {
  flex: 0 0 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(164, 195, 162, 0.45);
  color: #5d7b6f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
}
.rv-card__who {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.rv-card__name {
  font-weight: 500;
  font-size: 0.95rem;
}
.rv-card__flag {
  margin-left: 0.25rem;
}
.rv-card__verified {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: #5d7b6f;
}
.rv-card__city {
  font-size: 0.78rem;
  color: #6b6b60;
}
.rv-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.6rem;
}
.rv-card__date {
  font-size: 0.8rem;
  color: #6b6b60;
  white-space: nowrap;
}
.rv-card__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  margin: 0 0 0.4rem;
  color: #1c1c1a;
}
.rv-card__body {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #1c1c1a;
  overflow-wrap: anywhere;
}
.rv-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: #6b6b60;
}
.rv-card__meta:empty {
  display: none;
}
.rv-card__fit strong {
  font-weight: 500;
  color: #1c1c1a;
}
.rv-card__lang {
  font-style: italic;
}

.rv-more {
  display: flex;
  justify-content: center;
  padding-top: 2rem;
}
.rv-more__btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

.rv-response {
  margin-top: 1.1rem;
  padding: 1rem 1.15rem;
  background: rgba(255, 253, 247, 0.75);
  border-inline-start: 3px solid #5d7b6f;
}
.rv-response__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.25rem 1rem;
  margin-bottom: 0.45rem;
}
.rv-response__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5d7b6f;
}
.rv-response__date {
  font-size: 0.75rem;
  color: #6b6b60;
}
.rv-response__body {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #1c1c1a;
  overflow-wrap: anywhere;
}
.rv-response__sign {
  display: block;
  margin-top: 0.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: #5d7b6f;
}

.rv-helpful {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: #6b6b60;
}
.rv-helpful__label {
  margin-right: 0.35rem;
}
.rv-helpful__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.6rem;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  color: #6b6b60;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.rv-helpful__btn:hover:not(:disabled) {
  color: #5d7b6f;
  border-color: rgba(93, 123, 111, 0.35);
}
.rv-helpful__btn:focus-visible {
  outline: 2px solid #b0d4b8;
  outline-offset: 2px;
}
.rv-helpful__btn:disabled {
  cursor: default;
}
.rv-helpful__btn.is-selected {
  color: #5d7b6f;
  background: rgba(176, 212, 184, 0.45);
}
.rv-helpful.is-busy {
  opacity: 0.6;
  pointer-events: none;
}

.rv-empty {
  text-align: center;
  padding: 0.5rem 0 1rem;
}
.rv-empty__text {
  max-width: 440px;
  margin: 0 auto 1.5rem;
  color: #6b6b60;
  line-height: 1.6;
}

.rv-strip {
  background: #eae7d6;
  padding: 3.5rem 1rem 4rem;
  font-family: "DM Sans", system-ui, sans-serif;
  color: #1c1c1a;
}
.rv-strip__container {
  max-width: 1240px;
  margin: 0 auto;
}
.rv-strip__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem 2rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid rgba(93, 123, 111, 0.2);
}
.rv-strip__heading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1.25rem;
}
.rv-strip__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 0;
  color: #1c1c1a;
}
.rv-strip__all {
  font-size: 0.9rem;
  color: #5d7b6f;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.rv-strip__all:hover {
  color: #1c1c1a;
}
.rv-strip__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.rv-strip__count {
  font-size: 0.9rem;
  color: #6b6b60;
  white-space: nowrap;
}
.rv-strip__arrows {
  display: flex;
  gap: 0.35rem;
  margin-left: 0.5rem;
}
.rv-strip__arrow {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(93, 123, 111, 0.35);
  background: transparent;
  color: #5d7b6f;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.rv-strip__arrow:hover:not(:disabled) {
  background: #5d7b6f;
  color: #eae7d6;
}
.rv-strip__arrow:disabled {
  opacity: 0.35;
  cursor: default;
}
.rv-strip__arrow:focus-visible {
  outline: 2px solid #b0d4b8;
  outline-offset: 2px;
}
.rv-strip__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 86%;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}
.rv-strip__track::-webkit-scrollbar {
  display: none;
}
@media (min-width: 640px) {
  .rv-strip__track {
    grid-auto-columns: calc((100% - 1.25rem) / 2);
  }
}
@media (min-width: 1024px) {
  .rv-strip__track {
    grid-auto-columns: calc((100% - 3rem) / 3);
    gap: 1.5rem;
  }
}

.rv-tile {
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1.1rem;
  padding: 1.25rem;
  background: #fffdf7;
  border: 1px solid transparent;
  border-radius: 2px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.rv-tile:hover {
  border-color: rgba(93, 123, 111, 0.35);
  color: inherit;
}
.rv-tile:focus-visible {
  outline: 2px solid #b0d4b8;
  outline-offset: 2px;
}
.rv-tile__media {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.rv-tile__img {
  width: 96px;
  height: 120px;
  background: #eae7d6;
  overflow: hidden;
}
.rv-tile__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rv-tile__product {
  font-size: 0.72rem;
  line-height: 1.35;
  color: #6b6b60;
}
.rv-tile__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.rv-tile__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}
.rv-tile__date {
  font-size: 0.75rem;
  color: #6b6b60;
  white-space: nowrap;
}
.rv-tile__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 0.4rem;
  color: #1c1c1a;
}
.rv-tile__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #1c1c1a;
  overflow-wrap: anywhere;
}
.rv-tile__more {
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: #5d7b6f;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.rv-tile__name {
  margin-top: auto;
  padding-top: 0.9rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1c1c1a;
}

.rv-section--page {
  margin-top: 0;
  min-height: 60vh;
  padding-top: 3rem;
}

.rv-all__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}
.rv-all__title {
  margin-bottom: 0.9rem;
  font-size: clamp(2.2rem, 4.5vw, 3rem);
}
.rv-all__intro {
  margin: 0;
  color: #6b6b60;
  line-height: 1.6;
}

@media (min-width: 900px) {
  .rv-summary--store {
    grid-template-columns: auto 1.4fr auto;
  }
}

.rv-card__product {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #6b6b60;
  text-decoration: none;
}
.rv-card__product strong {
  font-weight: 500;
  color: #1c1c1a;
}
.rv-card__product:hover strong {
  color: #5d7b6f;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rv-card__product-img {
  width: 36px;
  height: 44px;
  object-fit: cover;
  background: #fffdf7;
  flex-shrink: 0;
}

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