/* ================= SLIDER ================= */
.vcom-hover-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #000;
}

.vcom-hover-track {
  display: flex;
  transition: transform 0.7s ease-in-out;
}

/* ================= SLIDE ================= */
.vcom-hover-slide {
  position: relative;
  min-width: 33.3333%;
  height: 520px;
  overflow: hidden;
}

.vcom-hover-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= OVERLAY (HOVER) ================= */
.vcom-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.vcom-hover-slide:hover .vcom-hover-overlay {
  opacity: 1;
}

/*.vcom-hover-box {
  border: 2px solid #fff;
  padding: 35px 45px;
  max-width: 420px;
  text-align: center;
}*/

.vcom-hover-box p {
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
  padding:0px 15px 0 15px;
}

/* ================= NAV ================= */
.vcom-hover-nav {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 18px;
}

.vcom-hover-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.85);
  font-size: 22px;
  cursor: pointer;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .vcom-hover-slide {
    min-width: 100%;
    height: 380px;
  }

  .vcom-hover-box {
    padding: 25px;
  }

  .vcom-hover-box p {
    font-size: 16px;
  }
}