/* ── FOOTER ── */
footer {
  background: var(--deep);
  color: rgba(255,255,255,0.5);
  padding: 3rem 0 1.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-logo {
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.footer-logo span { color: var(--gold); }
.footer-about {
  font-size: 0.83rem;
  line-height: 1.75;
  max-width: 260px;
}
.footer-col-title {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ── FLOATING WA BUTTON ── */
.floating-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 200;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
.floating-wa svg { width: 28px; height: 28px; fill: white; }

/* Hygiene badge */
.hygiene-banner {
  background:
    linear-gradient(180deg, rgba(201, 169, 110, 0.14) 0%, transparent 50%),
    linear-gradient(
      118deg,
      var(--cream) 0%,
      var(--ivory) 32%,
      #faf6ef 52%,
      rgba(232, 213, 196, 0.55) 78%,
      var(--cream) 100%
    );
  box-shadow: inset 0 1px 0 rgba(201, 169, 110, 0.2);
  padding: 1rem 0;
  text-align: center;
}
.hygiene-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.hygiene-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
}
.hygiene-item::before {
  content: '✓';
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
  width: 1.15em;
  text-align: center;
}

@media (max-width: 768px) {
  .hygiene-banner {
    text-align: left;
    padding: 0.85rem 0;
  }
  .hygiene-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem 0.85rem;
    justify-content: stretch;
    align-items: start;
    padding-left: 0;
    padding-right: 0;
  }
  .hygiene-item {
    min-width: 0;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 0.65rem;
    letter-spacing: 0.06em;
    line-height: 1.35;
    text-align: left;
    box-sizing: border-box;
  }
  .hygiene-item::before {
    margin-top: 0.1em;
  }
  .hygiene-inner .hygiene-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
  }
}

/* Utility */
.text-gold { color: var(--gold); }
.mt-2 { margin-top: 2rem; }
.divider {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 1.2rem 0;
}
.divider-center { margin: 1.2rem auto; }
.text-center { text-align: center; }

/* Scroll fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s, transform 0.7s;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
