:root {
  --line: #e7ebf0;
  --accent: #F26522;
}

/* Video + Amenities (unchanged layout) */
.video-section {
  margin: 24px auto 0;
}

.video-card {
  padding: 20px;
}

.section-title {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
}

.video-frame {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  aspect-ratio: 16/9;
}

.video-frame video,
.video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* Carousels (shared) */
/* arrows */
.crs-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-size: 40px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  z-index: 3;
  text-shadow: 0 0 10px #000;
}

.crs-nav:hover {
  color: #f26522;
}

.crs-prev {
  left: 12px;
}

.crs-next {
  right: 12px;
}

/* dots */
.crs-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  gap: 8px;
  justify-content: center;
  z-index: 3;
}

.crs-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .6);
  border: 1px solid rgba(0, 0, 0, .15);
  cursor: pointer;
}

.crs-dot.is-active {
  background: #fff;
  transform: scale(1.2);
}

/* Fullscreen gallery arrows – use site blue instead of white */
#propertyGalleryOverlay [data-gallery-prev].crs-nav,
#propertyGalleryOverlay [data-gallery-next].crs-nav {
  color: #1a223f;
  /* your ink / dark blue */
  text-shadow: none;
  /* optional: remove glow so it looks cleaner on white */
}

/* Hover state: use your accent orange */
#propertyGalleryOverlay [data-gallery-prev].crs-nav:hover,
#propertyGalleryOverlay [data-gallery-next].crs-nav:hover {
  color: #F26522;
}
