
:root{
  --color-acento: #8B27F5;
  --color-acento-claro: #8B27F5;
  --color-texto: black;
}

body{
  margin: 0;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

h3, p{
  margin: 5px;
}

.escondido{
  display: none;
}

a{
  background-color: unset;
  border:unset;
  cursor:pointer;
  text-decoration: none;
  transition: 200ms;
  color: var(--color-texto);
}

button{
  transition: 200ms;
}

a:hover:not(#cart), button:hover{
  color: var(--color-acento);
}

/* Header */
header{
  box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.09);
  margin-bottom: 10px;
  font-size: larger;
}

header nav{
  display: flex;
  justify-content: space-between;
  margin: 0 60px;
}

header nav div{
  display: flex;
  align-items: center;
  gap: 40px;
}

header nav img{
  height: 25px;
}

#cuenta-carrito{
  position: absolute;
  background-color: #8B27F5;
  border-radius: 100%;
  display: inline-block;
  height: 25px;
  line-height: 25px;
  aspect-ratio: 1;
  text-align: center;
  /* margin-bottom: 15px; */
}

footer {
  text-align: left;
  box-shadow: -1px -3px 5px rgba(0, 0, 0, 0.09);
  padding: 20px;
  margin: 50px auto 20px auto;
  font-size: 12px;
  width: 100%;
  max-width: 100vw; /* nuevo */
  box-sizing: border-box; /* nuevo */
  height: auto;
}



footer strong {
  font-weight: bold;
  font-weight: bold;
  font-size: 14px;

}

footer p {
  margin-bottom: 10px;
}

footer div {
  display: flex;
  align-items: center;
}

#logo{
  height: 40px;
  margin: 20px;
}
