.footer {
  background: var(--text-dark);
  padding: 56px var(--section-px) 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-logo-img {
  height: 28px;
  width: auto;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  max-width: 280px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-stores {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-footer-store {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  border-radius: 8px;
  padding: 8px 14px;
  transition: background .2s;
  cursor: pointer;
}
.btn-footer-store:hover      { background: rgba(255,255,255,.12); }
.btn-footer-store.soon       { opacity: .45; pointer-events: none; }

.footer-store-sublabel {
  display: block;
  font-size: 9px;
  opacity: .6;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 400;
}
.footer-store-name {
  display: block;
  font-size: 12px;
  font-weight: 700;
}

.footer-col-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-links a:hover { color: rgba(255,255,255,.8); }

.footer-hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,.08);
  margin: 0;
}

.footer-bottom {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,.35);
}
.footer-copy .brand-ocre { color: var(--ocre); }

.footer-legal-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal-row a {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  transition: color .2s;
}
.footer-legal-row a:hover { color: rgba(255,255,255,.6); }

.footer-sig {
  width: 100%;
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,.25);
  padding-bottom: 8px;
}

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-legal-row { justify-content: center; gap: 14px; }
}
