/* ============================================================
   Houzez Easy Submit — editor estilo Revolut
   Cards redondeadas, iconos pastel circulares, switches grandes,
   FAB pill. Sin hovers ni transiciones.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.rv {
  --rv-bg: #F7F7F9;
  --rv-card: #FFFFFF;
  --rv-text: #0B0E13;
  --rv-text-2: #191C1F;
  --rv-muted: #66686D;
  --rv-muted-2: #A1A3A8;
  --rv-line: #ECEDF0;
  --rv-input-bg: #F2F3F5;
  --rv-input-bg-focus: #E8EAEF;
  --rv-accent: #0666EB;

  --rv-blue:   #0666EB; --rv-blue-bg:   #E6EFFD;
  --rv-purple: #7C3AED; --rv-purple-bg: #F1E9FE;
  --rv-green:  #0E9F6E; --rv-green-bg:  #E1F5EC;
  --rv-cyan:   #0891B2; --rv-cyan-bg:   #E0F2F8;
  --rv-orange: #EA580C; --rv-orange-bg: #FDECE0;
  --rv-pink:   #DB2777; --rv-pink-bg:   #FCE7F0;
  --rv-yellow: #C2840A; --rv-yellow-bg: #FFF3D6;
  --rv-red:    #DC2626; --rv-red-bg:    #FCE7E7;
  --rv-gray:   #4B5057; --rv-gray-bg:   #ECEDF0;

  --rv-font: 'Inter', -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  --rv-font-mono: ui-monospace, SFMono-Regular, 'JetBrains Mono', Menlo, monospace;

  font-family: var(--rv-font);
  color: var(--rv-text);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--rv-bg);
  min-height: 100vh;

  max-width: 760px;
  margin: 0 auto;
  padding: 24px 24px 140px;
}
.rv, .rv * { box-sizing: border-box; }
.rv a { text-decoration: none; color: inherit; }
.rv input, .rv textarea, .rv select, .rv button { font-family: inherit; color: inherit; }

/* ── Volver ─────────────────────────────────── */
.rv-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: var(--rv-muted);
  margin-bottom: 18px;
  padding: 6px 10px 6px 4px;
  border-radius: 999px;
}
.rv-back__arrow { font-size: 16px; line-height: 1; }

/* ── Cabecera ───────────────────────────────── */
.rv-header { margin-bottom: 28px; }
.rv-header__title {
  width: 100%;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--rv-text);
  line-height: 1.15;
  padding: 0;
  margin: 0 0 12px;
  outline: none;
}
.rv-header__title::placeholder { color: #C4C6CB; }
.rv-header__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12.5px;
}
.rv-header__id {
  font-family: var(--rv-font-mono);
  font-size: 11.5px;
  color: var(--rv-muted-2);
}
.rv-header__save {
  font-family: var(--rv-font-mono);
  font-size: 11.5px;
  color: var(--rv-muted-2);
}
.rv-header__spacer { flex: 1; }
.rv-header__link {
  color: var(--rv-muted);
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--rv-card);
  border: 1px solid var(--rv-line);
  font-size: 12px;
  font-weight: 500;
}

.rv-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.rv-tag--blue { background: var(--rv-blue-bg); color: var(--rv-blue); }

/* ── Section title ──────────────────────────── */
.rv-section-title {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 28px 4px 10px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--rv-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.rv-section-title__count {
  font-weight: 500;
  color: var(--rv-muted-2);
  text-transform: none;
  letter-spacing: 0;
}

/* ── Card ───────────────────────────────────── */
.rv-card {
  background: var(--rv-card);
  border-radius: 20px;
  box-shadow: 0 1px 2px rgba(11, 14, 19, 0.04);
}
.rv-card--padded { padding: 18px; }

/* ── Row ────────────────────────────────────── */
.rv-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--rv-line);
}
.rv-row:last-child { border-bottom: 0; }
.rv-row--block { align-items: flex-start; }

.rv-row__icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.rv-row__icon svg { width: 18px; height: 18px; stroke-width: 1.75; }

