/* css/productos.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Space Grotesk', 'Poppins', sans-serif;
  background: #000000;
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: 0.5px;
  padding: 40px;
}

/* Header - IGUAL QUE tienda.css */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  background: #000000;
  border-bottom: 1px solid #1a1a1a;
  margin-bottom: 20px;
}

.menu-left {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background: transparent;
  color: #ffffff;
  padding: 10px 0;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.3s;
}

.dropbtn:hover {
  opacity: 0.6;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #0a0a0a;
  min-width: 160px;
  border: 1px solid #1a1a1a;
  z-index: 1;
}

.dropdown-content a {
  color: #ffffff;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 0.8rem;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.dropdown-content a:hover {
  background-color: #1a1a1a;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.logo {
  flex: 1;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: #ffffff;
}

.nav-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.nav-right a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 1px;
  transition: opacity 0.3s;
}

.nav-right a:hover {
  opacity: 0.6;
}

/* Contenedor de productos */
.contenedor-productos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Tarjeta de producto */
.producto {
  width: 280px;
  background: #0a0a0a;
  border: 1px solid #333;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}

.producto:hover {
  transform: translateY(-4px);
  border-color: #fff;
}

.producto img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  display: block;
}

.info {
  padding: 15px;
  text-align: center;
  color: white;
}

.nombre {
  font-size: 14px;
  margin-bottom: 5px;
}

.subtitulo {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}

.precio {
  font-size: 16px;
  color: #e44d26;
  margin-top: 8px;
}

/* Footer - IGUAL QUE tienda.css */
footer {
  padding: 48px;
  text-align: center;
  background: #000000;
  border-top: 1px solid #1a1a1a;
  margin-top: 40px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

footer p {
  color: #333;
  font-size: 0.7rem;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
  body {
    padding: 20px;
  }
  
  header {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  
  .menu-left, .logo, .nav-right {
    flex: none;
    width: 100%;
    text-align: center;
  }
  
  .menu-left {
    justify-content: center;
  }
  
  .nav-right {
    justify-content: center;
  }
  
  .contenedor-productos {
    gap: 20px;
  }
  
  footer {
    padding: 30px 20px;
  }
  
  .footer-links {
    gap: 20px;
  }
}