/* ========== GLOBAL FIX: ancho, box-sizing y overscroll ========== */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;            /* ocultar cualquier scroll horizontal */
  box-sizing: border-box;
  overscroll-behavior-x: none;   /* bloquear rebotes horizontales */
}
*, *::before, *::after {
  box-sizing: inherit;
}

/* Forzar que todas las imágenes no desborden */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===========================
   SECCIÓN DETALLE PRODUCTO
   =========================== */
.producto-detalle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
  align-items: start;
  padding: 0 1rem;
  overflow-x: hidden;            /* extra por si acaso */
}

.producto-detalle__galeria {
  display: flex;
  flex-direction: column;
}

.producto-detalle__imagen-principal {
  border: 1px solid var(--gris-medio);
  padding: 1rem;
  position: relative;
  width: 100%;
}
.producto-detalle__imagen-principal img {
  object-fit: contain;
}

.producto-detalle__nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--primary);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  padding: 0.25rem;
  transition: background 0.2s;
  z-index: 10;
}
.producto-detalle__nav-btn--prev { left: 0.5rem; }
.producto-detalle__nav-btn--next { right: 0.5rem; }
.producto-detalle__nav-btn:hover {
  background: rgba(0,0,0,0.05);
}

.producto-detalle__miniaturas {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  overflow-x: auto;
  justify-content: flex-start;
  padding-bottom: 0.5rem;
  overscroll-behavior-x: contain;    /* scroll de miniaturas suave */
  -webkit-overflow-scrolling: touch;
}
.producto-detalle__miniaturas .miniatura {
  border: 1px solid var(--gris-medio);
  padding: 0.25rem;
  cursor: pointer;
  min-width: 80px;
  max-width: 80px;
  max-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;  
  flex-shrink: 0;                    /* que no obligue a crecer el contenedor */
}
.producto-detalle__miniaturas .miniatura img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  display: block;
}

.producto-detalle__info {
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.producto-detalle__titulo {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.producto-detalle__seccion {
  margin-bottom: 1.5rem;
}
.producto-detalle__seccion h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.producto-detalle__seccion ul {
  list-style: none;
  padding-left: 0;
}
.producto-detalle__seccion ul li {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  line-height: 1.4;
}
.producto-detalle__seccion ul li strong {
  font-size: 1rem;
}
.producto-detalle__envios {
  margin-bottom: 0.9rem;
  line-height: 1.4;
  font-size: 0.9rem;
  color: var(--secondary);
}

/* ===== Hacer toda la línea OEM (etiqueta + valor) en blanco ===== */
#lista-car-repuesto li.oem-line {
  color: #ffffff !important;
}

#lista-car-repuesto li.oem-line strong {
  color: #ffffff !important;
}


/* ========== BOTÓN WHATSAPP ========== */
.btn--filled.whatsapp-detalle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #25D366;
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  max-width: 250px;
  width: 100%;
  justify-content: center;
  transition: background-color 0.2s;
}
.btn--filled.whatsapp-detalle:hover {
  background-color: #1DA851;
}

/* ========== OTROS PRODUCTOS (RECOMENDADOS) ========== */
.otros-productos {
  max-width: 1200px;
  margin: 3rem auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 0 1rem;
  width: 100%;
}
.otros-productos h2 {
  grid-column: 1 / -1;
  font-size: 28px;
  margin-bottom: 1rem;
}

.prod-card {
  background-color: #fff;
  border: 1px solid var(--gris-medio);
  border-radius: 0.6rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  text-align: center;
  min-width: 0;                   /* forzar que no crezca en exceso */
  
}
.prod-card img {
  margin-bottom: 0.8rem;
}
.prod-card h4 {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  color: var(--primary);
  line-height: 1.3;

  display: -webkit-box;
  -webkit-box-orient: vertical;

  overflow: hidden;
  text-overflow: ellipsis;
  height: calc(1.3em * 3); /* exactamente 3 líneas */
}

.prod-card__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

/* ========== BOTONES CONSISTENTES ========== */
.btn--outline {
  width: 90%;
  max-width: none;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  border-radius: 0.6rem;
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
  text-align: center;
  font-family: var(--font-sans);
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
  margin: 0 auto;
}
.btn--outline:hover {
  background-color: var(--primary);
  color: #fff;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .otros-productos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .producto-detalle {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 1rem auto;
    padding: 0 1rem;
    max-width: 100%;
  }

  .producto-detalle__galeria,
  .producto-detalle__info {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
  }

  .producto-detalle__info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .producto-detalle__miniaturas {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
  }

  .producto-detalle__miniaturas .miniatura {
    flex-shrink: 0;
  }

  .producto-detalle__miniaturas .miniatura img {
    width: 60px;
    height: 60px;
    object-fit: contain;
  }

  .producto-detalle__nav-btn {
    display: none;
  }

.btn--filled.whatsapp-detalle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 1rem auto 0 auto; /* 👈 Esto lo centra */
  width: fit-content;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  border-radius: 0.5rem;
}
  .otros-productos {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 1rem;
  }
}



@media (max-width: 576px) {
  /* Más padding lateral */
  .producto-detalle {
    padding: 0 0.5rem;
  }
  /* Otros productos: una columna */
  .otros-productos {
    grid-template-columns: 1fr;
  }
}