.rv-icon--blue   { background: var(--rv-blue-bg);   color: var(--rv-blue); }
.rv-icon--purple { background: var(--rv-purple-bg); color: var(--rv-purple); }
.rv-icon--green  { background: var(--rv-green-bg);  color: var(--rv-green); }
.rv-icon--cyan   { background: var(--rv-cyan-bg);   color: var(--rv-cyan); }
.rv-icon--orange { background: var(--rv-orange-bg); color: var(--rv-orange); }
.rv-icon--pink   { background: var(--rv-pink-bg);   color: var(--rv-pink); }
.rv-icon--yellow { background: var(--rv-yellow-bg); color: var(--rv-yellow); }
.rv-icon--red    { background: var(--rv-red-bg);    color: var(--rv-red); }
.rv-icon--gray   { background: var(--rv-gray-bg);   color: var(--rv-gray); }

.rv-row__content { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.rv-row__label {
  font-size: 12.5px;
  color: var(--rv-muted);
  font-weight: 500;
}
.rv-row__sub {
  font-size: 12px;
  color: var(--rv-muted-2);
}
.rv-row__inputs {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.rv-row__sep {
  color: var(--rv-muted-2);
  font-size: 13px;
  user-select: none;
}
.rv-unit {
  font-size: 13px;
  color: var(--rv-muted);
}

/* ── Inputs ─────────────────────────────────── */
.rv-input {
  border: 0;
  background: var(--rv-input-bg);
  border-radius: 10px;
  padding: 9px 12px;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--rv-text);
  outline: none;
  box-shadow: none !important;
  appearance: none;
  -webkit-appearance: none;
}
.rv-input::placeholder { color: var(--rv-muted-2); font-weight: 400; }
.rv-input:focus { background: var(--rv-input-bg-focus); }
.rv-input--mono { font-family: var(--rv-font-mono); font-variant-numeric: tabular-nums; }
.rv-input--xs { width: 72px; padding: 8px 10px; text-align: center; }
.rv-input--sm { width: 96px; padding: 8px 10px; text-align: center; }
.rv-input--narrow { width: auto; min-width: 100px; }

/* Variante "bare" para inputs dentro de rows: sin fondo, parece texto editable */
.rv-input--bare {
  background: transparent;
  padding: 4px 0;
  font-size: 15px;
  font-weight: 500;
  border-radius: 0;
  width: 100%;
  min-width: 0;
}
.rv-input--bare:focus {
  background: transparent;
  box-shadow: inset 0 -1px 0 var(--rv-accent) !important;
}
.rv-input--bare::placeholder { color: var(--rv-muted-2); font-weight: 400; }
.rv-input--bare.rv-input--xs { width: 56px; text-align: left; padding: 4px 0; font-size: 15px; }
.rv-input--bare.rv-input--sm { width: 78px; text-align: left; padding: 4px 0; }
.rv-input--bare.rv-input--narrow { width: auto; min-width: 0; padding-right: 22px; }

/* Selects */
.rv-input--bare {
  background-image: none;
}
select.rv-input--bare {
  cursor: pointer;
  padding-right: 22px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' width='12' height='12'><path d='M5 8l5 4 5-4' fill='none' stroke='%23A1A3A8' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
}

/* Textarea grande */
.rv-textarea {
  width: 100%;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 15px;
  line-height: 1.6;
  color: var(--rv-text);
  padding: 0;
  outline: none;
  resize: vertical;
}
.rv-textarea::placeholder { color: var(--rv-muted-2); }

/* ── Switch (Revolut/iOS) ────────────────────── */
.rv-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 26px;
  flex-shrink: 0;
}
.rv-switch input { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.rv-switch__track {
  position: absolute;
  inset: 0;
  background: #E3E5E9;
  border-radius: 999px;
}
.rv-switch__track::after {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.18);
}
.rv-switch input:checked + .rv-switch__track { background: var(--rv-text); }
.rv-switch input:checked + .rv-switch__track::after { left: 21px; }

/* Stepper (− valor +) */
.rv-stepper {
  display: inline-grid;
  grid-template-columns: 32px 38px 32px;
  align-items: center;
  flex-shrink: 0;
  background: var(--rv-input-bg);
  border-radius: 999px;
  height: 36px;
  overflow: hidden;
}
.rv-stepper__btn {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--rv-text);
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
}
.rv-stepper__value {
  text-align: center;
  font-family: var(--rv-font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 14px;
  font-weight: 600;
  color: var(--rv-text);
}

/* Pair (par de inputs con sub-label) */
.rv-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}
.rv-pair__field {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.rv-pair__label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rv-muted-2);
}

/* Mini toggle (precio a consultar) */
.rv-mini-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--rv-muted);
  cursor: pointer;
  flex-shrink: 0;
}
.rv-mini-toggle input { width: 14px; height: 14px; margin: 0; accent-color: var(--rv-text); }

