/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


/* Header */

.usuario-logo-header {
  width: 50px;
}

header {
  display: flex;
  justify-content: space-between;
  background-color: black;
}

header img {
  object-fit: cover;
  width: 30%;
}

/* Cards */
#cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 20px;
}

.producto {
  border: 2px solid #000;
  padding: 10px;
  background-color: #fff;
  width: 200px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.producto h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.producto img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.producto button {
  padding: 8px 12px;
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  font-size: 1em;
}

.producto button:hover {
  background-color: #45a049;
}

/* Carrito */
#carrito {
  position: fixed;
  right: 20px;
  top: 80px;
  width: 250px;
  max-height: 400px;
  overflow-y: auto;
  background-color: white;
  border: 2px solid #000;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9em;
  z-index: 1000;
}

#carrito h2 {
  text-align: center;
  margin-bottom: 10px;
}

#carrito div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

#carrito button {
  background-color: #f44336;
  border: none;
  padding: 4px 8px;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8em;
}

#carrito button:hover {
  background-color: #d32f2f;
}
