@import url('https://fonts.googleapis.com/css?family=Almarai:300,400,700,800&display=swap');

:root {
  --rv-bg: #f5f8f7;
  --rv-surface: #ffffff;
  --rv-soft: #f1f7f5;
  --rv-text: #102124;
  --rv-muted: #607174;
  --rv-line: rgba(2,52,58,.10);
  --rv-primary: #02343a;
  --rv-accent: #19bc95;
  --rv-danger: #dc2626;
  --rv-warning: #f59e0b;
  --rv-radius-sm: 16px;
  --rv-radius-md: 22px;
  --rv-radius-lg: 30px;
}

* {
  box-sizing: border-box;
}

html,
body {
  scrollbar-color: rgba(2,52,58,.22) #eef4f2;
  scrollbar-width: thin;
}

body {
  font-family: 'Almarai', sans-serif;
  background: var(--rv-bg);
  color: var(--rv-text);
}

body::-webkit-scrollbar,
html::-webkit-scrollbar {
  width: 8px;
  background: #eef4f2;
}

body::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb {
  background: rgba(2,52,58,.25);
  border-radius: 999px;
}

.unit-view-main {
  padding-bottom: 110px;
}

.rv-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--rv-radius-lg);
  padding: 18px;
  margin: 14px 0 18px;
  background: var(--rv-primary);
  border: 1px solid rgba(2,52,58,.12);
}

.rv-title-layer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.rv-title-main {
  min-width: 0;
}

.rv-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 10px;
}

.rv-title-main h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  line-height: 1.35;
  font-weight: 900;
}

.rv-status-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 12px;
}

.rv-soft-pill,
.property-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.16);
}

.rv-soft-pill {
  background: rgba(255,255,255,.12);
  color: #fff;
}

.property-status.status-available {
  background: rgba(25,188,149,.18);
  color: #dffff6;
}

.property-status.status-reserved {
  background: rgba(245,158,11,.18);
  color: #fff2d0;
}

.property-status.status-sold {
  background: rgba(220,38,38,.18);
  color: #ffe0e0;
}

.property-status.status-unknown {
  background: rgba(255,255,255,.13);
  color: #fff;
}

.rv-title-actions {
  display: flex;
  gap: 9px;
}

.rv-icon-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(2,52,58,.08);
  border-radius: 16px;
  background: #fff;
  color: var(--rv-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: transform .14s ease, background .14s ease, color .14s ease, border-color .14s ease;
}

.rv-icon-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(25,188,149,.38);
}

.rv-icon-btn.active,
.fav-btn-header.active {
  color: #e11d48;
  background: #fff1f4;
  border-color: rgba(225,29,72,.22);
}

.whatsapp-only {
  color: #128c5b;
  background: rgba(37,211,102,.12);
}

.rv-media-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 315px;
  gap: 14px;
  align-items: stretch;
}

.media-stage {
  position: relative;
  width: 100%;
  min-height: 430px;
  border-radius: 26px;
  overflow: hidden;
  background: #0a2024;
  border: 1px solid rgba(255,255,255,.16);
}

.media-stage::before {
  content: "";
  display: block;
  padding-top: 58%;
}

.media-stage-inner {
  position: absolute;
  inset: 0;
}

.media-stage-inner img,
.media-stage-inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #0a2024;
  display: block;
}

.media-stage-open {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 17px;
  border: 1px solid rgba(2,52,58,.08);
  cursor: pointer;
  background: #fff;
  color: var(--rv-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rv-media-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  min-height: 40px;
  padding: 0 13px;
  border-radius: 999px;
  background: #fff;
  color: var(--rv-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  border: 1px solid rgba(2,52,58,.08);
}

.rv-side-panel {
  display: grid;
  gap: 10px;
  direction: rtl;
  align-content: start;
}

.rv-price-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  direction: ltr;
  gap: 6px;
  width: max-content;
  max-width: 100%;
  margin: 6px 0 4px auto;
  align-self: auto;
}

.rv-price-row strong {
  font-size: 1.72rem;
  color: var(--rv-primary);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.4px;
}

.rv-price-row img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.rv-price-card,
.rv-agent-mini,
.rv-rating-mini {
  border-radius: 18px;
  background: #fff;
  padding: 12px;
  border: 1px solid rgba(2,52,58,.08);
  min-height: 92px;
}

.rv-price-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  text-align: right;
  direction: rtl;
  width: 100%;
}

.rv-price-card span {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-right: 0;
  margin-left: auto;
  color: var(--rv-muted);
  font-weight: 900;
  font-size: 13px;
  text-align: right;
}

