/* ==========================================================================
   Footer — replaces the Duda footer on every page.
   Built from the Visit Us block on the rebuilt homepage: shop details on the
   left, the Google Maps embed on the right, then a bottom bar carrying the
   copyright, the legal links and the accepted cards.
   Self-contained and scoped to .fcf so it cannot reach page content.
   ========================================================================== */
.fcf {
  --ink: #1d1f21; --deep: #14161a; --line: rgba(255,255,255,.13);
  --soft: rgba(255,255,255,.66); --accent: #c8362f;
  background: var(--deep); color: #fff;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 15px; line-height: 1.62; text-align: left;
}
.fcf *, .fcf *::before { box-sizing: border-box; }
.fcf a { color: inherit; text-decoration: none; }
.fcf ul { list-style: none; margin: 0; padding: 0; }
.fcf p { margin: 0; }
.fcf-wrap { max-width: 1200px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }

/* top: details + map */
.fcf-top { padding-block: 60px; }
.fcf-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: start; }
.fcf-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: #fff; margin: 0 0 14px;
}
.fcf-eyebrow::before { content: ""; width: 34px; height: 3px; background: var(--accent); border-radius: 2px; flex: 0 0 34px; }
.fcf h2 { font-size: 27px; line-height: 1.18; font-weight: 800; letter-spacing: -.02em; margin: 0 0 26px; color: #fff; }
.fcf-dl { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px 32px; }
.fcf-dl > div { min-width: 0; }
.fcf dt { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.44); margin-bottom: 5px; }
.fcf dd { margin: 0; color: var(--soft); }
.fcf dd a:hover { color: #fff; }
.fcf .fcf-link { color: var(--accent); font-weight: 600; }
.fcf .fcf-link:hover { color: #ff8b84; }
.fcf-hours span { display: block; }
.fcf-map { border-radius: 14px; overflow: hidden; border: 1px solid var(--line); line-height: 0; }
.fcf-map iframe { width: 100%; height: 320px; border: 0; display: block; filter: grayscale(18%); }

/* bottom bar */
.fcf-bottom { border-top: 1px solid var(--line); padding-block: 22px; }
.fcf-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px; }
.fcf-copy { font-size: 13.5px; color: rgba(255,255,255,.55); }
.fcf-legal { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 13.5px; }
.fcf-legal a { color: rgba(255,255,255,.72); }
.fcf-legal a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.fcf-cards { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.fcf-cards img {
  height: 26px; width: auto; display: block; border-radius: 3px;
  background: #fff; padding: 2px;
}

@media (max-width: 900px) {
  .fcf-grid { grid-template-columns: 1fr; gap: 36px; }
  .fcf-map { order: -1; }
  .fcf-map iframe { height: 260px; }
  .fcf-top { padding-block: 46px; }
  .fcf-cards { margin-left: 0; }
}
@media (max-width: 520px) {
  .fcf-dl { grid-template-columns: 1fr; }
  .fcf h2 { font-size: 23px; }
}
