/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer-store-banner {
  background: var(--c-emerald);
  color: var(--c-white);
  padding: var(--sp-4) 0;
}
.footer-store-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}
.footer-store-banner__inner p { margin: 0; font-family: var(--font-display); font-size: 1.125rem; }
.footer-store-banner__inner p strong { color: var(--c-gold-light); }

.footer-columns {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: var(--sp-6);
  padding: var(--sp-7) 0 var(--sp-6);
}

.footer-col__title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-emerald-dark);
  margin-bottom: var(--sp-3);
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-emerald);
  margin-bottom: var(--sp-3);
}

.footer-about-text {
  color: var(--c-muted);
  font-size: var(--fs-small);
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
}
.footer-social__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-emerald-tint);
  color: var(--c-emerald);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.footer-social__icon:hover { background: var(--c-emerald); color: var(--c-white); }

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.footer-links a {
  color: var(--c-muted);
  font-size: var(--fs-small);
}
.footer-links a:hover { color: var(--c-emerald); }

.footer-links--contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  color: var(--c-muted);
  font-size: var(--fs-small);
}
.footer-links--contact svg { margin-top: 2px; flex-shrink: 0; color: var(--c-gold); }
.footer-links--contact a { color: var(--c-muted); }
.footer-links--contact a:hover { color: var(--c-emerald); }

.footer-links__store {
  font-weight: 700;
  color: var(--c-emerald) !important;
}

/* Community / newsletter band */
.footer-newsletter {
  background: var(--c-emerald-dark);
  color: var(--c-white);
  padding: var(--sp-5) 0;
}
.footer-newsletter__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}
.footer-newsletter__inner h3 { color: var(--c-white); margin-bottom: 4px; }
.footer-newsletter__inner p { color: rgba(255,255,255,0.75); margin: 0; max-width: 380px; }

.newsletter-form {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
}
.newsletter-form input[type="email"] {
  min-width: 240px;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: var(--c-white);
  font-family: var(--font-body);
}
.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.55); }
.newsletter-form__message {
  width: 100%;
  margin: var(--sp-2) 0 0;
  font-size: var(--fs-small);
  color: var(--c-gold-light);
}
.newsletter-form__message[hidden] { display: none; }

.footer-bottom {
  border-top: 1px solid var(--c-border);
  padding: var(--sp-4) 0;
}
.footer-bottom__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}
.footer-bottom__inner p {
  margin: 0;
  font-size: var(--fs-small);
  color: var(--c-muted);
}
.footer-bottom__links {
  display: flex;
  gap: var(--sp-4);
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-bottom__links a {
  font-size: var(--fs-small);
  color: var(--c-muted);
}
.footer-bottom__links a:hover { color: var(--c-emerald); }

@media (max-width: 900px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-5);
  }
  .footer-col--brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .footer-columns { grid-template-columns: 1fr; }
  .footer-store-banner__inner { text-align: center; justify-content: center; }
  .footer-newsletter__inner { text-align: center; justify-content: center; }
  .newsletter-form { justify-content: center; width: 100%; }
  .newsletter-form input[type="email"] { flex: 1; min-width: 0; }
  .footer-bottom__inner { justify-content: center; text-align: center; }
}
