/* ══════════════════════════════════════════════════════════════
   MotoWorks legal footer — shared by index, service, echipament,
   motociclete, piese and the legal pages themselves.

   Carries the four links a Romanian online shop must show on every
   page (Termeni, Confidentialitate, ANPC, SOL) plus the company
   identification data required by Legea 365/2002 art. 5.

   Markup lives in partials/site-footer.html; site-footer.js injects
   it, so the text is edited in exactly one file.
   ══════════════════════════════════════════════════════════════ */

.legal-footer {
  background: #080808;
  border-top: 1px solid #1a1a1a;
  padding: 34px 32px 26px;
  margin-top: 56px;
  font-family: 'Barlow Condensed', -apple-system, BlinkMacSystemFont, sans-serif;
}

.legal-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 28px 48px;
  justify-content: space-between;
  align-items: flex-start;
}

.legal-col-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red, #FFC61A);
  margin-bottom: 12px;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-links a {
  color: #9a9a9a;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  transition: color 0.18s;
  width: fit-content;
}

.legal-links a:hover { color: #fff; }

.legal-company {
  font-size: 0.82rem;
  color: #767676;
  line-height: 1.75;
  letter-spacing: 0.02em;
}

.legal-company strong {
  display: block;
  color: #ccc;
  font-weight: 600;
  margin-bottom: 2px;
}

.legal-company a { color: #9a9a9a; text-decoration: none; }
.legal-company a:hover { color: #fff; }

/* ANPC SAL / SOL. Drawn as text badges instead of the images hosted
   on anpc.ro — an external image would be a third-party request on
   every page load, and the privacy policy says there are none. */
.legal-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.legal-badges a {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  background: #101010;
  color: #9a9a9a;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.18s, color 0.18s;
}

.legal-badges a:hover {
  border-color: var(--red, #FFC61A);
  color: var(--red, #FFC61A);
}

.legal-copy {
  max-width: 1100px;
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid #161616;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4a4a4a;
  text-align: center;
}

@media (max-width: 760px) {
  .legal-footer { padding: 26px 20px 20px; margin-top: 40px; }
  .legal-footer-inner { gap: 22px; flex-direction: column; }
  .legal-badges img { height: 34px; }
}
