@media (max-width: 768px) {

.navbar {
position: absolute;
}

.container_producto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1100px;
  margin: 60px auto;
   margin-top: 80px;
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* 🪴 Fondo del contenedor de imágenes */
.contenedor_imagenes_producto {
  background-color: var(--beige);
}

/* Imagen principal */
.contenedor_imagen_principal_producto {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0.8rem 1rem;
  filter: contrast(110%) brightness(105%);
}

.imagen_principal_producto {
  max-width: 580px;
  max-height: 580px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease;
  width: 100%;
  height: auto;
}

/* Miniaturas alternas */
.contenedor_imagenes_alternas {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 15px;
  padding: 0.8rem;
  flex-wrap: wrap;
}

.imagen_producto {
  width: 55px;
  height: 65px;
  border-radius: 12px;
  object-fit: cover;
  cursor: pointer;
}

/* 🧾 Info del producto */
.producto_info {
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.producto_info h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--verde_marron-oscuro);
}

.producto_precio {
  font-size: 1.6rem;
  color: var(--color-principal);
  font-weight: 700;
  margin-bottom: 1rem;
}

.producto_descripcion {
  text-align: right;
  line-height: 1.7;
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 1.8rem;
}

.producto_acciones {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.producto_acciones input {
  width: 90px;
  padding: 0.4rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  text-align: center;
  font-size: 1rem;
}

.boton_agregar {
  background-color: var(--color-principal);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1.6rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, transform 0.2s;
}

.boton_agregar:hover {
  background-color: var(--verde-oscuro);
  transform: scale(1.02);
}

.producto_minimo {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #777;
}

/* Redes */
.Redes_producto {
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

.Redes_producto a {
  border-radius: 100px;
  transition: transform 0.3s ease;
}

.Redes_producto div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: solid 2px #fff;
  border-radius: 100px;
  box-shadow: 0px 4px 4px 0px #00000040;
}

#compartir_whatsapp {
  background: #25D366;
}

#compartir_facebook {
  background: #0866FF;
}

#compartir_instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.Redes_producto a:hover {
  transform: translateY(-5px);
}

/* 📱 RESPONSIVE: móviles y tablets */
@media (max-width: 850px) {
  .container_producto {
    grid-template-columns: 1fr;
    /* margin: 30px auto; */
  }

  .contenedor_imagenes_producto {
    order: 1;
  }

  .producto_info {
    order: 2;
    padding: 1rem 1.3rem 2rem;
  }

  .imagen_principal_producto {
    max-width: 100%;
    max-height: 400px;
  }

  .producto_info h1 {
    font-size: 1.5rem;
    text-align: left;
  }

  .producto_precio {
    text-align: left;
  }

  .producto_descripcion {
    text-align: left;
  }

  .producto_acciones {
    justify-content: center;
  }

  .Redes_producto {
    justify-content: center;
  }
}

/* 📱 Extra pequeño: pantallas menores a 480px */
@media (max-width: 480px) {
  .producto_acciones input {
    width: 70px;
  }

  .boton_agregar {
    text-align: center;
  }

  .producto_info h1 {
    font-size: 1.3rem;
    text-align: left;
  }

  .producto_precio {
    font-size: 1.3rem;
    text-align: left;
  }
}

}