/* ── NZXT Reviews Widget — Dark Mode / NZXT Aesthetic ── */

#nzxt-reviews-widget {
  --rv-bg: #0a0a0a;
  --rv-surface: #141414;
  --rv-surface-2: #1e1e1e;
  --rv-border: #2a2a2a;
  --rv-text: #f0f0f0;
  --rv-heading: #f0f0f0;
  --rv-text-muted: #8a8a8a;
  --rv-body: #c0c0c0;
  --rv-star-empty: #525252;
  --rv-primary: #8A00FC;
  --rv-primary-hover: #9a1afc;
  --rv-accent: #8A00FC;
  --rv-accent-hover: #9a1afc;
  --rv-gold: var(--rv-primary);
  --rv-radius: 4px;
  --rv-radius-card: 8px;
  --rv-radius-ctrl: 6px;
  --rv-mono: 'SF Mono', 'Fira Code', 'Cascadia Code', 'Consolas', monospace;

  font-family: inherit;
  color: var(--rv-text);
  background: var(--rv-bg);
  max-width: 1400px;
  margin: 0 auto;
  padding: 64px 24px;
}

/* ── Loading ── */
.rv-loading {
  display: flex;
  justify-content: center;
  padding: 48px 0;
}
.rv-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--rv-border);
  border-top-color: var(--rv-primary);
  border-radius: 50%;
  animation: rv-spin 0.6s linear infinite;
}
@keyframes rv-spin {
  to { transform: rotate(360deg); }
}

/* ── Focus rings (a11y) — visible keyboard focus across widget, modal, lightbox */
#nzxt-reviews-widget :focus-visible,
.rv-form-overlay :focus-visible,
.rv-lightbox :focus-visible {
  outline: 2px solid var(--rv-accent);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(var(--brand-accent-rgb, 138, 0, 252), 0.35);
}

/* ── Header ── */
.rv-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.rv-header__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--rv-heading);
  margin: 0;
  letter-spacing: -0.02em;
}
.rv-header__subtitle {
  font-size: 14px;
  color: var(--rv-text-muted);
  margin: 4px 0 0;
  font-family: var(--rv-mono);
}

/* ── Summary ── */
.rv-summary {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 32px;
  padding: 24px 28px;
  background: var(--rv-surface);
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius-card);
}
.rv-summary__score {
  text-align: center;
  min-width: 120px;
}
.rv-summary__number {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--rv-heading);
}
.rv-summary__stars {
  color: var(--rv-gold);
  font-size: 20px;
  margin: 8px 0 4px;
}
.rv-summary__count {
  font-size: 13px;
  color: var(--rv-text-muted);
  font-family: var(--rv-mono);
}

/* ── Histogram ── */
.rv-histogram {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 320px;
}
.rv-histogram__row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--rv-text-muted);
  font-family: var(--rv-mono);
}
.rv-histogram__label {
  width: 14px;
  text-align: right;
  font-weight: 600;
}
.rv-histogram__bar {
  flex: 1;
  height: 6px;
  background: var(--rv-surface-2);
  border-radius: 3px;
  overflow: hidden;
}
.rv-histogram__fill {
  height: 100%;
  background: var(--rv-primary);
  border-radius: 3px;
  transition: width 0.4s ease;
}
.rv-histogram__count {
  width: 20px;
  font-size: 12px;
  color: var(--rv-text-muted);
}
.rv-histogram__row--clickable {
  cursor: pointer;
  border-radius: 4px;
  padding: 2px 4px;
  margin: -2px -4px;
  transition: background 0.15s ease;
}
.rv-histogram__row--clickable:hover,
.rv-histogram__row--clickable:focus-visible {
  background: var(--rv-surface-2);
  outline: none;
}
.rv-histogram__row--clickable:hover .rv-histogram__fill,
.rv-histogram__row--active .rv-histogram__fill {
  background: var(--rv-primary-hover);
}
.rv-histogram__row--active {
  background: var(--rv-surface-2);
}
.rv-histogram__row--active .rv-histogram__label,
.rv-histogram__row--active .rv-histogram__count {
  color: var(--rv-text);
}

/* ── Filter note ── */
.rv-filter-note {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--rv-text-muted);
  margin-bottom: 16px;
}
.rv-filter-note strong {
  color: var(--rv-text);
}
.rv-filter-note__clear {
  background: var(--rv-surface-2);
  border: 1px solid var(--rv-border);
  color: var(--rv-text);
  font-size: 12px;
  font-family: var(--rv-mono);
  padding: 4px 10px;
  border-radius: var(--rv-radius);
  cursor: pointer;
  transition: background 0.15s ease;
}
.rv-filter-note__clear:hover {
  background: var(--rv-border);
}