/* ── Chips ──────────────────────────────────── */
.rv-block { display: flex; flex-direction: column; gap: 8px; }
.rv-block + .rv-block { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--rv-line); }
.rv-block__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rv-muted);
}
.rv-block__manage {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--rv-accent);
}
.rv-block__hint {
  margin: 0;
  font-size: 12.5px;
  color: var(--rv-muted-2);
}
.rv-card__manage {
  margin-left: auto;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--rv-accent);
}
.rv-card__hint {
  margin: 0;
  font-size: 12.5px;
  color: var(--rv-muted-2);
}
.rv-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.rv-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border: 0;
  border-radius: 999px;
  background: var(--rv-input-bg);
  color: var(--rv-text);
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}
.rv-chip.is-active {
  background: var(--rv-text);
  color: #fff;
}

/* ── Galería ────────────────────────────────── */
.rv-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}
.rv-tile {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  background: var(--rv-input-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.rv-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rv-tile__cover {
  position: absolute; top: 8px; left: 8px;
  padding: 3px 9px;
  background: rgba(11,14,19,0.85);
  color: #fff;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.rv-tile__remove {
  position: absolute; top: 6px; right: 6px;
  width: 24px; height: 24px;
  border: 0;
  border-radius: 50%;
  background: rgba(11,14,19,0.85);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.rv-tile--add {
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  border: 1.5px dashed #D6D8DD;
  background: transparent;
  color: var(--rv-muted);
}
.rv-tile--add.is-dragover { border-style: solid; border-color: var(--rv-accent); }
.rv-tile__plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--rv-input-bg);
  color: var(--rv-text);
  font-size: 18px;
  line-height: 1;
}
.rv-tile__addlabel { font-size: 12px; color: var(--rv-muted); font-weight: 500; }

/* ── Documentos ─────────────────────────────── */
.rv-docs { list-style: none; margin: 6px 0 8px; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.rv-docs__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--rv-input-bg);
  font-size: 13.5px;
}
.rv-docs__icon { width: 16px; height: 16px; color: var(--rv-muted); flex-shrink: 0; }
.rv-docs__icon svg { width: 100%; height: 100%; stroke-width: 1.6; }
.rv-docs__name {
  flex: 1;
  color: var(--rv-text);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rv-docs__remove {
  width: 22px; height: 22px;
  border: 0;
  background: transparent;
  color: var(--rv-muted);
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
}

.rv-addbtn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--rv-input-bg);
  color: var(--rv-text);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  align-self: flex-start;
}

/* ── FAB ────────────────────────────────────── */
.rv-fab {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}
.rv-fab__btn {
  padding: 14px 28px;
  border: 0;
  border-radius: 999px;
  background: var(--rv-text);
  color: #ffffff !important;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(11, 14, 19, 0.25);
  min-width: 200px;
}
.rv-fab__btn span { color: #ffffff !important; }
.rv-fab__btn:disabled { opacity: 0.6; cursor: not-allowed; }

.rv-fab--success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--rv-text);
  color: #fff;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(11, 14, 19, 0.25);
}
.rv-fab__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--rv-green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}
.rv-fab__link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}

/* ============================================================
   WIZARD — header / footer / progress / steps
   ============================================================ */

.rv-wizard { padding-bottom: 120px; }

.rv-progress {
  width: 100%;
  height: 4px;
  background: var(--rv-line);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 12px;
}
.rv-progress__fill {
  height: 100%;
  background: var(--rv-text);
  border-radius: 999px;
}

.rv-error {
  margin: 0 0 18px;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--rv-red-bg);
  color: var(--rv-red);
  font-size: 13.5px;
  font-weight: 500;
}

.rv-step { display: flex; flex-direction: column; gap: 0; }
.rv-step__title {
  margin: 0 4px 4px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--rv-text);
}
.rv-step__hint {
  margin: 0 4px 12px;
  font-size: 13.5px;
  color: var(--rv-muted);
}

.rv-section-title__count { font-weight: 500; color: var(--rv-muted-2); text-transform: none; letter-spacing: 0; }

/* Filas seleccionables (radios) en step1 tipo de propiedad */
.rv-row--clickable { cursor: pointer; }
.rv-row__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--rv-text);
}