.rv-price-card strong {
  font-size: 1.72rem;
  color: var(--rv-primary);
  font-weight: 900;
  margin: 4px 0;
  line-height: 1;
}

.rv-price-card small {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  color: var(--rv-muted);
  font-weight: 800;
  direction: ltr;
}

.rv-price-card small span {
  color: var(--rv-muted);
}

.rv-price-card small img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.rv-price-card em {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-top: 8px;
  margin-right: 0;
  margin-left: auto;
  color: var(--rv-primary);
  background: var(--rv-soft);
  border-radius: 12px;
  padding: 7px 9px;
  font-style: normal;
  font-size: 11.5px;
  font-weight: 800;
  text-align: right;
}

.rv-agent-mini {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  text-align: right;
  direction: rtl;
}

.rv-agent-mini img {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  object-fit: cover;
  background: #eef4f2;
  border: 1px solid rgba(2,52,58,.08);
  flex: 0 0 48px;
}

.rv-agent-mini b {
  display: block;
  color: var(--rv-primary);
  font-size: .92rem;
  font-weight: 900;
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rv-agent-mini span {
  color: var(--rv-accent);
  font-size: 12px;
  font-weight: 800;
}

.rv-rating-mini {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  text-align: right;
  direction: rtl;
}

.rv-rating-mini i {
  color: #fbbf24;
  font-size: 1.35rem;
}

.rv-rating-mini span {
  color: var(--rv-primary);
  font-weight: 900;
  font-size: .96rem;
}

.rv-rating-mini small {
  color: var(--rv-muted);
  font-size: 12px;
  font-weight: 800;
}

.media-gallery.horizontal-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 14px 2px 4px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.35) transparent;
}

.media-gallery.horizontal-scroll::-webkit-scrollbar {
  height: 5px;
}

.media-gallery.horizontal-scroll::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.35);
  border-radius: 999px;
}

.media-thumb {
  flex: 0 0 112px;
  width: 112px;
  aspect-ratio: 1/1;
  border-radius: 20px;
  background: rgba(255,255,255,.12);
  cursor: pointer;
  overflow: hidden;
  scroll-snap-align: start;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  position: relative;
  transition: transform .14s ease, border-color .14s ease, opacity .14s ease;
  padding: 0;
}

.media-thumb.active {
  border-color: var(--rv-accent);
}

.media-thumb:hover {
  transform: translateY(-1px);
}

.media-thumb img,
.media-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.play-btn-overlay {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 46px;
  height: 46px;
  background: rgba(2,52,58,.60);
  border-radius: 50%;
  color: #fff;
  font-size: 1.15rem;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rv-action-dock {
  position: sticky;
  top: 82px;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  margin: 16px 0;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(2,52,58,.08);
}

.rv-dock-btn {
  min-width: 116px;
  min-height: 50px;
  border: 1px solid rgba(2,52,58,.08);
  border-radius: 17px;
  background: #fff;
  color: var(--rv-primary);
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 900;
  transition: transform .14s ease, background .14s ease, color .14s ease, border-color .14s ease;
}

.rv-dock-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(25,188,149,.38);
}

.rv-dock-btn.call-btn {
  background: var(--rv-primary);
  color: #fff;
  border-color: var(--rv-primary);
}

.rv-dock-btn.whatsapp-btn {
  background: rgba(37,211,102,.12);
  color: #128c5b;
  border-color: rgba(37,211,102,.24);
}

.rv-dock-btn.interest-btn {
  background: var(--rv-accent);
  color: #fff;
  border-color: var(--rv-accent);
}

.rv-accordion {
  background: #fff;
  border: 1px solid rgba(2,52,58,.08);
  border-radius: 26px;
  overflow: hidden;
  margin: 16px 0;
}

.rv-accordion-header {
  width: 100%;
  border: none;
  background: #fff;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: right;
  cursor: pointer;
  font-family: inherit;
}

.rv-accordion-header span {
  display: inline-block;
  color: var(--rv-accent);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 5px;
}

.rv-accordion-header h2 {
  margin: 0;
  color: var(--rv-primary);
  font-size: 1.08rem;
  font-weight: 900;
}