/* ── Toolbar ── */
.rv-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rv-border);
  flex-wrap: wrap;
  gap: 12px;
}
.rv-toolbar__sort select {
  background: var(--rv-surface);
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius-ctrl);
  padding: 8px 12px;
  font-size: 13px;
  color: var(--rv-text);
  cursor: pointer;
  font-family: var(--rv-mono);
}
.rv-toolbar__write-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 1px solid transparent;
  border-radius: var(--rv-radius-ctrl);
  background: var(--rv-accent);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
  letter-spacing: 0.02em;
}
.rv-toolbar__write-btn:hover {
  background: var(--rv-accent-hover);
  border-color: var(--rv-accent-hover);
}

/* ── Review List ── */
.rv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.rv-review {
  padding: 24px 0;
  border-bottom: 1px solid var(--rv-border);
}
.rv-review:last-child {
  border-bottom: none;
}
.rv-review__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 8px;
}
.rv-review__author {
  font-weight: 600;
  font-size: 15px;
  color: var(--rv-text);
}
.rv-review__date {
  font-size: 12px;
  color: var(--rv-text-muted);
  font-family: var(--rv-mono);
}
/* Marketplace badge — shown only when a review carries a resolved marketplace
   (derived server-side from the optional order number). */
.rv-review__market {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  border-radius: 999px;
  color: var(--rv-accent);
  background: rgb(var(--brand-accent-rgb, 138, 0, 252) / 0.12);
  vertical-align: middle;
}
.rv-review__stars {
  color: var(--rv-gold);
  font-size: 16px;
  margin-bottom: 8px;
  display: flex;
  gap: 2px;
}
.rv-review__title {
  font-weight: 600;
  font-size: 15px;
  color: var(--rv-heading);
  margin: 0 0 4px;
}
.rv-review__body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--rv-body);
  margin: 0;
}
.rv-review__media {
  display: flex;
  gap: 6px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.rv-review__media img,
.rv-review__media video {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--rv-radius);
  cursor: pointer;
  border: 1px solid var(--rv-border);
  transition: border-color 0.15s;
}
.rv-review__media img:hover,
.rv-review__media video:hover {
  border-color: var(--rv-primary);
}

/* ── Grid Layout ── */
.rv-list--grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.rv-list--grid .rv-review {
  padding: 24px;
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius-card);
  background: transparent;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.rv-list--grid .rv-review:hover {
  background: var(--rv-surface);
  border-color: var(--rv-accent);
}

/* ── Media Gallery ── */
.rv-gallery {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.rv-gallery::-webkit-scrollbar { height: 4px; }
.rv-gallery::-webkit-scrollbar-track { background: var(--rv-surface); }
.rv-gallery::-webkit-scrollbar-thumb { background: var(--rv-border); border-radius: 2px; }
.rv-gallery__item {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: var(--rv-radius);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--rv-border);
  scroll-snap-align: start;
  transition: border-color 0.15s;
}
.rv-gallery__item:hover {
  border-color: var(--rv-primary);
}
.rv-gallery__item img,
.rv-gallery__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Pagination ── */
.rv-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.rv-pagination__btn {
  padding: 8px 16px;
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius-ctrl);
  background: transparent;
  color: var(--rv-text);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--rv-mono);
}
.rv-pagination__btn:hover {
  border-color: var(--rv-primary);
  color: var(--rv-primary);
}
.rv-pagination__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.rv-pagination__btn--active {
  background: var(--rv-primary);
  color: #fff;
  border-color: var(--rv-primary);
}

/* ── Empty State ── */
.rv-empty {
  text-align: center;
  padding: 60px 24px;
  background: var(--rv-surface);
  border-radius: var(--rv-radius-card);
  border: 1px solid var(--rv-border);
}
.rv-empty__icon {
  font-size: 48px;
  margin-bottom: 12px;
  color: var(--rv-star-empty);
}
.rv-empty__text {
  font-size: 16px;
  color: var(--rv-text-muted);
  margin: 0;
}

