/* ================= SLIDER ================= */
.vcom-floor-slider {
  width: 100%;
  height: 520px;
  position: relative;
  overflow: hidden;
  background: #000;
  padding: 0 0 80px 0;
}

.vcom-floor-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}

.vcom-floor-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vcom-floor-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ================= CAPTION ================= */
.vcom-floor-caption {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 18px;
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
}

/* ================= NAV ================= */
.vcom-floor-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
}

.vcom-floor-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #555;
  background: transparent;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.vcom-floor-btn:hover {
  background: rgba(255,255,255,0.15);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .vcom-floor-slider {
    height: 380px;
  }

  .vcom-floor-caption {
    font-size: 15px;
  }
}