/* RESET GENERAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ESTRUCTURA GENERAL */
html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

body {
  font-family: Arial, sans-serif;
}

/* HEADER */
.site-header {
  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;
}

/* Íconos */
.icon-link img {
  height: 40px;
  transition: transform 0.2s;
  cursor: pointer;
}

.icon-link img:hover {
  transform: scale(1.1);
}

/* PRODUCTOS */
.productos-hoodies {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.grid-productos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

.producto-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.producto-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.3s ease;
}

.producto-item:hover img {
  transform: scale(1.05);
}

.producto-info {
  padding: 15px;
  text-align: center;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  color: #333;
  background: #ffffff;
}

.producto-nombre {
  font-size: clamp(1rem, 1.2vw, 1.3rem);
  margin-bottom: 8px;
  color: #333;
}

.producto-precio {
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  color: #555;
}

.producto-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* 🔹 QUITAR SUBRAYADO Y COLOR AZUL */
.producto-item a {
  text-decoration: none !important;
  color: inherit !important;
  display: block;
}

.producto-item a:hover {
  text-decoration: none !important;
  color: inherit !important;
}

/* RESPONSIVIDAD */
@media (max-width: 1024px) {
  .producto-img img {
    aspect-ratio: 1 / 1.1;
  }
}

@media (max-width: 600px) {
  .producto-img img {
    aspect-ratio: 1 / 1.2;
  }
}

/* BOTONES REDES SOCIALES */
.social-buttons {
  position: fixed;
  bottom: 100px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.social-btn img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: white;
  padding: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-btn img:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.whatsapp img {
  border: 2px solid #25D366;
}

.instagram img {
  border: 2px solid #E4405F;
}

/* CONTENIDO PRINCIPAL */
.site-main {
  flex: 1;
}

/* FOOTER */
.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));
}
