/* ================= GALERIE PRODUS ================= */

.product-card-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* GALERIE STÂNGA */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-main-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 22px;
}

/* THUMBNAILS */
.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.product-thumbs img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.product-thumbs img:hover,
.product-thumbs img.active {
  opacity: 1;
  transform: scale(1.05);
}

/* DETALII DREAPTA */
.product-details h1 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.product-description {
  line-height: 1.8;
  opacity: 0.75;
  margin-bottom: 30px;
}

.product-info {
  list-style: none;
  padding: 0;
}

.product-info li {
  margin-bottom: 12px;
}

/* BUTON JOS */
.product-footer-btn {
   margin-top: 15px;
  margin-bottom: 1px;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .product-card-layout {
    grid-template-columns: 1fr;
  }

.product-main-image{
  width:100%;
  height:520px;

  background:white;
  border-radius:22px;

  display:flex;
  align-items:center;
  justify-content:center;

  box-shadow:0 18px 40px rgba(0,0,0,0.08);
  overflow:hidden;
}
}


