* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
}

header {
  padding: 30px;
  text-align: center;
}

.logo {
  width: 140px;
}

.dashboard {
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-catalogo {
  padding: 24px 48px;
  font-size: 24px;
  background: var(--bordo);
  color: var(--gold);
  border-radius: 60px;
  border: 2px solid var(--gold);
  text-decoration: none;
  transition: .3s;
}

.btn-catalogo:hover {
  background: var(--gold);
  color: #000;
}

.buscador {
  text-align: center;
  padding: 30px;
}

.buscador input {
  width: 80%;
  max-width: 650px;
  padding: 20px;
  font-size: 20px;
  border-radius: 14px;
}

.grid-productos {
  column-count: 4;
  column-gap: 18px;
  padding: 30px;
}

.producto {
  break-inside: avoid;
  margin-bottom: 18px;
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
}

.producto img {
  width: 100%;
  transition: transform .3s;
}

.producto:hover img {
  transform: scale(1.05);
}

.producto-info {
  padding: 10px;
}

.detalle-producto {
  padding: 30px;
}

.galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.galeria img {
  width: 100%;
  border-radius: 14px;
}

@media (max-width: 900px) {
  .grid-productos {
    column-count: 2;
  }
}

.top-bar {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 15px;
}

.btn-login {
  background: linear-gradient(135deg, #7b1e24, #d4af37);
  color: white;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}