.rv-accordion-icon {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: var(--rv-soft);
  color: var(--rv-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .18s ease;
}

.rv-accordion.open .rv-accordion-icon {
  transform: rotate(180deg);
}

.rv-accordion-content {
  display: none;
  padding: 0 16px 16px;
}

.rv-accordion.open .rv-accordion-content {
  display: block;
}

.specs-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.spec-item {
  border-radius: 20px;
  padding: 13px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid rgba(2,52,58,.08);
  text-align: center;
  min-height: 108px;
}

.spec-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--rv-soft);
  color: var(--rv-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.spec-icon i {
  color: var(--rv-accent);
  font-size: 1.12rem;
}

.spec-item span {
  font-weight: 900;
  color: var(--rv-primary);
  font-size: 13px;
}

.spec-item strong {
  color: var(--rv-text);
  font-size: 14px;
  line-height: 1.2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
}

.feature-card {
  background: #fff;
  border: 1px solid rgba(2,52,58,.08);
  border-radius: 20px;
  padding: 13px 11px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 76px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 15px;
  background: var(--rv-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rv-accent);
}

.feature-text {
  color: var(--rv-primary);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.unit-details {
  font-weight: 500;
  font-size: 0.96rem;
  color: #26383b;
  margin: 0;
  text-align: right;
  direction: rtl;
  line-height: 1.45;
  white-space: normal;
  letter-spacing: 0;
}

.unit-details br {
  display: block;
  content: "";
  margin-bottom: 3px;
}

.unit-details p {
  margin: 0 0 8px;
}

.marketer-profile-card {
  display: grid;
  grid-template-columns: 82px minmax(0,1fr) auto;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(2,52,58,.08);
  border-radius: 22px;
  padding: 14px;
  margin-top: 16px;
}

.marketer-avatar-square {
  width: 82px;
  height: 82px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--rv-soft);
  border: 1px solid rgba(2,52,58,.08);
}

.marketer-avatar-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.marketer-meta {
  min-width: 0;
  text-align: right;
}

.marketer-name {
  font-size: 1.04rem;
  font-weight: 900;
  color: var(--rv-primary);
}

.project-supervisor {
  font-size: .9rem;
  color: var(--rv-accent);
  font-weight: 800;
  margin-top: 3px;
}

.unit-meta {
  color: var(--rv-muted);
  font-size: .86rem;
  margin-top: 8px;
  line-height: 1.55;
}

.unit-meta i {
  margin-left: 4px;
}

.marketer-actions {
  display: flex;
  gap: 8px;
}

.rating-summary-box {
  margin-bottom: 12px;
  font-weight: 900;
  color: var(--rv-primary);
  text-align: center;
}

.star-rating {
  direction: ltr;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2px;
  margin: 16px 0 8px;
}

.star-rating input[type="radio"] {
  display: none;
}

.star-rating label {
  font-size: 2.15rem;
  color: #d1d5db;
  cursor: pointer;
  transition: color .14s ease, transform .12s ease;
  user-select: none;
  padding: 0 2px;
}

.star-rating input[type="radio"]:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: #fbbf24;
}

.star-rating label:hover {
  transform: scale(1.05);
}

.u-btn {
  background: var(--rv-primary);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: .96rem;
  padding: 12px 26px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 900;
  margin: 10px auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.rv-msg {
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 800;
  margin: 8px 0;
}

.rv-msg.success {
  background: rgba(22,163,74,.10);
  color: #15803d;
}

.rv-msg.error {
  background: rgba(220,38,38,.10);
  color: #b91c1c;
}

.interest-modal {
  position: fixed;
  inset: 0;
  background: rgba(2,52,58,.58);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  padding: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.interest-modal-content {
  background: #fff;
  width: 100%;
  max-width: 430px;
  padding: 24px;
  border-radius: 26px;
  position: relative;
  border: 1px solid rgba(2,52,58,.08);
}

.interest-close {
  background: var(--rv-soft);
  border: none;
  font-size: 1.2rem;
  position: absolute;
  top: 14px;
  left: 14px;
  cursor: pointer;
  color: var(--rv-primary);
  width: 42px;
  height: 42px;
  border-radius: 16px;
}

.interest-title {
  margin: 8px 0 18px;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--rv-primary);
}

#interestForm label {
  display: block;
  margin: 10px 0 6px;
  font-weight: 800;
  color: var(--rv-muted);
}

#interestForm input {
  width: 100%;
  padding: 13px 14px;
  border-radius: 16px;
  border: 1.3px solid rgba(2,52,58,.12);
  background: #fafcfb;
  box-sizing: border-box;
  font-family: inherit;
}

#interestForm input:focus {
  border-color: var(--rv-accent);
  background: #fff;
  outline: none;
}