/* ── Review Form Modal ── */
.rv-form-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
  animation: rv-fade-in 0.2s ease;
  --rv-bg: #0a0a0a;
  --rv-surface: #141414;
  --rv-surface-2: #1e1e1e;
  --rv-border: #2a2a2a;
  --rv-text: #f0f0f0;
  --rv-heading: #f0f0f0;
  --rv-text-muted: #8a8a8a;
  --rv-body: #c0c0c0;
  --rv-star-empty: #525252;
  --rv-primary: #8A00FC;
  --rv-primary-hover: #9a1afc;
  --rv-accent: #8A00FC;
  --rv-accent-hover: #9a1afc;
  --rv-gold: var(--rv-primary);
  --rv-radius: 4px;
  --rv-radius-card: 8px;
  --rv-radius-ctrl: 6px;
  --rv-mono: 'SF Mono','Fira Code','Cascadia Code','Consolas',monospace;
}
@keyframes rv-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.rv-form-modal {
  background:
    linear-gradient(90deg, var(--rv-accent), var(--rv-accent-hover)) top left / 100% 2px no-repeat,
    var(--rv-surface);
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius-card);
  padding: 32px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  color: var(--rv-text);
}
.rv-form-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--rv-text-muted);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  font-size: 20px;
}
.rv-form-modal__close:hover { color: var(--rv-text); }
.rv-form-modal__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--rv-heading);
  margin: 0 0 4px;
}
.rv-form-modal__subtitle {
  font-size: 14px;
  color: var(--rv-text-muted);
  margin: 0 0 24px;
}

/* Form Fields */
.rv-form__group {
  margin-bottom: 20px;
}
.rv-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.rv-form__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--rv-text);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.rv-form__req { color: var(--rv-accent); }
.rv-form__optional { color: var(--rv-text-muted); font-weight: 400; font-size: 12px; }
.rv-form__hint { margin-top: 6px; font-size: 12px; line-height: 1.4; color: var(--rv-text-muted); }
.rv-form__input,
.rv-form__textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius-ctrl);
  font-size: 14px;
  color: var(--rv-text);
  background: var(--rv-bg);
  box-sizing: border-box;
  transition: border-color 0.15s;
  font-family: inherit;
}
.rv-form__input:focus-visible,
.rv-form__textarea:focus-visible {
  border-color: var(--rv-accent);
}
.rv-form__input::placeholder,
.rv-form__textarea::placeholder {
  color: #555;
}
.rv-form__textarea {
  min-height: 100px;
  resize: vertical;
}

/* Star Picker */
.rv-form__stars {
  display: flex;
  gap: 4px;
}
.rv-form__star {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  color: var(--rv-star-empty);
  transition: color 0.1s, transform 0.1s;
  line-height: 0;
}
.rv-form__star:hover { transform: scale(1.15); }
.rv-form__star--filled { color: var(--rv-gold); }
.rv-form__star svg { width: 28px; height: 28px; }

/* Upload Zone */
.rv-form__upload-zone {
  border: 2px dashed var(--rv-border);
  border-radius: var(--rv-radius-card);
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}
.rv-form__upload-zone:hover,
.rv-form__upload-zone.dragover {
  border-color: var(--rv-accent);
  background: rgba(138,0,252,0.05);
}
.rv-form__upload-icon {
  width: 36px;
  height: 36px;
  color: var(--rv-text-muted);
  margin: 0 auto 12px;
  display: block;
}
.rv-form__upload-text {
  font-size: 14px;
  color: var(--rv-text-muted);
  margin: 0;
}
.rv-form__upload-text strong { color: var(--rv-accent); }
.rv-form__upload-hint {
  font-size: 12px;
  color: #555;
  margin: 6px 0 0;
  font-family: var(--rv-mono);
}
.rv-form__upload-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

/* Validation Errors */
.rv-form__input--error,
.rv-form__textarea--error {
  border-color: #ef4444;
}
.rv-form__input--error:focus,
.rv-form__textarea--error:focus {
  border-color: #ef4444;
}
.rv-form__field-error {
  display: none;
  font-size: 11px;
  color: #ef4444;
  margin-top: 4px;
  font-weight: 500;
}
.rv-form__field-error--visible {
  display: block;
}
.rv-form__stars-error {
  display: none;
  font-size: 11px;
  color: #ef4444;
  margin-top: 6px;
  font-weight: 500;
}
.rv-form__stars-error--visible {
  display: block;
}

/* ── File Previews ── */
.rv-form__previews {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.rv-form__pv-item {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: var(--rv-radius);
  overflow: hidden;
  border: 1px solid var(--rv-border);
  background: var(--rv-bg);
}
.rv-form__pv-item img,
.rv-form__pv-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rv-form__pv-remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0,0,0,0.7);
  border: none;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.rv-form__pv-badge {
  position: absolute;
  top: 4px;
  left: 4px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 0.02em;
}

