/* ==================================================================
   SITE FOOTER
   ------------------------------------------------------------------
   Deliberately NOT part of shop.css. That file carries global class
   names - .wrap, .logo, .btn, .eyebrow - which are safe inside the
   .sw-shop wrapper but would collide with Elementor and the landing
   page if loaded on every request. Everything here is scoped under
   .sw-foot and the tokens are redeclared locally, so this stylesheet
   can be loaded site-wide without touching anything else.
   ================================================================== */

.sw-foot{
  --f-ink:#0E0E0E;
  --f-red:#E42127;
  --f-line:rgba(255,255,255,.09);
  --f-display:'Archivo Black',Archivo,system-ui,sans-serif;
  --f-sans:'Inter',system-ui,sans-serif;
  --f-mono:'JetBrains Mono',ui-monospace,monospace;

  background:var(--f-ink);
  color:rgba(255,255,255,.7);
  font-family:var(--f-sans);
  font-size:14px;
  line-height:1.6;
  padding:54px 0 24px;
  margin-top:0;
}
.sw-foot *{box-sizing:border-box}
.sw-foot a{color:inherit;text-decoration:none;transition:color .15s}

.sw-foot-wrap{max-width:1440px;margin:0 auto;padding:0 32px}

/* ---- top ---- */
.sw-foot-top{
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr 1fr 1fr;
  gap:40px;
  padding-bottom:36px;
  border-bottom:1px solid var(--f-line);
}

.sw-foot-logo{display:inline-flex;align-items:center;font-family:var(--f-display);font-size:18px;letter-spacing:-.01em;line-height:1}
/* White block behind SMOOTH: the shop logo uses ink, which disappears
   on an ink footer. */
.sw-foot-logo .smooth{background:#fff;color:var(--f-ink);padding:7px 30px 7px 12px;border-radius:5px;position:relative;z-index:1}
.sw-foot-logo .wholesales{background:var(--f-red);color:#fff;padding:7px 12px;border-radius:5px;margin-left:-16px;transform:skewX(-8deg);position:relative;z-index:2}
.sw-foot-logo .wholesales span{display:inline-block;transform:skewX(8deg)}

.sw-foot-brand p{margin:18px 0 0;max-width:330px;font-size:14px;line-height:1.55}
.sw-foot-hours{margin-top:18px;font-family:var(--f-mono);font-size:12.5px;color:rgba(255,255,255,.7)}
.sw-foot-hours .k{display:block;font-size:10.5px;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.5);margin-bottom:4px}

.sw-foot-col h6{
  font-family:var(--f-mono);font-size:11px;font-weight:600;letter-spacing:.12em;
  text-transform:uppercase;color:rgba(255,255,255,.5);margin:0 0 16px;
}
.sw-foot-col ul{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:10px}
.sw-foot-col li{margin:0}
.sw-foot-addr{color:rgba(255,255,255,.55);line-height:1.5}

/* ---- bottom ---- */
.sw-foot-bot{
  display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;
  padding-top:20px;font-family:var(--f-mono);font-size:12px;color:rgba(255,255,255,.5);
}
.sw-foot-copy .sep{opacity:.4;margin:0 4px}

/* The policy links live here rather than as a fifth column: six items
   would crowd the top row, and they are legal furniture, not
   navigation. */
.sw-foot-policies{display:flex;flex-wrap:wrap;gap:6px 18px;justify-content:center}
.sw-foot-policies a{color:rgba(255,255,255,.62)}

@media (max-width:1100px){
  .sw-foot-top{grid-template-columns:1fr 1fr 1fr;gap:32px}
  .sw-foot-brand{grid-column:1 / -1}
  .sw-foot-brand p{max-width:520px}
}
@media (max-width:860px){
  .sw-foot-wrap{padding:0 20px}
  .sw-foot-top{grid-template-columns:1fr 1fr;gap:28px}
}
@media (max-width:560px){
  .sw-foot{padding:38px 0 20px}
  .sw-foot-top{grid-template-columns:1fr;gap:26px}
  .sw-foot-bot{flex-direction:column;align-items:flex-start;gap:12px;text-align:left}
  .sw-foot-policies{justify-content:flex-start}
}

@media (hover:hover) and (pointer:fine){
  .sw-foot a:hover{color:#fff}
  .sw-foot-policies a:hover{color:#fff}
}