.interest-submit {
  width: 100%;
  background: var(--rv-accent);
  color: #fff;
  border: none;
  padding: 13px;
  margin-top: 16px;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  justify-content: center;
  gap: 8px;
}

#toastSuccess,
#toastError {
  position: fixed;
  bottom: 25px;
  right: 25px;
  color: #fff;
  padding: 12px 20px;
  border-radius: 16px;
  display: none;
  font-weight: 900;
  z-index: 999999;
}

#toastSuccess {
  background: #16a34a;
}

#toastError {
  background: #c62828;
}

.media-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4,12,13,.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.media-modal-content {
  position: relative;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  padding: 24px;
}

.media-modal-view {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-modal-view img,
.media-modal-view video {
  width: auto;
  height: auto;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 32px);
  object-fit: contain;
  border-radius: 20px;
  background: #090c19;
  display: block;
  margin: 0 auto;
}

.media-modal-close,
.media-modal-arrow {
  position: absolute;
  border: none;
  cursor: pointer;
  z-index: 8;
  background: rgba(255,255,255,.18);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.media-modal-close {
  top: calc(env(safe-area-inset-top) + 16px);
  left: 14px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.4rem;
}

.media-modal-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  font-size: 1.6rem;
  opacity: 0;
  transition: opacity .25s ease;
}

.media-modal-arrow.left {
  right: 18px;
}

.media-modal-arrow.right {
  left: 18px;
}

.media-modal-backdrop.show-arrows .media-modal-arrow {
  opacity: 1;
}

@media (min-width: 1101px) {
  .rv-media-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .rv-side-panel {
    grid-template-columns: minmax(220px, .9fr) minmax(220px, 1fr) minmax(220px, .8fr);
    order: 2;
  }

  .media-stage {
    order: 1;
  }

  .rv-price-card,
  .rv-agent-mini,
  .rv-rating-mini {
    min-height: 88px;
  }
}

@media (max-width: 1100px) {
  .rv-media-layout {
    grid-template-columns: 1fr;
  }

  .rv-side-panel {
    grid-template-columns: repeat(3, minmax(0,1fr));
  }

  .specs-list,
  .features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .unit-view-main {
    padding-bottom: 116px;
  }

  .rv-hero {
    border-radius: 0 0 28px 28px;
    margin: 0 -12px 16px;
    padding: 16px 12px 18px;
  }

  .rv-title-layer {
    align-items: flex-start;
  }

  .rv-title-main h1 {
    font-size: 1.3rem;
  }

  .rv-title-actions {
    gap: 7px;
  }

  .rv-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 15px;
  }

  .media-stage {
    min-height: 270px;
    border-radius: 24px;
  }

  .media-stage::before {
    padding-top: 72%;
  }

  .rv-side-panel {
    grid-template-columns: 1fr;
  }

  .rv-price-card strong {
    font-size: 1.85rem;
  }

  .media-thumb {
    flex-basis: 90px;
    width: 90px;
    min-width: 90px;
    border-radius: 17px;
  }

  .rv-action-dock {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(env(safe-area-inset-bottom) + 12px);
    top: auto;
    z-index: 9998;
    margin: 0;
    border-radius: 24px;
    padding: 9px;
    gap: 7px;
  }

  .rv-dock-btn {
    min-width: 0;
    flex: 1;
    min-height: 52px;
    border-radius: 17px;
    font-size: 0;
    gap: 0;
  }

  .rv-dock-btn i {
    font-size: 1.1rem;
  }

  .rv-dock-btn span {
    display: none;
  }

  .rv-accordion {
    border-radius: 24px;
  }

  .rv-accordion-header {
    padding: 15px;
  }

  .rv-accordion-content {
    padding: 0 15px 15px;
  }

  .specs-list,
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .spec-item {
    min-height: 102px;
    padding: 12px 9px;
  }

  .feature-card {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .unit-details {
    font-size: .92rem;
    line-height: 1.38;
  }

  .unit-details br {
    margin-bottom: 2px;
  }

  .marketer-profile-card {
    grid-template-columns: 70px minmax(0,1fr);
  }

  .marketer-avatar-square {
    width: 70px;
    height: 70px;
  }

  .marketer-actions {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .marketer-actions .rv-icon-btn {
    flex: 1;
  }

  #toastSuccess,
  #toastError {
    right: 14px;
    left: 14px;
    bottom: 92px;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .specs-list,
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rv-accordion-header h2 {
    font-size: 1rem;
  }

  .rv-chip {
    font-size: 12px;
  }
}