
    footer {
      background-color: #A66E4A;
      color: white;
      text-align: center;
      padding: 1.5em 0;
      margin-top: auto;
    }

  .site-footer {
  background-color: #A66E4A; /* 4E3822 */
  color: #eee;
  padding: 40px 20px 20px;
  font-size: 14px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-section h2 {
  margin-bottom: 15px;
  font-size: 16px;
  color: #fff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #FFF;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #fff;
}

.social-icons a {
  color: #FFF;
  margin-right: 10px;
  font-size: 18px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #EEE;
  padding-top: 15px;
  font-size: 13px;
  color: #fff;
}
/* Sticky footer with CSS Grid */
html, body {
  height: auto;
  min-height: 100%;
  margin: 0;
}

body {
  display: grid;
  grid-template-rows: auto 1fr auto; /* header/nav | content grows | footer */
  min-height: 100svh; /* mobile-safe viewport unit */
}

/* Your main content wrapper */
.checkout-page,
div {
  min-width: 0;   /* prevents overflow that can push footer off-screen */
  min-height: 0;
}

/* Footer must not be fixed/absolute */
.site-footer {
  position: static !important;
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
}