/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* Header general */
.site-header {
  /*background-image: url("img/fondo/FondoBlanco2.png");
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);*/
   position: relative; 
  bottom: 0;
  left: 0;
  width: 100%;
  background-image: url("img/fondo/FondoBlanco2.png");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0; 
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  z-index: 10;
  
}

/* Logo */
.header-logo img {
  height: 130px; /* ajustar según lo que quieras */
}

/* Contenedor de íconos */
/*.header-icons {
  display: flex;
  gap: 15px; /* espacio entre carrito e usuario 
}/*

/* Estilo de los links de íconos */
.icon-link img {
  height: 40px;
  transition: transform 0.2s;
  cursor: pointer;
}

.icon-link img:hover {
  transform: scale(1.1);
}



/* CONTENEDOR PRINCIPAL */
.producto-container {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 30px;
  align-items: start;
}

/* MINIATURAS */
.galeria-mini {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.galeria-mini img {
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s;
}
.galeria-mini img:hover {
  transform: scale(1.05);
}

/* IMAGEN PRINCIPAL */
.imagen-principal img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* DETALLES */
.detalles h1 {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  color: #333;
  background: #ffffff;
  padding: 20px;
}
.precio {
   /*padding: 20px;
  font-weight: bold;
  color: #222;
  font-size: 1.2rem;
  margin-bottom: 20px;*/
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  color: #333;
  background: #fdfdfd;
  padding: 20px;
  
}
.descripcion {
  /*padding: 20px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 30px;*/

  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  color: #333;
  background: #e9e9e9;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  line-height: 1.8;
  font-size: 1rem;
  max-width: 700px;
  margin: 40px auto;
  transition: all 0.3s ease;

}

/* RESPONSIVE */
@media (max-width: 900px) {
  .producto-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .galeria-mini {
    flex-direction: row;
    justify-content: center;
  }
  .galeria-mini img {
    width: 70px;
  }
  .imagen-principal img {
    width: 90%;
    margin: 0 auto;
  }
}

/*Logo WPP*/

.social-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

/* Cada botón */
.social-btn img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: white; /* fondo blanco redondo */
  padding: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efecto hover */
.social-btn img:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Personalización de colores (opcional) */
.whatsapp img {
  border: 2px solid #25D366; /* verde WhatsApp */
}

.instagram img {
  border: 2px solid #E4405F; /* rosa Instagram */
}

.site-footer {
  position: relative; 
  bottom: 0;
  left: 0;
  width: 100%;
  background-image: url("img/fondo/FondoBlanco2.png");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0; 
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  z-index: 10;
}

/* Capa semitransparente */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.3);
  z-index: 1;
}

/* Contenido del footer */
.footer-content {
  position: relative;
  z-index: 2;
}

/* Logo del footer */
.footer-logo {
  height: 130px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}