/* ── Preview upload-state outlines & status badges ── */
.rv-form__pv-item--uploaded {
  border-color: #22c55e;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.4);
}
.rv-form__pv-item--failed {
  border-color: #ef4444;
  box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.4);
}
.rv-form__pv-status {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.rv-form__pv-status--ok { background: #22c55e; }
.rv-form__pv-status--ok svg { width: 12px; height: 12px; }
.rv-form__pv-status--fail { background: #ef4444; cursor: help; }

/* ── Upload Error (size/type rejections, pre-upload) ── */
.rv-form__upload-error {
  margin-top: 10px;
  padding: 10px 12px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--rv-radius-ctrl);
  color: #ef4444;
  font-size: 12px;
  line-height: 1.5;
}
.rv-form__upload-error ul { list-style: disc; }

/* ── Runtime Upload Error (after a failed upload attempt) ── */
.rv-form__upload-runtime-error {
  margin-bottom: 16px;
  padding: 12px 14px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: var(--rv-radius-ctrl);
  color: #fca5a5;
  font-size: 13px;
  line-height: 1.5;
}
.rv-form__upload-runtime-error__title {
  margin-bottom: 6px;
  color: #ef4444;
}
.rv-form__upload-runtime-error__list {
  margin: 0;
  padding-left: 20px;
  list-style: disc;
  color: #fca5a5;
}
.rv-form__upload-runtime-error__list li {
  margin-bottom: 2px;
  font-size: 12px;
}

/* ── Upload Progress Bar ── */
.rv-form__upload-progress {
  margin-bottom: 20px;
  padding: 16px;
  background: var(--rv-bg);
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius-ctrl);
}
.rv-form__upload-label {
  font-size: 12px;
  color: var(--rv-text-muted);
  margin-bottom: 8px;
  font-family: var(--rv-mono);
}
.rv-form__upload-bar {
  height: 6px;
  background: var(--rv-surface-2);
  border-radius: 3px;
  overflow: hidden;
}
.rv-form__upload-fill {
  height: 100%;
  background: linear-gradient(90deg, #8A00FC, #9a1afc);
  border-radius: 3px;
  transition: width 0.15s ease;
  width: 0%;
}
.rv-form__upload-pct {
  font-size: 11px;
  color: var(--rv-text-muted);
  margin-top: 6px;
  font-family: var(--rv-mono);
  text-align: right;
}

/* ── reCAPTCHA ── */
.rv-form__captcha {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

/* Form Actions */
.rv-form__actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.rv-form__submit {
  flex: 1;
  padding: 14px 24px;
  background: var(--rv-accent);
  color: #fff;
  border: none;
  border-radius: var(--rv-radius-ctrl);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
  letter-spacing: 0.02em;
}
.rv-form__submit:hover {
  background: var(--rv-accent-hover);
}
.rv-form__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.rv-form__cancel {
  padding: 14px 24px;
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius-ctrl);
  background: transparent;
  color: var(--rv-text-muted);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
}
.rv-form__cancel:hover {
  border-color: var(--rv-text-muted);
  color: var(--rv-text);
}
.rv-form__success {
  text-align: center;
  padding: 48px 24px;
}
.rv-form__success-icon {
  width: 48px;
  height: 48px;
  color: #22c55e;
  margin: 0 auto 16px;
}
.rv-form__success-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--rv-text);
  margin: 0 0 8px;
}
.rv-form__success-text {
  font-size: 14px;
  color: var(--rv-text-muted);
  margin: 0;
}
.rv-form__error {
  color: #ef4444;
  font-size: 12px;
  margin-top: 4px;
}

@media (max-width: 480px) {
  .rv-form__row {
    grid-template-columns: 1fr;
  }
  .rv-form__actions {
    flex-direction: column-reverse;
  }
}

/* ── Lightbox ── */
.rv-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  backdrop-filter: blur(8px);
  --rv-radius: 4px;
}
.rv-lightbox img,
.rv-lightbox video {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--rv-radius);
}
.rv-lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #fff;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  #nzxt-reviews-widget {
    padding: 48px 20px;
  }
}
@media (max-width: 767px) {
  #nzxt-reviews-widget {
    padding: 40px 16px;
  }
  .rv-summary {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .rv-summary__score {
    min-width: auto;
  }
  .rv-histogram {
    width: 100%;
    max-width: none;
  }
  .rv-list--grid {
    grid-template-columns: 1fr;
  }
  .rv-form-modal {
    padding: 24px 16px;
  }
  .rv-gallery__item {
    width: 96px;
    height: 96px;
  }
  .rv-header__title {
    font-size: 22px;
  }
  .rv-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
