body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #181c24;
  color: #e0e6ef;
  margin: 0;
  min-height: 100vh;
}
header {
  background: #232a34;
  padding: 1.5rem 0;
  text-align: center;
  box-shadow: 0 2px 8px #0002;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-header {
  height: 56px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
}
.logo-izq {
  position: absolute;
  left: 2rem;
}
.logo-der {
  position: absolute;
  right: 2rem;
}
@media (max-width: 700px) {
  .logo-header {
    height: 36px;
    max-width: 70px;
  }
  .logo-izq {
    left: 0.5rem;
  }
  .logo-der {
    display: none;
  }
  header h1 {
    font-size: 1.3rem;
  }
}
header h1 {
  margin: 0;
  font-size: 2.2rem;
  letter-spacing: 2px;
  color: #0088ff;
  text-shadow: 0 2px 8px #0088ff33;
  z-index: 1;
}

.admin-link {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #8a9ba8;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border: 1px solid #3a4149;
  border-radius: 6px;
  transition: all 0.2s;
}

.admin-link:hover {
  color: #0088ff;
  border-color: #0088ff;
  background: #0088ff11;
}
.galeria {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}
@media (max-width: 1000px) {
  .galeria {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .galeria {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 1rem;
  }
}
.producto {
  background: #232a34;
  border-radius: 12px;
  box-shadow: 0 2px 12px #0088ff22;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.producto:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px #0088ff44;
}
.producto img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  background: #1a1f27;
}
.producto .titulo {
  font-size: 1.1rem;
  margin: 0.7rem 0 0.2rem 0;
  color: #0088ff;
  font-weight: 600;
}
.producto .precio {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.7rem;
}
footer {
  background: #232a34;
  color: #0088ff;
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  margin-top: 2rem;
  box-shadow: 0 -2px 8px #0002;
}
footer .contacto p {
  margin: 0.5rem 0;
  font-size: 1.2rem;
  font-weight: 500;
}
.popup {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #181c24cc;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: opacity 0.2s;
}
.popup.oculto {
  display: none;
}
.popup-content {
  background: #232a34;
  border-radius: 16px;
  box-shadow: 0 8px 32px #0088ff55;
  display: flex;
  flex-direction: row;
  max-width: 700px;
  width: 95vw;
  padding: 2rem;
  gap: 2rem;
  position: relative;
}
@media (max-width: 700px) {
  .popup-content {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    gap: 1rem;
  }
}
.popup-img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  background: #1a1f27;
}
.popup-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.popup-info h2 {
  color: #0088ff;
  margin: 0 0 0.5rem 0;
}
.popup-info p {
  margin: 0.3rem 0;
}
.popup-info .precio {
  font-size: 1.2rem;
  color: #fff;
  margin-top: 0.7rem;
}
.popup-cerrar {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #0088ff;
  color: #232a34;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.3rem;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s;
}
.popup-cerrar:hover {
  background: #00b3c6;
}

.btn-mas-info {
  background: #0088ff;
  color: #232a34;
  border: none;
  border-radius: 8px;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1rem;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px #0088ff33;
}

.btn-mas-info:hover {
  background: #00b3c6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px #0088ff44;
}

.btn-mas-info:active {
  transform: translateY(0);
}

.filtros-bar {
  max-width: 1200px;
  margin: 2rem auto 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #232a34;
  padding: 1rem 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px #0088ff22;
}
.filtros-bar label {
  color: #0088ff;
  font-weight: 600;
}
.filtros-bar select {
  background: #1a1f27;
  color: #e0e6ef;
  border: 1px solid #3a4149;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.filtros-bar select:focus {
  border-color: #0088ff;
} 