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

html, body {
  font-family: Arial, sans-serif;
  color: #000;
  background-color: #fffbf7;
  height: 100%;
  
}

.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  position: relative;
}
nav {
  text-align: center;
  padding: 1rem;
  position: relative;
}
nav ul {
  list-style: none;
  display: inline-flex;
  gap: 0.5rem;
}
nav ul li a {
  display: inline-block;
  border-radius: 50px;
  background-color: #056bfa27;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #056dfa;
  transition: background-color 0.3s ease;
}
nav ul li a:hover {
  background-color: #056bfa49;
}

.cart-icon {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}

main {
  box-sizing: border-box;
  padding: 2rem;
}

h1, h2, h3 {
  font-weight: bold;
}
a {
  text-decoration: none;
  color: inherit;
}

footer {
  margin-top: auto;
  text-align: center;
  padding: 1rem;
}

footer hr {
  width: 100%;
  height: 1px;
  border: none;
  background: linear-gradient(to right, transparent, #ccc, transparent);
  margin-bottom: 1rem;
}

.digital-wallet-buttons-container {
  width: 100%;
}

apple-pay-button {
  --apple-pay-button-width: 100%;
  --apple-pay-button-height: 40px;
  --apple-pay-button-border-radius: 40px;
  --apple-pay-button-padding: 0px 0px;
  --apple-pay-button-box-sizing: border-box;
}