/* Catálogo estilo e-commerce pero con diseño negro/dorado */
.as-catalogo-pagina {
  display: flex;
  gap: 30px;
  padding: 30px 5%;
  background-color: #000;
}

/* Sidebar filtros */
.as-sidebar-filtros {
  flex: 0 0 250px;
  background-color: #111;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  color: #fff;
  height: fit-content;
}

.as-sidebar-filtros h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #ffd700;
}

.as-filtro-grupo {
  margin-bottom: 20px;
  border-bottom: 1px solid #333;
  padding-bottom: 15px;
}

.as-filtro-grupo:last-child {
  border-bottom: none;
}

.as-filtro-grupo h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #fff;
}

.as-filtro-grupo label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.95rem;
  color: #ccc;
  cursor: pointer;
}

.as-filtro-grupo input[type="checkbox"] {
  margin-right: 8px;
}

/* Ordenar y buscar */
.as-filtro-grupo select,
#buscar {
  width: 100%;
  padding: 8px 12px;
  background-color: #222;
  color: #fff;
  border: 1px solid #444;
  border-radius: 6px;
}

#buscar::placeholder {
  color: #888;
  font-size: 0.9rem;
}

/* Productos */
.as-contenido-productos {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.as-productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.as-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.as-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 20px rgba(255, 255, 255, 0.15);
}

.as-card img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.as-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #ffd700;
}

.as-price-tachado {
  text-decoration: line-through;
  color: #aaa;
  font-size: 0.9rem;
}

.as-price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
}

.as-btn {
  display: inline-block;
  background: #ffd700;
  color: #000;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.as-btn:hover {
  background: #e6c200;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
  .as-catalogo-pagina {
    flex-direction: column;
  }
  .as-sidebar-filtros {
    width: 100%;
    min-width: auto;
  }
}
/* Header base */
.as-header {
  padding: 20px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Colores por página */



.pagina-hombre .as-header {
  background: linear-gradient(135deg, #4da6ff, #3385ff); /* azul */
}

/* Logo y enlaces */
.as-logo a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.as-nav a {
  color: #fff;
  margin-left: 15px;
  text-decoration: none;
  transition: color 0.3s;
}

.as-nav a:hover {
  color: #ffe6f0; /* rosa claro para mujer, se puede cambiar según página */
}

.as-btn {
  background: #ffd700; /* botón rosa */
  color: #fff;
  padding: 8px 16px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s;
}

.as-btn:hover {
  background: #3385ff;
  transform: scale(1.05);
}



