/* =========================================================
   footer.css
   Wildridge — deep-green footer
   ========================================================= */

.site-footer{background:var(--pine-deep);color:var(--cream);padding:clamp(48px,6vw,64px) 0 36px}
.foot-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr;gap:40px;margin-bottom:42px}
.foot-brand .foot-mark{font-family:var(--display);font-weight:600;font-size:1.3rem;color:var(--cream);
  display:inline-block;margin-bottom:14px}
.foot-brand .foot-mark b{color:var(--wheat);font-weight:600}
.foot-brand p{color:rgba(244,236,214,.7);max-width:30ch;margin:0}
.foot-col h4{font-family:var(--mono);font-size:.7rem;letter-spacing:.16em;text-transform:uppercase;
  color:var(--wheat);margin:0 0 16px}
.foot-col a{display:block;color:var(--cream);opacity:.82;margin-bottom:10px;font-size:.95rem;
  transition:opacity var(--transition-fast),color var(--transition-fast)}
.foot-col a:hover{opacity:1;color:var(--wheat)}
.foot-base{border-top:1px solid var(--border-deep);padding-top:22px;display:flex;
  justify-content:space-between;flex-wrap:wrap;gap:10px;font-family:var(--mono);font-size:.68rem;
  letter-spacing:.08em;color:rgba(244,236,214,.6)}
@media(max-width:768px){.foot-grid{grid-template-columns:1fr;gap:28px}}

/* ---------------------------------------------------------
   THE WIDE FOOTER  (S30: moved here from the store's store.css)
   ---------------------------------------------------------
   These were store-only rules while the store had its own footer and
   the live site had a narrower one. The two footers are the same footer
   now, so the rules belong in the file both trees share rather than in
   a stylesheet only one of them loads. They were deleted from store.css
   in the same change - if you find them in both, one copy is a leftover
   and they will drift.
   --------------------------------------------------------- */
.foot-grid--store{grid-template-columns:1.5fr 1fr 1fr 1fr}
.foot-address{font-style:normal;margin-top:14px;font-size:.9rem;line-height:1.6;
  color:rgba(244,236,214,.7)}

.foot-cards{display:flex;flex-wrap:wrap;align-items:center;gap:9px;margin-bottom:26px;
  padding-bottom:24px;border-bottom:1px solid var(--border-deep)}
.card-mark{padding:5px 10px;border:1px solid rgba(244,236,214,.28);border-radius:var(--radius-sm);
  font-family:var(--mono);font-size:.6rem;letter-spacing:.12em;color:rgba(244,236,214,.82)}
.foot-secure{flex:1 1 260px;font-size:.78rem;line-height:1.55;color:rgba(244,236,214,.6)}

/* Lifted out of the live footer's inline <style> block. It worked there
   (style-src keeps 'unsafe-inline') but an inline style block in a tree
   that has to inventory every script on the checkout page is a habit
   worth not carrying across. */
.foot-base a[href*="violev"],
.foot-base a[href*="securelynx"]{transition:color var(--transition-fast)}
.foot-base a[href*="violev"]:hover{color:#8B5CFF}
.foot-base a[href*="securelynx"]:hover{color:#00E6FF}

@media(max-width:900px){.foot-grid--store{grid-template-columns:1fr 1fr}}
@media(max-width:620px){.foot-grid--store{grid-template-columns:1fr}}
