/* 🧱 GRID DE PRODUCTOS RELACIONADOS */

.sds-rel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  padding: 10px;
}

/* 📱 Responsive: 1 columna en móvil */

@media screen and (max-width: 767px) {
  .sds-rel-grid {
    grid-template-columns: 1fr !important;
  }
}

/* 🧩 TARJETA DE PRODUCTO */

.sds-rel-item {
  background: #fff;
  border-style: solid;
  padding: 12px;
  text-align: center;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.sds-rel-item:hover {
  border-color: #0073e6;
  box-shadow: 0 0 6px rgba(0, 115, 230, 0.2);
}

/* 🖼️ SLIDER DE IMÁGENES DEL PRODUCTO */

.sds-rel-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 10px;
}

.swiper-wrapper {
  display: flex !important;
  flex-direction: row;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100% !important;
  box-sizing: border-box;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

/* ⬅️➡️ BOTONES DE NAVEGACIÓN DEL SLIDER */
/* (Estos estilos se mantienen igual ya que son de Swiper) */

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 30px;
  height: 30px;
  font-size: 16px;
  color: #333;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
}

.swiper-button-prev { left: 10px; }
.swiper-button-next { right: 10px; }

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: rgba(0,0,0,0.6);
  color: #fff;
}

/* 🏷️ TÍTULO Y SUBTÍTULO DEL PRODUCTO */
/* (Estos estilos genéricos se mantienen) */

.titulo-producto {
  margin-bottom: 0;
  padding-bottom: 4px;
  font-weight: bold;
  font-size: 1.1em;
}

.subtitulo-producto {
  margin-top: 0 !important;
  font-size: 0.95em;
  line-height: 1.3;
}

/* 💸 PRECIOS DE PRODUCTO */
/* (Estos estilos genéricos se mantienen) */

.precio-regular,
.precio-oferta,
.precio-unico {
  display: block;
  width: 100%;
  text-align: inherit; /* Elementor lo controla */
}

.precio-regular {
  text-decoration: line-through;
}

.precio-unico {
  text-decoration: none;
}

.precio-oferta {
  display: block;
  width: 100%;
}

.precio-apilado {
  align-items: stretch;
}