 /* ===== RELATED PRODUCTS ===== */

 .related-products {
  padding: 4rem 0;
  margin: 0 5%;
}

.related-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #0f172a;
}

/* Carrusel */
.related-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 24px;

  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

/* Scroll bonito */
.related-carousel::-webkit-scrollbar {
  height: 8px;
}

.related-carousel::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}

/* Card */
.related-card {
  background: #fff;
  border-radius: 16px;
  scroll-snap-align: start;
  transition: transform .25s ease;
}

.related-card:hover {
  transform: translateY(-6px);
}

/* Link */
.related-link {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 16px;
}

/* Imagen */
.related-image img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
}

/* Nombre */
.related-name {
  font-size: 1rem;
  font-weight: 600;
  margin: 12px 0 6px;
  color: #0f172a;
}

/* Precio */
.related-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0039a6;
}


@media (max-width: 768px) {
  .related-carousel {
    grid-auto-columns: 80%;
  }
}