.rv-radio {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--rv-line);
  background: var(--rv-card);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.rv-row.is-selected .rv-radio { border-color: var(--rv-text); }
.rv-radio__inner {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--rv-text);
}

/* Footer fijo del wizard */
.rv-wizard__footer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(247, 247, 249, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--rv-line);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 50;
}
.rv-wizard__footer-spacer { flex: 1; }
.rv-wizard__footer-state {
  font-family: var(--rv-font-mono);
  font-size: 11.5px;
  color: var(--rv-muted-2);
}

.rv-fab__btn--inline {
  position: static;
  transform: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border: 0;
  border-radius: 999px;
  background: var(--rv-text);
  color: #ffffff !important;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  min-width: 180px;
  box-shadow: 0 6px 18px rgba(11, 14, 19, 0.22);
  text-decoration: none;
}
.rv-fab__btn--inline span { color: #ffffff !important; }
.rv-fab__btn--inline:disabled { opacity: 0.45; cursor: not-allowed; box-shadow: none; }

.rv-fab__ghost {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--rv-text);
  font: inherit;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
}

/* Pantalla de éxito */
.rv-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 56px 24px;
  margin: 32px 0;
  background: var(--rv-card);
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 1px 2px rgba(11,14,19,0.04);
}
.rv-success__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--rv-green-bg);
  color: var(--rv-green);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
}
.rv-success__title { margin: 0; font-size: 22px; font-weight: 700; letter-spacing: -0.015em; }
.rv-success__hint { margin: 0 0 18px; color: var(--rv-muted); }

/* Consentimiento GDPR */
.rv-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 13.5px;
  color: var(--rv-muted);
  line-height: 1.5;
}
.rv-consent input { position: absolute; opacity: 0; pointer-events: none; }
.rv-consent__box {
  width: 22px; height: 22px;
  border-radius: 6px;
  border: 1.5px solid var(--rv-line);
  background: var(--rv-card);
  flex-shrink: 0;
  position: relative;
  margin-top: 1px;
}
.rv-consent input:checked + .rv-consent__box {
  background: var(--rv-text);
  border-color: var(--rv-text);
}
.rv-consent input:checked + .rv-consent__box::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

/* ── Anular layout admin WP en TODAS las páginas del Modo Fácil ── */
body.toplevel_page_houzez-easy-submit #wpcontent,
body[class*="page_houzez-easy-submit"] #wpcontent,
body[class*="page_houzez-easy-submit-sub"] #wpcontent,
body[class*="page_houzez-easy-submit-list"] #wpcontent { background: #F7F7F9 !important; }

body.toplevel_page_houzez-easy-submit #wpfooter,
body[class*="page_houzez-easy-submit"] #wpfooter,
body[class*="page_houzez-easy-submit-list"] #wpfooter { display: none; }

/* Silenciar cualquier aviso del admin que se cuele */
body.toplevel_page_houzez-easy-submit .notice,
body.toplevel_page_houzez-easy-submit .updated,
body.toplevel_page_houzez-easy-submit .error,
body.toplevel_page_houzez-easy-submit .update-nag,
body.toplevel_page_houzez-easy-submit .e-notice,
body.toplevel_page_houzez-easy-submit #wp-admin-bar-updates,
body[class*="page_houzez-easy-submit"] .notice,
body[class*="page_houzez-easy-submit"] .updated,
body[class*="page_houzez-easy-submit"] .error,
body[class*="page_houzez-easy-submit"] .update-nag,
body[class*="page_houzez-easy-submit"] .e-notice,
body[class*="page_houzez-easy-submit"] .tgmpa { display: none !important; }

.hes-admin-wrap,
.hes-admin-wrap--edit {
  max-width: none;
  padding: 0;
  background: transparent;
  margin: 0;
}
.hes-admin-wrap--edit .hes-step__title,
.hes-admin-wrap--edit .hes-advanced,
.hes-admin-wrap--edit .hes-edit-banner,
.hes-admin-wrap--edit .hes-wizard__header,
.hes-admin-wrap--edit .hes-wizard__footer { display: none; }

@media (max-width: 720px) {
  .rv { padding: 16px 16px 120px; }
  .rv-header__title { font-size: 28px; }
  .rv-row { padding: 12px 14px; gap: 12px; }
  .rv-row__icon { width: 34px; height: 34px; border-radius: 10px; }
  .rv-row__icon svg { width: 16px; height: 16px; }
  .rv-fab__btn { min-width: 180px; }
}
