  html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  background-color: white;
  scroll-behavior: smooth;
}
.home-link {
    display: block;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    color: #E8E5DE;
    font-size: 18px;
	background-color:black;
  }

  .cart-link:hover {
    text-decoration: underline;
  }

.container {
  flex: 1;
  margin: 20px;
  padding: 10px;
  text-align: center;
}

.container h1 {
  color: black;
}

.container button {
  border: none;
  cursor: pointer;
  margin: 10px;
  border-radius:10px;
}

.up,
.prev {
  position: relative;
  margin-top: 45px;
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 20px;
  width: 90%;
  max-width: 500px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  z-index: 1000;
  display: none;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  background: none;
  border: none;
  color:white;
  background-color:red;
  cursor: pointer;
}

@media (max-width: 480px) {
  .popup {
    width: 95%;
    padding: 15px;
  }
}
.home-link {
    display: block;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    color: #E8E5DE;
    font-size: 16px;
	background-color:black;
  }

.footer{
	width:100%;
	}
.footer .footer_container{
min-height:40%;
max-width:100%;
background-color:black;
color:white;
padding:10px;
}
.footer_container .button{
	display:inline;
	padding:10px;
	}
.footer_container .button a{
text-decoration:none;
color:white;
font-size:20px;
}
.button_social {
    display: grid;
    grid-template-columns: 1.5fr 0.2fr; /* Two equal columns */
    gap: 5px; /* Space between divs */
    width: 100%;
	padding-top:15px;
}
.footer .social{
float:left;
text-align:right;
display:flex;
gap:15px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
