/* === style-swiper-custom.css re-scris complet === */

/* GALERIA PRINCIPALĂ */
.swiper.main-gallery {
  max-height: 600px;
  margin-left: 0 !important;
  border: none !important; /* fara border debug */
}

.swiper.main-gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;  /* rotunjire si la poza mare */
  object-fit: cover;   /* umple containerul fara goluri */
}

/* GALERIA DE THUMBS */
.swiper.thumbs-gallery {
  margin-top: 10px;
  margin-bottom: 20px;
  margin-left: 0 !important;
  border: none !important; /* fara border debug */
}

.swiper.thumbs-gallery img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s ease;
}

/* fix height la galeria mare */
.main-gallery .swiper-wrapper {
   height: 400px !important;
}

.swiper.thumbs-gallery .swiper-slide-thumb-active img {
  opacity: 1;
  border: 2px solid #30333A;  /* border activ thumbs */
}

.swiper.thumbs-gallery .swiper-slide {
  max-height: 80px;
}

/* SĂGEȚILE DE NAVIGAȚIE */
.swiper-button-next,
.swiper-button-prev {
  color: #30333A !important;
}

/* RESPONSIVE - MOBIL */
@media (max-width: 768px) {
  .swiper.main-gallery {
    max-height: 400px;
  }
  .swiper.thumbs-gallery .swiper-slide {
    max-height: 60px;
  }
  .swiper.thumbs-gallery {
    margin-bottom: 15px;
  }
  
 /* fix height la galeria mare */
	.main-gallery .swiper-wrapper {
	   height: auto !important;
	}
	 
}

/* DESCRIERE - EVITĂ SUPRAPUNEREA */
.content-auto-detalii-thenic {
  clear: both;
  padding-top: 40px;
  margin-top: 50px; /* distanță suplimentară sub thumbs */
}

/* ASIGURĂ POZIȚIONAREA PERFECTĂ */
.content-auto-detalii-poze {
  margin: 0 !important;
  padding: 0 !important;
}


