@font-face{
  font-family: "Mortend";
  src:
    url("../fonts/Mortend-Bold.woff2") format("woff2"),
    url("../fonts/Mortend-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root{
  --bg: #0b0d10;
  --fg: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.60);
  --line: rgba(255,255,255,.10);
  --card: rgba(255,255,255,.06);
  --glass: rgba(15,17,22,.58);
  --blur: 14px;
  --radius: 18px;
  --bg-dim: 0.42;
  --bg-vignette: 0.18;
  --bg-pattern-opacity: 0.09;
  --bg-pattern-size: 18px;

  /* Background effects */
  --wf-bg-blur: 0px;
  --wf-bg-grain: 0.08;
  --wf-bg-wash: 0.06;

  --bg-overlay-rgb: 0 0 0;
  --bg-pattern-rgb: 255 255 255;

  --header-h: 58px;
  --footer-h: 46px;

  --max: 1180px;
  --pad: 18px;
  --pad2: 28px;

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial;
}

html[data-theme="light"]{
  --bg: #f7f7fb;
  --fg: rgba(10,12,16,.92);
  --muted: rgba(10,12,16,.56);
  --line: rgba(10,12,16,.12);
  --card: rgba(10,12,16,.04);
  --glass: rgba(255,255,255,.65);
  --bg-overlay-rgb: 255 255 255;
  --bg-pattern-rgb: 10 12 16;
}

*{ box-sizing:border-box; }
html, body{ height:100%; }

/* Preloader */
body.wf-preloader-lock{overflow:hidden!important;}
.wf-preloader{
  position:fixed; inset:0;
  z-index:2200;
  display:flex; align-items:center; justify-content:center;
  background: rgba(var(--bg-overlay-rgb), .92);
  backdrop-filter: blur(18px);
  transition: opacity .42s ease, transform .42s ease;
}
.wf-preloader::before{
  content:'';
  position:absolute; inset:-2px;
  background:
    radial-gradient(820px 460px at 50% 40%, rgba(255,255,255,.10), rgba(0,0,0,0) 62%),
    radial-gradient(520px 340px at 35% 70%, rgba(255,255,255,.06), rgba(0,0,0,0) 64%),
    radial-gradient(520px 340px at 65% 70%, rgba(255,255,255,.05), rgba(0,0,0,0) 64%);
  opacity:.85;
}
.wf-preloader::after{
  content:'';
  position:absolute; inset:0;
  background-image:
    linear-gradient(to bottom, rgb(var(--bg-pattern-rgb) / 0.05), rgb(var(--bg-pattern-rgb) / 0)),
    radial-gradient(circle at 1px 1px, rgb(var(--bg-pattern-rgb) / 0.18) 1px, transparent 1px);
  background-size: 100% 100%, 18px 18px;
  opacity:.40;
  mix-blend-mode: overlay;
}
.wf-preloader__inner{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 18px;
  padding: 26px 22px;
}
.wf-preloader__mark{
  display:flex;
  align-items:center;
  gap: 12px;
}
.wf-preloader__sparkles{
  color:#66e800;
  display:inline-flex;
  filter: drop-shadow(0 6px 20px rgba(102,232,0,.25));
  animation: wf-pre-spark 1.25s ease-in-out infinite;
}
.wf-preloader__sparkles .wf-sparkles{
  width: 44px;
  height: 22px;
}
.wf-preloader__name{
  font-family: Mortend, var(--font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: clamp(22px, 3.1vw, 34px);
  line-height: 1;
  color: var(--fg);
}
@supports (-webkit-background-clip: text) or (background-clip: text){
  .wf-preloader__name{
    background: linear-gradient(90deg,
      rgb(var(--bg-pattern-rgb) / 0.55),
      rgb(var(--bg-pattern-rgb) / 0.95),
      rgb(var(--bg-pattern-rgb) / 0.55)
    );
    background-size: 240% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: wf-pre-sheen 1.35s linear infinite;
  }
}
.wf-preloader__bar{
  width: min(280px, 70vw);
  height: 3px;
  border-radius: 999px;
  background: rgb(var(--bg-pattern-rgb) / 0.12);
  overflow:hidden;
  border: 1px solid rgb(var(--bg-pattern-rgb) / 0.10);
}
.wf-preloader__bar span{
  display:block;
  height:100%;
  width: 36%;
  border-radius: 999px;
  background: rgb(var(--bg-pattern-rgb) / 0.88);
  box-shadow: 0 0 30px rgb(var(--bg-pattern-rgb) / 0.18);
  animation: wf-pre-bar 1.05s ease-in-out infinite;
}
.wf-preloader--hide{
  opacity:0;
  transform: translateY(-10px) scale(.99);
  pointer-events:none;
}
@keyframes wf-pre-sheen{
  0%{ background-position: 0% 50%; }
  100%{ background-position: 200% 50%; }
}
@keyframes wf-pre-spark{
  0%,100%{ transform: translateY(0) scale(1); opacity:.95; }
  50%{ transform: translateY(-1px) scale(1.04); opacity:1; }
}
@keyframes wf-pre-bar{
  0%{ transform: translateX(-25%); opacity:.65; }
  50%{ transform: translateX(135%); opacity:1; }
  100%{ transform: translateX(255%); opacity:.75; }
}
@media (prefers-reduced-motion: reduce){
  .wf-preloader__name, .wf-preloader__bar span{ animation: none!important; }
  .wf-preloader{ transition:none!important; }
}
body{
  margin:0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-size: cover;
  background-position: center;
}

/* Background overlay + micro-pattern (readability on bright images) */
body{ position: relative; }
body::before, body::after{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
body::before{
  background:
    radial-gradient(1100px 780px at 30% 18%, rgb(var(--bg-overlay-rgb) / 0) 0%, rgb(var(--bg-overlay-rgb) / var(--bg-vignette)) 70%, rgb(var(--bg-overlay-rgb) / var(--bg-vignette)) 100%),
    rgb(var(--bg-overlay-rgb) / var(--bg-dim));
}
body::after{ opacity: 1; }

/* Disable overlay completely */
body.wf-bg-off::before,
body.wf-bg-off::after{ display:none; }

/* Disable all background visuals on a specific page */
body.wf-no-bg{ background-image:none !important; }
body.wf-no-bg::before,
body.wf-no-bg::after{ display:none !important; }
body.wf-no-bg .wf-bg,
body.wf-no-bg .wf-bgfx{ display:none !important; }

/* Pattern types */
body.wf-pattern-none::after{ display:none; }

body.wf-pattern-grid::after{
  background-image:
    linear-gradient(to right, rgb(var(--bg-pattern-rgb) / 0.14) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(var(--bg-pattern-rgb) / 0.14) 1px, transparent 1px);
  background-size: var(--bg-pattern-size) var(--bg-pattern-size);
  opacity: var(--bg-pattern-opacity);
}

body.wf-pattern-dots::after{
  background-image: radial-gradient(circle at 1px 1px, rgb(var(--bg-pattern-rgb) / 0.55) 1px, transparent 0);
  background-size: var(--bg-pattern-size) var(--bg-pattern-size);
  opacity: var(--bg-pattern-opacity);
}

/* Ensure app UI is above overlay */
.wf-shell{ position: relative; z-index: 1; }


/* Theme background layers (single/slideshow/featured) */
.wf-bg{ position: fixed; inset: 0; z-index: -1; pointer-events: none; }
.wf-bg__layer{ position:absolute; inset:0; background-size:cover; background-position:center; opacity:0; transition: opacity var(--wf-bg-fade, 900ms) ease; will-change: opacity, transform, filter; transform: scale(1.02);
  filter: blur(var(--wf-bg-blur)) saturate(0.96) contrast(0.98) brightness(0.98);
}
.wf-bg.is-on .wf-bg__a{ opacity:1; }
.wf-bg.is-on.is-b .wf-bg__a{ opacity:0; }
.wf-bg.is-on.is-b .wf-bg__b{ opacity:1; }
.wf-bg__layer.is-active{ opacity:1; }
.wf-bg.wf-bg--kb .wf-bg__layer.is-active{ animation: wf-kenburns 18s ease-in-out forwards; }
@keyframes wf-kenburns{ from{ transform: scale(1.05) translate3d(0,0,0);} to{ transform: scale(1.16) translate3d(-2%, -2%, 0);} }

/* Background effects overlay (wash + grain) */
.wf-bgfx{ position: fixed; inset:0; z-index:0; pointer-events:none; }
.wf-bgfx::before,
.wf-bgfx::after{ content:""; position:absolute; inset:0; pointer-events:none; }
/* Color wash (very subtle) */
.wf-bgfx::before{
  background:
    radial-gradient(1200px 900px at 20% 20%, rgb(var(--bg-pattern-rgb) / 0.10) 0%, transparent 55%),
    radial-gradient(1000px 800px at 85% 30%, rgb(var(--bg-pattern-rgb) / 0.06) 0%, transparent 60%),
    linear-gradient(120deg, rgb(var(--bg-overlay-rgb) / 0.10), transparent 60%);
  opacity: var(--wf-bg-wash);
  mix-blend-mode: soft-light;
}
/* Film grain */
.wf-bgfx::after{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.38'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 220px 220px;
  opacity: var(--wf-bg-grain);
  mix-blend-mode: overlay;
}

.wf-action-btn{ border: 1px solid var(--line); background: color-mix(in srgb, var(--fg) 4%, transparent); color: var(--fg); border-radius: 999px; padding: 9px 12px; display:flex; align-items:center; gap: 10px; text-decoration:none; }
.wf-action-btn__text{ font-size: 13px; color: var(--muted); }
.wf-action-btn__icon{ font-size: 14px; opacity:.9; }
.wf-action-btn:hover{ background: color-mix(in srgb, var(--fg) 6%, transparent); border-color: color-mix(in srgb, var(--line) 60%, rgba(255,255,255,.18)); }



a{ color: inherit; text-decoration: none; }
a:hover{ opacity:.92; }

/* Page transitions */
[data-wf-page]{
  opacity: 1;
  transform: translateX(0);
  transition: none;
  will-change: auto;
}
html.wf-enter [data-wf-page]{
  /* Keep content visible to avoid blank pages on Back/Forward restores */
  opacity: 1;
  transform: translateX(14px);
}
html.wf-enter.wf-enter--done [data-wf-page]{
  opacity: 1;
  transform: translateX(0);
}
html.wf-leave [data-wf-page]{
  /* Keep content visible to avoid blank pages on Back/Forward restores */
  opacity: 1;
  transform: translateX(-14px);
}

/* reverse direction when going to previous page */
html.wf-dir-prev.wf-enter [data-wf-page]{
  transform: translateX(-14px);
}
html.wf-dir-prev.wf-leave [data-wf-page]{
  transform: translateX(14px);
}

.wf-bar{

  position: fixed;
  left:0; right:0;
  z-index: 50;
  background: var(--glass);
  backdrop-filter: blur(var(--blur));
  border-bottom: 1px solid var(--line);
}
.wf-header{ top:0; height: var(--header-h); }
.wf-footer{
  bottom:0; height: var(--footer-h);
  border-bottom:none;
  border-top: 1px solid var(--line);
}

/* Header is always visible; add a subtle "moving" state */
.wf-header{
  transition: background .25s ease, border-color .25s ease;
}
.wf-header.wf-header--moving{
  background: color-mix(in srgb, var(--glass) 78%, rgba(255,255,255,.08));
  border-bottom-color: color-mix(in srgb, var(--line) 60%, rgba(255,255,255,.18));
}

.wf-bar__inner{
  height:100%;
  max-width: calc(var(--max) + 2*var(--pad2));
  margin:0 auto;
  padding: 0 var(--pad2);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}

.wf-brandline{ display:flex; align-items:center; gap: 12px; min-width: 0; }
.wf-brand{ display:flex; align-items:center; gap:10px; }

.wf-phone{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--fg) 4%, transparent);
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  max-width: 44vw;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wf-phone:hover{
  background: color-mix(in srgb, var(--fg) 6%, transparent);
  border-color: color-mix(in srgb, var(--line) 60%, rgba(255,255,255,.18));
}

/* Custom logo support (including SVG) */
.wf-logo{ display:inline-flex; align-items:center; }
.wf-logo--img .wf-logo__img{
  display:block;
  height: clamp(18px, 2.2vw, 26px);
  width: auto;
}
.wf-logo--svg svg{
  display:block;
  height: clamp(18px, 2.2vw, 26px);
  width: auto;
}
.wf-sr{
  position:absolute!important;
  width:1px!important;
  height:1px!important;
  padding:0!important;
  margin:-1px!important;
  overflow:hidden!important;
  clip:rect(0,0,0,0)!important;
  white-space:nowrap!important;
  border:0!important;
}
.wf-brand__sparkles{
  display:inline-flex;
  align-items:center;
  color: #66e800;
}
.wf-brand__sparkles .wf-sparkles{
  display:block;
  width: clamp(40px, 3.2vw, 46px);
  height: clamp(16px, 1.8vw, 18px);
}
.wf-brand__text{
  font-family: "Mortend", var(--font);
  font-weight: 700;
  letter-spacing: .06em;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1;
}

.wf-nav__list{
  list-style:none;
  margin:0; padding:0;
  display:flex;
  gap: 14px;
  align-items:center;
}
.wf-nav__list a{
  font-size: 13px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.wf-nav__list a:hover{
  color: var(--fg);
  border-color: var(--line);
  background: color-mix(in srgb, var(--fg) 6%, transparent);
}

.wf-actions{ display:flex; align-items:center; gap: 10px; }

.wf-pill{
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--fg) 4%, transparent);
  color: var(--fg);
  border-radius: 999px;
  padding: 9px 12px;
  display:flex;
  align-items:center;
  gap: 10px;
  cursor:pointer;
}
.wf-pill__text{ font-size: 13px; color: var(--muted); }
.wf-pill__icon{ font-size: 14px; opacity:.9; }

.wf-accent{ position: relative; }
.wf-accent__dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--fg);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--fg) 12%, transparent);
}
.wf-accent__panel{
  position:absolute;
  right:0;
  top: calc(100% + 10px);
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--glass);
  backdrop-filter: blur(var(--blur));
  display:none;
  grid-template-columns: repeat(3, 24px);
  gap: 10px;
  min-width: 160px;
  box-shadow: 0 18px 70px rgba(0,0,0,.25);
}
.wf-accent__panel.is-open{ display:grid; }
.wf-accent__sw{
  width: 24px; height: 24px;
  border-radius: 999px;
  border: 1px solid var(--line);
  cursor:pointer;
}
.wf-accent__sw[data-wf-accent-set="#7c3aed"]{ background:#7c3aed; }
.wf-accent__sw[data-wf-accent-set="#06b6d4"]{ background:#06b6d4; }
.wf-accent__sw[data-wf-accent-set="#22c55e"]{ background:#22c55e; }
.wf-accent__sw[data-wf-accent-set="#f97316"]{ background:#f97316; }
.wf-accent__sw[data-wf-accent-set="#ef4444"]{ background:#ef4444; }
.wf-accent__sw[data-wf-accent-set="#eab308"]{ background:#eab308; }
.wf-accent__custom{
  grid-column: 1 / -1;
  display:flex;
  align-items:center;
  gap: 10px;
  padding-top: 6px;
  border-top: 1px solid var(--line);
}
.wf-accent__input{ width: 34px; height: 24px; padding:0; border: 1px solid var(--line); background: transparent; border-radius: 8px; }
.wf-accent__label{ font-size: 12px; color: var(--muted); }

.wf-bgctl{ position: relative; }
.wf-bgctl__panel{
  position:absolute;
  right:0;
  top: calc(100% + 10px);
  width: 300px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--glass);
  backdrop-filter: blur(var(--blur));
  box-shadow: 0 18px 70px rgba(0,0,0,.25);
  display:none;
}
.wf-bgctl__panel.is-open{ display:block; }

.wf-bgctl__row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 2px;
}
.wf-bgctl__label{ font-size: 12px; color: var(--muted); white-space: nowrap; }
.wf-bgctl__val{ font-size: 12px; color: color-mix(in srgb, var(--fg) 70%, transparent); width: 42px; text-align:right; }

.wf-range{
  flex: 1;
  height: 18px;
  accent-color: var(--fg);
}

.wf-toggle{
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--fg) 4%, transparent);
  color: var(--fg);
  border-radius: 999px;
  padding: 6px 10px;
  cursor:pointer;
  font-size: 12px;
}
.wf-toggle.is-off{
  color: var(--muted);
  background: transparent;
}

.wf-bgctl__seg{
  display:flex;
  gap: 6px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--fg) 3%, transparent);
}
.wf-seg{
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 6px 10px;
  cursor:pointer;
  font-size: 12px;
}
.wf-seg.is-active{
  color: var(--fg);
  border-color: var(--line);
  background: color-mix(in srgb, var(--fg) 6%, transparent);
}

.wf-bgctl__note{
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}


.wf-search-btn{
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--fg) 4%, transparent);
  color: var(--fg);
  border-radius: 999px;
  padding: 9px 12px;
  display:flex;
  align-items:center;
  gap: 10px;
  cursor:pointer;
}
.wf-search-btn__text{ font-size: 13px; color: var(--muted); }
.wf-search-btn__icon{ font-size: 14px; opacity:.9; }
.wf-search-btn__kbd{
  font-size: 11px;
  color: color-mix(in srgb, var(--fg) 58%, transparent);
  border: 1px solid var(--line);
  padding: 3px 7px;
  border-radius: 999px;
}


/* Icon svg helper */
.wf-ico{ display:block; width: 18px; height: 18px; }

.wf-cart-btn{
  position: relative;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--fg) 4%, transparent);
  color: var(--fg);
  border-radius: 999px;
  padding: 9px 12px;
  display:flex;
  align-items:center;
  gap: 10px;
  cursor:pointer;
  text-decoration: none;
}
.wf-cart-btn__text{ font-size: 13px; color: var(--muted); }
.wf-cart-btn__icon{ opacity:.92; line-height: 1; display:flex; align-items:center; }
.wf-cart-btn__count{
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 11px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--fg) 18%, transparent);
  color: var(--fg);
}

.wf-search__scdesc{
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

.wf-sc-search{
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--fg) 3%, transparent);
  border-radius: 18px;
  padding: 14px;
}
.wf-sc-search__title{ font-size: 14px; color: var(--fg); margin-bottom: 6px; }
.wf-sc-search__desc{ font-size: 12px; color: var(--muted); margin-bottom: 10px; line-height: 1.4; }

.wf-sc-cart{ display:inline-block; }
/* Mobile menu button (shown on small screens) */
.wf-menu-btn{
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--fg) 4%, transparent);
  color: var(--fg);
  border-radius: 999px;
  padding: 9px 12px;
  display:flex;
  align-items:center;
  gap: 10px;
  cursor:pointer;
}
.wf-menu-btn__text{ font-size: 13px; color: var(--muted); }
.wf-menu-btn__icon{ font-size: 16px; opacity:.9; line-height: 1; }

/* Off-canvas mobile menu */
.wf-menu{
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}
.wf-menu[aria-hidden="false"]{ opacity: 1; pointer-events: auto; }
.wf-menu__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.34);
}
.wf-menu__panel{
  position:absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(380px, 92vw);
  background: var(--glass);
  backdrop-filter: blur(var(--blur));
  border-left: 1px solid var(--line);
  padding: 14px;
  transform: translateX(12px);
  transition: transform 220ms cubic-bezier(.2,.9,.2,1);
  display:flex;
  flex-direction: column;
  gap: 12px;
}
.wf-menu[aria-hidden="false"] .wf-menu__panel{ transform: translateX(0); }
.wf-menu__top{ display:flex; align-items:center; justify-content: space-between; gap: 10px; }
.wf-menu__title{ font-weight: 600; letter-spacing: -0.01em; }
.wf-menu__close{
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--fg) 4%, transparent);
  color: var(--fg);
  border-radius: 12px;
  padding: 8px 10px;
  cursor:pointer;
}
.wf-menu__actions{ display:flex; gap: 10px; flex-wrap: wrap; }
.wf-menu__search,
.wf-menu__cart,
.wf-menu__center{
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--fg) 3%, transparent);
  color: var(--fg);
  border-radius: 999px;
  padding: 10px 12px;
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-size: 13px;
  cursor:pointer;
  text-decoration: none;
}
.wf-menu__search span:first-child{ opacity: .9; }
.wf-menu__cart span:first-child{ opacity: .9; }
.wf-menu__nav{ overflow:auto; scrollbar-width:none; }
.wf-menu__nav::-webkit-scrollbar{ width:0; height:0; }
.wf-menu__list{ list-style:none; margin:0; padding: 4px 0 10px; display:flex; flex-direction: column; gap: 6px; }
.wf-menu__list a{
  display:flex;
  align-items:center;
  padding: 12px 12px;
  border-radius: 14px;
  color: var(--fg);
  text-decoration:none;
  border: 1px solid transparent;
  background: color-mix(in srgb, var(--fg) 2%, transparent);
}
.wf-menu__list a:hover{ border-color: var(--line); background: color-mix(in srgb, var(--fg) 6%, transparent); }

/* Mobile swipe hint bar */
.wf-swipebar{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--footer-h);
  z-index: 80;
  display:none;
  align-items:center;
  justify-content: space-between;
  padding: 0 calc(var(--pad) + 2px);
  padding-bottom: env(safe-area-inset-bottom);
  background: color-mix(in srgb, var(--glass) 92%, transparent);
  backdrop-filter: blur(var(--blur));
  border-top: 1px solid var(--line);
}
.wf-swipebar.is-on{ display:flex; }
.wf-swipebar__btn{
  width: 44px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--fg) 3%, transparent);
  color: var(--fg);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.wf-swipebar__btn[disabled]{ opacity: .35; cursor: default; }
.wf-swipebar__hint{ text-align:center; line-height: 1.05; }
.wf-swipebar__label{ font-size: 12px; color: var(--fg); opacity: .92; }
.wf-swipebar__sub{ font-size: 11px; color: var(--muted); margin-top: 3px; }
.wf-swipebar__label::after{
  content:"";
  display:inline-block;
  width: 22px;
  height: 6px;
  margin-left: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--fg) 30%, transparent), transparent);
  animation: wf-swipe 1.35s ease-in-out infinite;
  vertical-align: middle;
}
@keyframes wf-swipe{
  0%{ transform: translateX(-6px); opacity: .25; }
  50%{ transform: translateX(6px); opacity: .65; }
  100%{ transform: translateX(-6px); opacity: .25; }
}

.wf-shell{
  padding-top: var(--header-h);
  padding-bottom: calc(var(--footer-h) + env(safe-area-inset-bottom));
  min-height: 100%;
}

.wf-main{ min-height: calc(100vh - var(--header-h) - var(--footer-h) - env(safe-area-inset-bottom)); }
.wf-content{
/*  max-width: var(--max); */
  margin: 0 auto;
  /* tighter by default: content sits closer to the header */
  padding: 22px var(--pad2);
}

/* Per-page layout overrides */
body.wf-layout-full .wf-content{
  max-width: none;
  width: 100%;
  padding-left: var(--pad);
  padding-right: var(--pad);
  padding-top: 18px;
  padding-bottom: 18px;
}
body.wf-layout-full-tight .wf-content{
  max-width: none;
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.wf-h1{
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.wf-muted{ color: var(--muted); }

.wf-card{
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px;
  margin: 0 0 14px;
}
.wf-card__title{ margin: 0 0 8px; font-size: 18px; letter-spacing: -0.01em; }
.wf-card__meta{ font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.wf-card__excerpt{ color: color-mix(in srgb, var(--fg) 86%, transparent); }

/* Blog / Posts page */
.wf-blog-hero{
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--fg) 4%, transparent);
  border-radius: calc(var(--radius) + 6px);
  padding: 16px;
  margin: 2px 0 16px;
  backdrop-filter: blur(var(--blur));
}
.wf-blog-hero__row{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 14px;
}
.wf-blog-hero__title{
  margin: 0;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.wf-blog-hero__desc{ margin-top: 6px; max-width: 60ch; }
.wf-blog-hero__chips{
  display:flex;
  gap: 8px;
  margin-top: 12px;
  overflow:auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}
.wf-blog-hero__chips::-webkit-scrollbar{ width: 0; height: 0; }

.wf-blog-search{
  display:flex;
  gap: 10px;
  align-items:center;
  min-width: min(420px, 100%);
}
.wf-blog-search__input{
  flex: 1;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--fg) 4%, transparent);
  color: var(--fg);
  padding: 0 12px;
  outline: none;
}
.wf-blog-search__input:focus{ border-color: color-mix(in srgb, var(--fg) 25%, var(--line)); }
.wf-blog-search__btn{
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--fg) 6%, transparent);
  color: var(--fg);
  padding: 0 14px;
  cursor: pointer;
  white-space: nowrap;
}
.wf-blog-search__btn:hover{ background: color-mix(in srgb, var(--fg) 9%, transparent); }

.wf-post-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.wf-post-card{
  grid-column: span 4;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: calc(var(--radius) + 6px);
  overflow:hidden;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}
.wf-post-card:hover{
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--fg) 20%, var(--line));
  background: color-mix(in srgb, var(--fg) 7%, transparent);
}
.wf-post-card.is-featured{ grid-column: span 8; }

.wf-post-card__media{
  display:block;
  position: relative;
  aspect-ratio: 16 / 10;
  background: color-mix(in srgb, var(--fg) 3%, transparent);
}
.wf-post-card.is-featured .wf-post-card__media{ aspect-ratio: 21 / 9; }
.wf-post-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}
.wf-post-card__placeholder{
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 10%, color-mix(in srgb, var(--fg) 9%, transparent), transparent 35%),
    radial-gradient(circle at 80% 40%, color-mix(in srgb, var(--fg) 6%, transparent), transparent 45%),
    linear-gradient(180deg, color-mix(in srgb, var(--fg) 4%, transparent), transparent);
}

.wf-post-card__body{ padding: 14px 14px 16px; }
.wf-post-card__meta{
  display:flex;
  gap: 10px;
  align-items:center;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 8px;
}
.wf-post-card__title{
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.wf-post-card.is-featured .wf-post-card__title{ font-size: 22px; }
.wf-post-card__excerpt{
  margin: 0;
  color: color-mix(in srgb, var(--fg) 86%, transparent);
  line-height: 1.6;
}

.wf-badge{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--fg) 5%, transparent);
  color: var(--fg);
  text-decoration: none;
}
.wf-badge:hover{ background: color-mix(in srgb, var(--fg) 8%, transparent); }

.wf-blog-pagination .page-numbers{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--fg) 4%, transparent);
  color: var(--muted);
  text-decoration: none;
  margin-right: 8px;
}
.wf-blog-pagination .page-numbers:hover{ color: var(--fg); background: color-mix(in srgb, var(--fg) 7%, transparent); }
.wf-blog-pagination .page-numbers.current{
  color: var(--fg);
  border-color: color-mix(in srgb, var(--fg) 25%, var(--line));
  background: color-mix(in srgb, var(--fg) 10%, transparent);
}

@media (max-width: 1000px){
  .wf-post-card{ grid-column: span 6; }
  .wf-post-card.is-featured{ grid-column: span 12; }
  .wf-blog-hero__row{ flex-direction: column; align-items: stretch; }
  .wf-blog-search{ min-width: 0; }
}

@media (max-width: 640px){
  .wf-post-card{ grid-column: span 12; }
  .wf-blog-search__btn{ padding: 0 12px; }
}

/* Simple 4-up posts feed (blog index only) */
.wf-blog-feed .wf-content{ padding-top: 16px; }

.wf-feed-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 6px;
}

.wf-feed-card{
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}
.wf-feed-card:hover{
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--fg) 20%, var(--line));
  background: color-mix(in srgb, var(--fg) 7%, transparent);
}

.wf-feed-card__media{
  display:block;
  position: relative;
  aspect-ratio: 16 / 10;
  background: color-mix(in srgb, var(--fg) 3%, transparent);
}
.wf-feed-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}
.wf-feed-card__placeholder{
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 10%, color-mix(in srgb, var(--fg) 9%, transparent), transparent 35%),
    radial-gradient(circle at 80% 40%, color-mix(in srgb, var(--fg) 6%, transparent), transparent 45%),
    linear-gradient(180deg, color-mix(in srgb, var(--fg) 4%, transparent), transparent);
}

.wf-feed-card__body{ padding: 12px 14px 14px; }
.wf-feed-card__title{
  margin: 0 0 8px;
  font-size: 17px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.wf-feed-card__excerpt{
  margin: 0;
  color: color-mix(in srgb, var(--fg) 82%, transparent);
  line-height: 1.55;
  font-size: 14px;
}

@media (max-width: 1000px){
  .wf-feed-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px){
  .wf-feed-grid{ grid-template-columns: 1fr; }
}

.wf-prose{
  color: color-mix(in srgb, var(--fg) 88%, transparent);
  font-size: 16px;
  line-height: 1.7;
}
.wf-prose p{ margin: 0 0 14px; }
.wf-prose h2, .wf-prose h3{ letter-spacing: -0.01em; }
.wf-prose img{ max-width: 100%; height: auto; border-radius: 14px; border: 1px solid var(--line); }


/* Article / page readability */
body.single .wf-article{
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(18px, 2.4vw, 34px);
  border: 1px solid color-mix(in srgb, var(--line) 88%, transparent);
  border-radius: calc(var(--radius) + 8px);
  background: color-mix(in srgb, var(--glass) 72%, transparent);
  backdrop-filter: blur(calc(var(--blur) * .55));
  box-shadow: 0 16px 48px rgba(0,0,0,.05);
}

body.single .wf-article .wf-prose{
  max-width: 78ch;
  margin: 0 auto;
  font-size: clamp(16px, 1.08vw, 18px);
  line-height: 1.82;
}

body.single .wf-article .wf-prose > *:first-child{ margin-top: 0; }
body.single .wf-article .wf-prose > *:last-child{ margin-bottom: 0; }
body.single .wf-article .wf-prose p{ margin: 0 0 18px; }
body.single .wf-article .wf-prose h1,
body.single .wf-article .wf-prose h2,
body.single .wf-article .wf-prose h3,
body.single .wf-article .wf-prose h4{
  color: var(--fg);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 1.6em 0 .65em;
}
body.single .wf-article .wf-prose h1{ font-size: clamp(32px, 3.2vw, 48px); }
body.single .wf-article .wf-prose h2{ font-size: clamp(26px, 2.4vw, 36px); }
body.single .wf-article .wf-prose h3{ font-size: clamp(21px, 1.8vw, 28px); }
body.single .wf-article .wf-prose ul,
body.single .wf-article .wf-prose ol{
  margin: 0 0 20px;
  padding-left: 1.35em;
}
body.single .wf-article .wf-prose li{ margin: 0 0 10px; }
body.single .wf-article .wf-prose strong{ color: var(--fg); }
body.single .wf-article .wf-prose a{
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
body.single .wf-article .wf-prose blockquote{
  margin: 24px 0;
  padding: 14px 18px;
  border-left: 3px solid color-mix(in srgb, var(--fg) 20%, var(--line));
  background: color-mix(in srgb, var(--fg) 4%, transparent);
  border-radius: 0 16px 16px 0;
}
body.single .wf-article .wf-prose img{
  margin: 26px auto;
  display: block;
}

@media (max-width: 760px){
  .wf-content{
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
  body.single .wf-article{
    padding: 18px 16px;
    border-radius: 20px;
  }
  body.single .wf-article .wf-prose{
    max-width: none;
    line-height: 1.74;
  }
  body.single .wf-article .wf-prose h1{ font-size: clamp(28px, 7vw, 36px); }
  body.single .wf-article .wf-prose h2{ font-size: clamp(24px, 6vw, 30px); }
  body.single .wf-article .wf-prose h3{ font-size: clamp(20px, 5.2vw, 24px); }
}

.wf-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.wf-grid .wf-card{ grid-column: span 6; }

.wf-pagination{ margin-top: 18px; }
.wf-empty{
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 16px;
  color: var(--muted);
  background: color-mix(in srgb, var(--fg) 2%, transparent);
}

.wf-footer__inner{ justify-content: space-between; }
.wf-footnote{ font-size: 12px; color: var(--muted); }
.wf-footer__legal{
  flex: 1 1 auto;
  text-align: center;
  padding: 0 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wf-link{ color: var(--muted); }
.wf-link:hover{ color: var(--fg); }

/* Chips */
.wf-chip{
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--fg) 4%, transparent);
  color: var(--muted);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  cursor: pointer;
}
.wf-chip:hover{ color: var(--fg); }
.wf-chip.is-active{
  color: var(--fg);
  border-color: color-mix(in srgb, var(--fg) 55%, var(--line));
  background: color-mix(in srgb, var(--fg) 10%, transparent);
}

/* Horizontal template */
.wf-horizontal .wf-content{ max-width: none; padding: 0; }

.wf-stage{
  height: calc(100vh - var(--header-h) - var(--footer-h) - env(safe-area-inset-bottom));
  overflow-x: auto;
  overflow-y: hidden;
  display:flex;
  scroll-snap-type: x mandatory;
  scroll-behavior: auto;
  scrollbar-width: none;
}
.wf-stage::-webkit-scrollbar{ width:0; height:0; }

.wf-slide{
  flex: 0 0 100vw;
  height: 100%;
  scroll-snap-align: start;
  padding: 22px var(--pad2);
  display:flex;
  align-items:flex-start;
  justify-content:center;
}
.wf-slide__inner{ width: min(var(--max), 100%); }

.wf-hero{
  margin: 0 0 22px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--fg) 3%, transparent);
}
.wf-hero__title{
  margin:0 0 8px;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
}
.wf-hero__sub{ margin:0; color: var(--muted); }

/* Progress indicator */
.wf-progress{
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(var(--footer-h) + 14px);
  z-index: 80;
  display:none;
  gap: 10px;
  align-items:center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(var(--blur));
}
.wf-progress.is-on{ display:flex; }
.wf-progress__track{
  width: 140px;
  height: 6px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--fg) 10%, transparent);
  overflow:hidden;
  position: relative;
}
.wf-progress__track::after{
  content:"";
  position:absolute;
  inset:0;
  width: var(--p, 0%);
  background: color-mix(in srgb, var(--fg) 70%, transparent);
  border-radius: 999px;
  transition: width .18s ease;
}
.wf-progress__dots{ display:flex; gap: 6px; }
.wf-progress__dot{
  width: 6px; height: 6px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--fg) 30%, transparent);
}
.wf-progress__dot.is-active{ background: var(--fg); }

/* Search overlay */
.wf-search[aria-hidden="true"]{ display:none; }
.wf-search{ position: fixed; inset: 0; z-index: 999; }
.wf-search__backdrop{ position:absolute; inset:0; background: rgba(0,0,0,.55); backdrop-filter: blur(10px); }

.wf-search__panel{
  position: relative;
  max-width: 920px;
  margin: 10vh auto 0;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  backdrop-filter: blur(var(--blur));
  padding: 14px;
  box-shadow: 0 18px 70px rgba(0,0,0,.35);
}
.wf-search__form{ display:flex; gap: 10px; align-items:center; }
.wf-search__form--custom{ align-items: stretch; }
.wf-search__custom{ flex: 1; min-width: 0; }

.wf-search__input{
  flex:1;
  height: 52px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--fg) 4%, transparent);
  color: var(--fg);
  padding: 0 14px;
  font-size: 15px;
  outline: none;
}
.wf-search__input:focus{ border-color: color-mix(in srgb, var(--fg) 45%, var(--line)); }
.wf-search__submit, .wf-search__close{
  height: 52px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--fg) 4%, transparent);
  color: var(--fg);
  padding: 0 14px;
  cursor: pointer;
}

.wf-search__row{
  margin: 10px 2px 0;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
}
.wf-search__chips{ display:flex; gap: 8px; flex-wrap: wrap; }
.wf-search__centerlink{ font-size: 12px; color: var(--muted); }
.wf-search__centerlink:hover{ color: var(--fg); }

.wf-search__hint{ margin: 10px 2px 8px; color: var(--muted); font-size: 12px; }
.wf-search__results{ padding: 6px 2px 2px; display:flex; flex-direction:column; gap: 8px; }
.wf-search__item{ border: 1px solid var(--line); background: color-mix(in srgb, var(--fg) 3%, transparent); border-radius: 16px; padding: 12px 14px; }
.wf-search__item a{ display:block; }
.wf-search__item-title{ font-weight: 650; margin:0 0 3px; letter-spacing: -0.01em; }
.wf-search__item-meta{ color: var(--muted); font-size: 12px; }

/* Search Center */
.wf-searchcenter__top{ margin-bottom: 12px; }
.wf-searchcenter__bar{
  display:flex;
  gap: 10px;
  align-items:center;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--fg) 3%, transparent);
  border-radius: 20px;
  padding: 10px;
}
.wf-searchcenter__input{
  flex:1;
  height: 48px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--fg);
  padding: 0 12px;
  font-size: 15px;
  outline:none;
}
.wf-searchcenter__input:focus{ border-color: color-mix(in srgb, var(--fg) 45%, transparent); }
.wf-searchcenter__btn{
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--fg) 16%, transparent);
  color: var(--fg);
  padding: 0 14px;
  cursor:pointer;
}
.wf-searchcenter__filters{ display:flex; gap: 8px; flex-wrap: wrap; margin: 12px 0 18px; }

.wf-searchcenter__grid{
  display:grid;
  grid-template-columns: 1.5fr .85fr;
  gap: 14px;
}
.wf-panel{
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius);
  overflow:hidden;
}
.wf-panel__head{
  display:flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--fg) 3%, transparent);
}
.wf-panel__title{ font-size: 13px; font-weight: 700; letter-spacing: .18px; text-transform: uppercase; }
.wf-panel__meta{ font-size: 12px; color: var(--muted); }
.wf-panel__body{ padding: 14px; }

.wf-suggest__block{ margin-bottom: 14px; }
.wf-suggest__h{ font-size: 12px; color: var(--muted); margin: 0 0 8px; }
.wf-suggest__list{ display:flex; flex-wrap: wrap; gap: 8px; }
.wf-suggest__pill{
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--fg) 3%, transparent);
  color: var(--muted);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  cursor:pointer;
}
.wf-suggest__pill:hover{ color: var(--fg); border-color: color-mix(in srgb, var(--fg) 35%, var(--line)); }

@media (max-width: 900px){
  :root{ --footer-h: 64px; }

  /* Header: keep it clean — search + burger, menu list moves to off-canvas */
  .wf-nav{ display:none; }
  .wf-action-btn{ display:none; } /* Search-center button goes inside mobile menu */
  .wf-search-btn{ padding: 9px 11px; gap: 0; }
  .wf-search-btn__text, .wf-search-btn__kbd{ display:none; }
  .wf-search-btn__icon{ font-size: 16px; }

.wf-cart-btn{ padding: 9px 11px; gap: 0; }
.wf-cart-btn__text{ display:none; }
.wf-cart-btn__icon{ font-size: 16px; }
  .wf-menu-btn{ padding: 9px 11px; gap: 0; }
  .wf-menu-btn__text{ display:none; }

  /* Keep phone visible but compact on mobile */
  .wf-brandline{ gap: 10px; }
  .wf-phone{
    padding: 0;
    border: none;
    background: transparent;
    font-size: 12px;
    max-width: 52vw;
  }

  /* Footer on mobile (requested) */
  .wf-footer{ display:block; }
  /* Disable swipebar on mobile */
  .wf-swipebar{ display:none !important; }

  .wf-grid .wf-card{ grid-column: span 12; }
  .wf-bar__inner{ padding: 0 var(--pad); }
  .wf-content{ padding: 18px var(--pad); }
  .wf-searchcenter__grid{ grid-template-columns: 1fr; }
  .wf-progress{ width: calc(100% - 24px); justify-content: space-between; }
  .wf-progress__track{ flex: 1; width: auto; }

  /* Search overlay on mobile: make it fit nicely */
  .wf-search__panel{ width: calc(100% - 24px); max-width: none; margin: 10vh 12px 0; }
  .wf-search__form{ flex-wrap: wrap; gap: 10px; }
  .wf-search__input{ flex: 1 1 100%; }
  .wf-search__submit{ flex: 1 1 auto; }
  .wf-search__close{ flex: 0 0 auto; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .wf-stage{ scroll-behavior: auto; }
  [data-wf-page]{ transition: none; }
  .wf-header{ transition: none; }
}

/* WideFlow Lite: kill heavy preloader motion (preloader is off by default, but may be enabled in Customizer) */
.wf-preloader,
.wf-preloader__name,
.wf-preloader__bar span,
.wf-preloader__sparkles{
  animation: none !important;
  transition: none !important;
}


/* === 2026-02 hotfix v2: unboxed fluid layout + footer in normal flow === */
:root{
  --max: 100%;
  --pad: 0%;
  --pad2: 0%;
}

html, body{
  width:100%;
  max-width:100%;
  margin:0;
  overflow-x:hidden;
}

/* Header stays visible but no overlay gap hacks */
.wf-bar.wf-header,
.wf-header{
  position: sticky !important;
  top: 0 !important;
  left: auto !important;
  right: auto !important;
  width: 100% !important;
}

/* Footer must be in page flow (not fixed on scroll) */
.wf-bar.wf-footer,
.wf-footer{
  position: static !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
}

/* Remove theme-added outer spacing around content wrappers */
.wf-shell{
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
}

.wf-main{
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.wf-content,
body.wf-layout-full .wf-content,
body.wf-layout-full-tight .wf-content,
.wf-blog-feed .wf-content,
.wf-horizontal .wf-content{
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Fluid bars/containers in percentages */
.wf-bar__inner{
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding-left: 1.5% !important;
  padding-right: 1.5% !important;
}

/* Horizontal template: no footer height reservation, no boxed slide width */
.wf-stage{
  height: auto !important;
  min-height: calc(100vh - var(--header-h)) !important;
}
.wf-slide{
  padding: 0 1.5% !important;
}
.wf-slide__inner{
  width: 100% !important;
  max-width: 100% !important;
}
.wf-progress{
  bottom: 1% !important;
}

/* Mobile/tablet padding also in % */
@media (max-width: 900px){
  .wf-bar__inner{ padding-left: 2.5% !important; padding-right: 2.5% !important; }
  .wf-slide{ padding-left: 2.5% !important; padding-right: 2.5% !important; }
  .wf-content,
  body.wf-layout-full .wf-content,
  body.wf-layout-full-tight .wf-content{ padding: 0 !important; }
}


/* ===== Custom header/footer refresh ===== */
.wf-header{
  background: color-mix(in srgb, var(--glass) 88%, rgba(255,255,255,.08));
}
.wf-header__inner{
  gap: 18px;
}
.wf-header-contactline{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
  flex-wrap: wrap;
}
.wf-contact-chip{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--line) 88%, rgba(255,255,255,.08));
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  white-space: nowrap;
  max-width: 280px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wf-contact-chip:hover{
  border-color: color-mix(in srgb, var(--fg) 24%, var(--line));
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
}
.wf-contact-chip__icon{
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size: 12px;
  background: color-mix(in srgb, var(--fg) 9%, transparent);
}
.wf-contact-chip__text{
  overflow:hidden;
  text-overflow:ellipsis;
  font-size: 14px;
  color: var(--fg);
}
.wf-socials{
  display:flex;
  align-items:center;
  gap: 8px;
}
.wf-socials--header{
  margin-right: 2px;
}
.wf-socials__item{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border: 1px solid color-mix(in srgb, var(--line) 88%, rgba(255,255,255,.1));
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  overflow: hidden;
  flex: 0 0 38px;
}
.wf-socials__item:hover{
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--fg) 24%, var(--line));
}
.wf-socials__img,
.wf-socials__svg,
.wf-socials__svg svg{
  display:block;
}
.wf-socials__img{
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  object-fit: contain;
}
.wf-socials__svg{
  width: 18px;
  height: 18px;
  color: var(--fg);
}
.wf-socials__svg svg{
  width: 18px;
  height: 18px;
}
.wf-footer--premium{
  position: static !important;
  width: 100% !important;
  height: auto !important;
  background: radial-gradient(circle at top left, rgba(255,255,255,.07), transparent 34%), linear-gradient(180deg, rgba(10,10,14,.96), rgba(8,8,12,.98));
  border-top: 1px solid color-mix(in srgb, var(--line) 80%, rgba(255,255,255,.08));
  color: #f2f2f4;
}
.wf-footer__wrap{
  max-width: calc(var(--max) + 2*var(--pad2));
  margin: 0 auto;
  padding: 34px var(--pad2) 18px;
}
.wf-footer__top{
  display:grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(0, 1.9fr);
  gap: 28px;
  align-items: start;
}
.wf-footer__lead{
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.09);
}
.wf-footer__eyebrow{
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.52);
  margin-bottom: 10px;
}
.wf-footer__title{
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: .95;
  letter-spacing: -.04em;
  color: #fff;
}
.wf-footer__about{
  max-width: 34ch;
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.wf-footer__cta{
  display:inline-flex;
  align-items:center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-weight: 600;
}
.wf-footer__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.wf-footer__col{
  min-height: 100%;
  padding: 20px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
}
.wf-footer__head{
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.wf-footer__links{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 10px;
}
.wf-footer__links a,
.wf-footer__contactrow a,
.wf-footer__contactrow span{
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.45;
}
.wf-footer__links a:hover,
.wf-footer__contactrow a:hover{
  color:#fff;
}
.wf-footer__contactlist{
  display:grid;
  gap: 12px;
  margin-bottom: 16px;
}
.wf-footer__contactrow{
  display:grid;
  gap: 4px;
}
.wf-footer__label{
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
}
.wf-socials--footer{
  flex-wrap: wrap;
}
.wf-footer__bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.wf-footer .wf-footnote,
.wf-footer__legal{
  color: rgba(255,255,255,.5);
}
@media (max-width: 1180px){
  .wf-footer__top{ grid-template-columns: 1fr; }
}
@media (max-width: 860px){
  .wf-header-contactline{
    gap: 8px;
  }
  .wf-contact-chip{
    min-height: 34px;
    padding: 0 12px;
    max-width: 220px;
  }
  .wf-socials--header{
    display:none;
  }
  .wf-footer__grid{
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px){
  .wf-bar__inner{
    gap: 10px;
  }
  .wf-brandline{
    flex-wrap: wrap;
    gap: 8px;
  }
  .wf-header-contactline{
    width: 100%;
    display:flex;
    flex-wrap: wrap;
  }
  .wf-contact-chip{
    max-width: calc(100vw - 38px);
    width: auto;
    background: color-mix(in srgb, var(--fg) 5%, transparent);
  }
  .wf-contact-chip--email{
    max-width: 100%;
  }
  .wf-contact-chip__text{
    font-size: 13px;
  }
  .wf-footer__wrap{
    padding: 24px var(--pad) 16px;
  }
  .wf-footer__lead,
  .wf-footer__col{
    padding: 18px;
    border-radius: 20px;
  }
  .wf-footer__bottom{
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ===== v6 clean header/footer fix ===== */
.wf-header{
  background: rgba(243,243,248,.9);
  backdrop-filter: blur(16px);
}
.wf-header__inner{
  min-height: 76px;
}
.wf-header .wf-brandline{
  gap: 16px;
}
.wf-header-contactline{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(17,17,17,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
}
.wf-contact-chip{
  min-height: 40px;
  padding: 0 14px 0 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
  max-width: 260px;
}
.wf-contact-chip:hover{
  background: rgba(17,17,17,.04);
  border-color: rgba(17,17,17,.05);
}
.wf-contact-chip--phone{
  background: #fff;
  border-color: rgba(17,17,17,.08);
  box-shadow: 0 6px 18px rgba(17,17,17,.06);
}
.wf-contact-chip--email{
  color: rgba(17,17,17,.82);
}
.wf-contact-chip__icon{
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  font-size: 11px;
  color: #fff;
  background: #111319;
}
.wf-contact-chip--email .wf-contact-chip__icon{
  background: rgba(17,19,25,.74);
}
.wf-contact-chip__text{
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: #111319;
}
.wf-socials__item,
.wf-socials__item--footer2{
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  flex: 0 0 36px;
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
}
.wf-socials__item > img,
.wf-socials__item > span,
.wf-socials__item > .wf-socials__svg,
.wf-socials__item > .wf-socials__svg svg{
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
}
.wf-socials__img{
  object-fit: contain;
}
.wf-footer--reborn{
  position: relative !important;
  width: 100% !important;
  min-height: 0 !important;
  height: auto !important;
  overflow: hidden !important;
  background: #0f1117 !important;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #f5f7fb;
}
.wf-footer--reborn::before,
.wf-footer--reborn::after{
  content: '';
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  opacity: .55;
}
.wf-footer--reborn::before{
  width: 340px;
  height: 340px;
  right: -140px;
  top: -140px;
  background: radial-gradient(circle, rgba(104,123,255,.22), transparent 70%);
}
.wf-footer--reborn::after{
  width: 280px;
  height: 280px;
  left: -120px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(255,255,255,.08), transparent 72%);
}
.wf-footer--reborn .wf-footer__wrap,
.wf-footer--reborn .wf-footer__grid2,
.wf-footer--reborn .wf-footer__panel,
.wf-footer--reborn .wf-footer__bottom2{
  min-height: 0 !important;
  height: auto !important;
}
.wf-footer--reborn .wf-footer__wrap{
  position: relative;
  z-index: 1;
  max-width: calc(var(--max) + 2*var(--pad2));
  margin: 0 auto;
  padding: 28px var(--pad2) 18px;
}
.wf-footer__grid2{
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(180px, 1fr));
  gap: 18px;
  align-items: start;
}
.wf-footer__panel{
  padding: 24px;
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}
.wf-footer__kicker{
  margin-bottom: 12px;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.44);
}
.wf-footer__brandname{
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: .95;
  font-weight: 800;
  letter-spacing: -.04em;
  color: #fff;
}
.wf-footer__about2{
  margin: 0 0 18px;
  max-width: 34ch;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,.72);
}
.wf-footer__cta2{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  color: #111319;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.wf-footer__cta2:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(255,255,255,.12);
}
.wf-footer__head2{
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.wf-footer__links2{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.wf-footer__links2 a,
.wf-footer__contactlink{
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.5;
  transition: color .18s ease;
}
.wf-footer__links2 a:hover,
.wf-footer__contactlink:hover{
  color: #fff;
}
.wf-footer__contactlist2{
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}
.wf-footer__contactlink{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.wf-footer__contacticon{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background: rgba(255,255,255,.08);
  color: #fff;
  flex: 0 0 28px;
}
.wf-socials--footer2{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.wf-socials__item--footer2{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.1);
}
.wf-footer__bottom2{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
  padding: 14px 4px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.wf-footer--reborn .wf-footnote,
.wf-footer--reborn .wf-footer__legal{
  color: rgba(255,255,255,.48);
  font-size: 13px;
}
@media (max-width: 1120px){
  .wf-footer__grid2{
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .wf-footer__panel--contacts{
    grid-column: 1 / -1;
  }
}
@media (max-width: 860px){
  .wf-header__inner{
    min-height: 72px;
  }
  .wf-header-contactline{
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
  }
  .wf-contact-chip{
    max-width: 220px;
  }
  .wf-footer__grid2{
    grid-template-columns: 1fr;
  }
  .wf-footer__bottom2{
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 640px){
  .wf-brandline{
    flex-wrap: wrap;
  }
  .wf-header-contactline{
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
  }
  .wf-contact-chip{
    max-width: calc(100vw - 28px);
    min-height: 38px;
  }
  .wf-contact-chip--email{
    width: 100%;
    justify-content: flex-start;
  }
  .wf-footer--reborn .wf-footer__wrap{
    padding: 22px var(--pad) 16px;
  }
  .wf-footer__panel{
    padding: 18px;
    border-radius: 18px;
  }
}

/* ===== v7 aligned header + light footer ===== */
.wf-header{
  background: rgba(245,245,249,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(17,17,17,.08);
}
.wf-header__inner{
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 76px;
}
.wf-brandline{
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
}
.wf-brand{
  flex: 0 0 auto;
}
.wf-header-contactline{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  flex-wrap: nowrap;
}
.wf-contact-chip{
  min-height: 40px;
  padding: 0 14px 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(17,17,17,.10);
  background: rgba(255,255,255,.86);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75), 0 6px 18px rgba(17,17,17,.04);
  max-width: min(280px, 30vw);
}
.wf-contact-chip:hover{
  background: #fff;
  border-color: rgba(17,17,17,.14);
}
.wf-contact-chip__icon{
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size: 11px;
  color: #fff;
  background: linear-gradient(180deg, #222836, #111319);
}
.wf-contact-chip__text{
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: #171922;
}
.wf-contact-chip--email{
  background: rgba(255,255,255,.72);
}
.wf-actions{
  flex: 0 0 auto;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.wf-socials--header{
  margin-right: 4px;
}
.wf-socials__item{
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  flex: 0 0 36px;
  border-radius: 12px;
  border: 1px solid rgba(17,17,17,.10);
  background: rgba(255,255,255,.72);
  overflow: hidden;
}
.wf-socials__item:hover{
  border-color: rgba(17,17,17,.16);
  background: #fff;
}
.wf-socials__img,
.wf-socials__svg,
.wf-socials__svg svg,
.wf-socials__item > img,
.wf-socials__item > span,
.wf-socials__item > .wf-socials__svg,
.wf-socials__item > .wf-socials__svg svg{
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
}

.wf-footer--airy{
  position: relative !important;
  width: 100% !important;
  min-height: 0 !important;
  height: auto !important;
  overflow: hidden !important;
  background: linear-gradient(180deg, rgba(244,245,249,.96), rgba(238,240,246,.98));
  border-top: 1px solid rgba(17,17,17,.07);
  color: #171922;
}
.wf-footer--airy::before{
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(90,110,255,.08), transparent 30%), radial-gradient(circle at 0% 100%, rgba(17,17,17,.035), transparent 28%);
  pointer-events: none;
}
.wf-footer__wrap--airy{
  position: relative;
  z-index: 1;
  max-width: calc(var(--max) + 2*var(--pad2));
  margin: 0 auto;
  padding: 26px var(--pad2) 16px;
}
.wf-footer__grid2--airy{
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(180px, 1fr));
  gap: 16px;
  align-items: start;
}
.wf-footer__panel--airy{
  min-height: 100%;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.48));
  border: 1px solid rgba(17,17,17,.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.wf-footer__kicker{
  color: rgba(23,25,34,.48);
}
.wf-footer__brandname,
.wf-footer__head2{
  color: #171922;
}
.wf-footer__about2,
.wf-footer__links2 a,
.wf-footer__contactlink--airy,
.wf-footer__legal,
.wf-footer .wf-footnote{
  color: rgba(23,25,34,.72);
}
.wf-footer__links2 a:hover,
.wf-footer__contactlink--airy:hover{
  color: #171922;
}
.wf-footer__links2{
  gap: 11px;
}
.wf-footer__contactlist2--airy{
  display: grid;
  gap: 12px;
  margin-bottom: 0;
}
.wf-footer__contactlink--airy{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  line-height: 1.45;
}
.wf-footer__contacticon--airy{
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #171922;
  background: rgba(17,17,17,.05);
}
.wf-footer__bottom2--airy{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-top: 14px;
  padding: 14px 4px 0;
  border-top: 1px solid rgba(17,17,17,.08);
}
.wf-footer--airy .wf-footnote,
.wf-footer--airy .wf-footer__legal{
  color: rgba(23,25,34,.52);
  font-size: 13px;
}

@media (max-width: 1260px){
  .wf-header__inner{
    grid-template-columns: minmax(0,1fr);
    row-gap: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
    height: auto;
  }
  .wf-actions{
    width: 100%;
    justify-content: flex-end;
  }
  .wf-contact-chip--email{
    max-width: 240px;
  }
}
@media (max-width: 1120px){
  .wf-footer__grid2--airy{
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .wf-footer__panel--contacts{
    grid-column: 1 / -1;
  }
}
@media (max-width: 920px){
  .wf-brandline{
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .wf-header-contactline{
    width: 100%;
    flex-wrap: wrap;
  }
  .wf-contact-chip,
  .wf-contact-chip--email{
    max-width: 100%;
  }
  .wf-socials--header{
    display: none;
  }
}
@media (max-width: 760px){
  .wf-actions{
    justify-content: space-between;
    gap: 8px;
  }
  .wf-footer__grid2--airy{
    grid-template-columns: 1fr;
  }
  .wf-footer__bottom2--airy{
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 640px){
  .wf-header__inner{
    row-gap: 8px;
  }
  .wf-brandline{
    gap: 10px;
  }
  .wf-header-contactline{
    gap: 8px;
  }
  .wf-contact-chip{
    width: auto;
    min-height: 38px;
    max-width: calc(100vw - 28px);
  }
  .wf-contact-chip--email{
    width: 100%;
    justify-content: flex-start;
  }
  .wf-footer__wrap--airy{
    padding: 20px var(--pad) 16px;
  }
  .wf-footer__panel--airy{
    padding: 18px;
    border-radius: 18px;
  }
}


/* ===== v8 final header + light footer + menu restore ===== */
.wf-header{
  background: rgba(245,245,249,.94) !important;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(17,17,17,.08) !important;
}
.wf-header__inner{
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  min-height: 74px !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
.wf-brandline{
  display:flex !important;
  align-items:center !important;
  gap: 16px !important;
  min-width: 0 !important;
  flex: 1 1 auto !important;
  flex-wrap: nowrap !important;
}
.wf-brand{
  flex: 0 0 auto !important;
}
.wf-header-contactline{
  display:flex !important;
  align-items:center !important;
  gap: 8px !important;
  min-width: 0 !important;
  padding: 5px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.72) !important;
  border: 1px solid rgba(17,17,17,.08) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.78) !important;
  flex-wrap: nowrap !important;
}
.wf-contact-chip{
  display:inline-flex !important;
  align-items:center !important;
  gap: 9px !important;
  min-height: 36px !important;
  padding: 0 14px 0 10px !important;
  border-radius: 999px !important;
  border: 1px solid transparent !important;
  background: transparent !important;
  box-shadow: none !important;
  max-width: 240px !important;
  min-width: 0 !important;
  overflow: hidden !important;
}
.wf-contact-chip--phone{
  background: #fff !important;
  border-color: rgba(17,17,17,.08) !important;
  box-shadow: 0 4px 14px rgba(17,17,17,.05) !important;
}
.wf-contact-chip--email{
  background: transparent !important;
}
.wf-contact-chip__icon{
  width: 20px !important;
  height: 20px !important;
  flex: 0 0 20px !important;
  border-radius: 999px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  font-size: 10px !important;
  color:#fff !important;
  background: #171922 !important;
}
.wf-contact-chip__text{
  display:block !important;
  min-width: 0 !important;
  overflow:hidden !important;
  text-overflow:ellipsis !important;
  white-space:nowrap !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: -.01em !important;
  color: #171922 !important;
}
.wf-actions{
  flex: 0 0 auto !important;
  display:flex !important;
  align-items:center !important;
  gap: 8px !important;
  min-width: 0 !important;
  margin-left: 14px !important;
}
.wf-socials{
  display:flex !important;
  align-items:center !important;
  gap: 8px !important;
}
.wf-socials--header{
  margin-right: 2px !important;
}
.wf-socials__item,
.wf-search-btn,
.wf-cart-btn--icon,
.wf-menu-btn{
  height: 36px !important;
  min-height: 36px !important;
  border-radius: 12px !important;
}
.wf-socials__item{
  width: 36px !important;
  min-width: 36px !important;
  padding: 0 !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  border: 1px solid rgba(17,17,17,.08) !important;
  background: rgba(255,255,255,.72) !important;
  overflow: hidden !important;
}
.wf-socials__item:hover{
  background: #fff !important;
  border-color: rgba(17,17,17,.14) !important;
}
.wf-socials__img,
.wf-socials__svg,
.wf-socials__svg svg{
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  object-fit: contain !important;
  display:block !important;
}
.wf-search-btn,
.wf-cart-btn--icon,
.wf-menu-btn{
  padding: 0 14px !important;
  border: 1px solid rgba(17,17,17,.08) !important;
  background: rgba(255,255,255,.72) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.78) !important;
}
.wf-search-btn:hover,
.wf-cart-btn--icon:hover,
.wf-menu-btn:hover{
  background: #fff !important;
  border-color: rgba(17,17,17,.14) !important;
}
.wf-search-btn__text,
.wf-cart-btn__text,
.wf-menu-btn__text{
  color: #6d7383 !important;
}
.wf-search-btn__kbd{
  background: rgba(17,17,17,.04) !important;
  border-color: rgba(17,17,17,.08) !important;
  color: #8a90a0 !important;
}
.wf-cart-btn__count{
  background: #171922 !important;
  color: #fff !important;
  border-color: #171922 !important;
}
.wf-menu{
  z-index: 9998 !important;
}
.wf-search{
  z-index: 9999 !important;
}
.wf-footer--airy{
  position: relative !important;
  width: 100% !important;
  min-height: 0 !important;
  height: auto !important;
  overflow: hidden !important;
  background: linear-gradient(180deg, rgba(245,246,250,.96), rgba(239,241,246,.98)) !important;
  border-top: 1px solid rgba(17,17,17,.07) !important;
  color: #171922 !important;
}
.wf-footer--airy::before{
  content:'' !important;
  position:absolute !important;
  inset:0 !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(89,110,255,.07), transparent 30%),
    radial-gradient(circle at 0% 100%, rgba(17,17,17,.03), transparent 28%) !important;
  pointer-events:none !important;
}
.wf-footer__wrap--airy{
  position: relative !important;
  z-index: 1 !important;
  max-width: calc(var(--max) + 2*var(--pad2)) !important;
  margin: 0 auto !important;
  padding: 24px var(--pad2) 16px !important;
}
.wf-footer__grid2--airy{
  display:grid !important;
  grid-template-columns: minmax(260px,1.25fr) repeat(3, minmax(180px,1fr)) !important;
  gap: 16px !important;
  align-items:start !important;
}
.wf-footer__panel--airy{
  min-height: 100% !important;
  padding: 22px !important;
  border-radius: 22px !important;
  background: linear-gradient(180deg, rgba(255,255,255,.74), rgba(255,255,255,.52)) !important;
  border: 1px solid rgba(17,17,17,.07) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.84) !important;
}
.wf-footer__kicker{
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: .08em !important;
  color: rgba(23,25,34,.46) !important;
  margin-bottom: 10px !important;
}
.wf-footer__brandname{
  font-size: clamp(28px, 3vw, 42px) !important;
  line-height: .95 !important;
  letter-spacing: -.03em !important;
  color: #171922 !important;
  margin-bottom: 14px !important;
}
.wf-footer__head2{
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #171922 !important;
  margin-bottom: 14px !important;
}
.wf-footer__about2{
  color: rgba(23,25,34,.72) !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
}
.wf-footer__links2{
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  gap: 10px !important;
}
.wf-footer__links2 li{
  margin: 0 !important;
  padding: 0 !important;
}
.wf-footer__links2 a{
  color: rgba(23,25,34,.76) !important;
  text-decoration: none !important;
  font-size: 15px !important;
  line-height: 1.5 !important;
}
.wf-footer__links2 a:hover{
  color: #171922 !important;
}
.wf-footer__contactlist2--airy{
  display:grid !important;
  gap: 12px !important;
  margin: 0 !important;
}
.wf-footer__contactlink--airy{
  display:inline-flex !important;
  align-items:center !important;
  gap: 10px !important;
  color: rgba(23,25,34,.76) !important;
  text-decoration:none !important;
  line-height: 1.5 !important;
}
.wf-footer__contactlink--airy:hover{
  color: #171922 !important;
}
.wf-footer__contacticon--airy{
  width: 30px !important;
  height: 30px !important;
  flex: 0 0 30px !important;
  border-radius: 10px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  font-size: 12px !important;
  color: #171922 !important;
  background: rgba(17,17,17,.05) !important;
}
.wf-footer__bottom2--airy{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap: 12px !important;
  margin-top: 14px !important;
  padding: 14px 4px 0 !important;
  border-top: 1px solid rgba(17,17,17,.08) !important;
}
.wf-footer--airy .wf-footnote,
.wf-footer--airy .wf-footer__legal{
  color: rgba(23,25,34,.54) !important;
  font-size: 13px !important;
}
@media (max-width: 1500px){
  .wf-socials--header{
    display:none !important;
  }
  .wf-contact-chip{
    max-width: 220px !important;
  }
}
@media (max-width: 1260px){
  .wf-header__inner{
    flex-wrap: wrap !important;
    row-gap: 10px !important;
  }
  .wf-brandline{
    flex: 1 1 100% !important;
  }
  .wf-actions{
    width: 100% !important;
    justify-content: flex-end !important;
    margin-left: 0 !important;
  }
}
@media (max-width: 1120px){
  .wf-footer__grid2--airy{
    grid-template-columns: 1.15fr 1fr 1fr !important;
  }
  .wf-footer__panel--contacts{
    grid-column: 1 / -1 !important;
  }
}
@media (max-width: 920px){
  .wf-brandline{
    flex-wrap: wrap !important;
    align-items: flex-start !important;
  }
  .wf-header-contactline{
    width: 100% !important;
    flex-wrap: wrap !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
  .wf-contact-chip,
  .wf-contact-chip--email{
    max-width: 100% !important;
  }
}
@media (max-width: 760px){
  .wf-actions{
    justify-content: space-between !important;
    gap: 8px !important;
  }
  .wf-search-btn__text,
  .wf-cart-btn__text{
    display:none !important;
  }
  .wf-search-btn,
  .wf-cart-btn--icon{
    min-width: 44px !important;
    justify-content:center !important;
    padding: 0 12px !important;
  }
  .wf-footer__grid2--airy{
    grid-template-columns: 1fr !important;
  }
  .wf-footer__bottom2--airy{
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}
@media (max-width: 640px){
  .wf-header__inner{
    min-height: auto !important;
    row-gap: 8px !important;
  }
  .wf-brandline{
    gap: 10px !important;
  }
  .wf-contact-chip{
    min-height: 38px !important;
    max-width: calc(100vw - 28px) !important;
  }
  .wf-contact-chip--email{
    width: 100% !important;
    justify-content: flex-start !important;
  }
  .wf-footer__wrap--airy{
    padding: 20px var(--pad) 16px !important;
  }
  .wf-footer__panel--airy{
    padding: 18px !important;
    border-radius: 18px !important;
  }
}


/* ===== v9 header centering + clean contact pills ===== */
:root{
  --header-h: 72px;
}
.wf-header{
  height: var(--header-h) !important;
}
.wf-header__inner{
  min-height: var(--header-h) !important;
  height: var(--header-h) !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  gap: 16px !important;
}
.wf-brandline{
  height: 100% !important;
  display:flex !important;
  align-items:center !important;
}
.wf-brand{
  height: 100% !important;
  display:flex !important;
  align-items:center !important;
}
.wf-header-contactline{
  height: 46px !important;
  padding: 4px !important;
  gap: 6px !important;
  display:flex !important;
  align-items:center !important;
}
.wf-contact-chip{
  min-height: 38px !important;
  height: 38px !important;
  padding: 0 16px !important;
  gap: 0 !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
}
.wf-contact-chip__icon{
  display:none !important;
}
.wf-contact-chip__text{
  line-height: 1 !important;
}
.wf-actions{
  height: 100% !important;
  display:flex !important;
  align-items:center !important;
  gap: 8px !important;
  margin-left: 10px !important;
}
.wf-socials__item,
.wf-search-btn,
.wf-cart-btn--icon,
.wf-menu-btn{
  height: 38px !important;
  min-height: 38px !important;
}
@media (max-width: 1260px){
  .wf-header{
    height: auto !important;
  }
  .wf-header__inner{
    height: auto !important;
    min-height: 72px !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
}
@media (max-width: 760px){
  :root{
    --header-h: 64px;
  }
  .wf-header-contactline{
    height: auto !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }
  .wf-contact-chip{
    height: 36px !important;
    min-height: 36px !important;
  }
}

/* ===== v10 hard center header ===== */
:root{
  --header-h: 60px;
}
html,body{
  margin:0 !important;
  padding:0 !important;
}
.wf-header,
.wf-bar.wf-header{
  height: var(--header-h) !important;
  min-height: var(--header-h) !important;
  margin: 0 !important;
  padding: 0 !important;
}
.wf-header__inner,
.wf-bar__inner.wf-header__inner{
  height: var(--header-h) !important;
  min-height: var(--header-h) !important;
  padding: 0 var(--pad2) !important;
  margin: 0 auto !important;
  display:flex !important;
  align-items: center !important;
  align-content: center !important;
}
.wf-header .wf-brandline,
.wf-header .wf-brand,
.wf-header-contactline,
.wf-header .wf-actions,
.wf-header .wf-socials--header{
  height: 100% !important;
  min-height: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  display:flex !important;
  align-items:center !important;
  align-self:center !important;
}
.wf-header-contactline{
  gap: 8px !important;
}
.wf-contact-chip,
.wf-socials__item,
.wf-search-btn,
.wf-cart-btn--icon,
.wf-menu-btn{
  align-self: center !important;
  margin: 0 !important;
  transform: none !important;
}
.wf-contact-chip{
  height: 40px !important;
  min-height: 40px !important;
  padding: 0 18px !important;
}
.wf-search-btn,
.wf-cart-btn--icon,
.wf-menu-btn,
.wf-socials__item{
  height: 36px !important;
  min-height: 36px !important;
}
.wf-logo,
.wf-logo--img .wf-logo__img,
.wf-logo--svg svg{
  vertical-align: middle !important;
}
@media (max-width: 1260px){
  .wf-header,
  .wf-bar.wf-header{
    height: auto !important;
    min-height: 60px !important;
  }
  .wf-header__inner,
  .wf-bar__inner.wf-header__inner{
    height: auto !important;
    min-height: 60px !important;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }
}
@media (max-width: 760px){
  :root{
    --header-h: 56px;
  }
  .wf-header-contactline{
    height: auto !important;
  }
  .wf-contact-chip{
    height: 36px !important;
    min-height: 36px !important;
    padding: 0 14px !important;
  }
}

/* ===== v11 side paddings + mobile header adaptation ===== */
:root{
  --wf-header-side-gap: clamp(12px, 1.6vw, 22px);
}
.wf-header,
.wf-bar.wf-header{
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.wf-header__inner,
.wf-bar__inner.wf-header__inner{
  width: 100% !important;
  max-width: 100% !important;
  padding-left: var(--wf-header-side-gap) !important;
  padding-right: var(--wf-header-side-gap) !important;
  box-sizing: border-box !important;
  gap: 14px !important;
}
.wf-brandline{
  min-width: 0 !important;
}
.wf-header .wf-actions{
  margin-left: auto !important;
  gap: 8px !important;
  flex-wrap: nowrap !important;
}
.wf-header-contactline{
  flex-wrap: wrap !important;
}
.wf-contact-chip{
  border-radius: 18px !important;
}

@media (max-width: 1180px){
  .wf-header__inner,
  .wf-bar__inner.wf-header__inner{
    gap: 10px !important;
  }
  .wf-contact-chip{
    padding: 0 15px !important;
  }
  .wf-contact-chip__text{
    font-size: 14px !important;
  }
}

@media (max-width: 980px){
  .wf-header,
  .wf-bar.wf-header{
    height: auto !important;
    min-height: 64px !important;
  }
  .wf-header__inner,
  .wf-bar__inner.wf-header__inner{
    display: grid !important;
    grid-template-columns: auto 1fr auto !important;
    grid-template-areas:
      "brand spacer actions"
      "contacts contacts contacts" !important;
    align-items: center !important;
    min-height: 64px !important;
    height: auto !important;
    row-gap: 10px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .wf-header .wf-brandline{
    grid-area: brand !important;
    display: flex !important;
    align-items: center !important;
  }
  .wf-header-contactline{
    grid-area: contacts !important;
    justify-content: center !important;
    height: auto !important;
    width: 100% !important;
    gap: 8px !important;
  }
  .wf-header .wf-actions{
    grid-area: actions !important;
    margin-left: 0 !important;
  }
}

@media (max-width: 640px){
  :root{
    --wf-header-side-gap: 10px;
  }
  .wf-header__inner,
  .wf-bar__inner.wf-header__inner{
    grid-template-columns: auto 1fr auto !important;
    row-gap: 8px !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .wf-header .wf-socials--header{
    display: none !important;
  }
  .wf-contact-chip,
  .wf-contact-chip--email{
    height: 34px !important;
    min-height: 34px !important;
    padding: 0 12px !important;
    border-radius: 16px !important;
  }
  .wf-contact-chip__text{
    font-size: 13px !important;
    line-height: 1 !important;
  }
  .wf-search-btn,
  .wf-cart-btn--icon,
  .wf-menu-btn{
    height: 34px !important;
    min-height: 34px !important;
  }
  .wf-search-btn,
  .wf-menu-btn{
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}

@media (max-width: 480px){
  .wf-header__inner,
  .wf-bar__inner.wf-header__inner{
    grid-template-columns: 1fr auto !important;
    grid-template-areas:
      "brand actions"
      "contacts contacts" !important;
  }
  .wf-header-contactline{
    justify-content: flex-start !important;
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    padding-bottom: 2px !important;
    scrollbar-width: none;
  }
  .wf-header-contactline::-webkit-scrollbar{
    display: none;
  }
  .wf-contact-chip,
  .wf-contact-chip--email{
    flex: 0 0 auto !important;
  }
  .wf-menu-btn__text{
    display: none !important;
  }
  .wf-menu-btn{
    width: 38px !important;
    min-width: 38px !important;
    justify-content: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* ===== v12 mobile header final fix ===== */
@media (max-width: 760px){
  :root{
    --header-h: 106px;
    --wf-header-side-gap: 12px;
  }
  .wf-header,
  .wf-bar.wf-header{
    height: var(--header-h) !important;
    min-height: var(--header-h) !important;
  }
  .wf-shell{
    padding-top: 0 !important;
  }
  .wf-header__inner,
  .wf-bar__inner.wf-header__inner{
    height: var(--header-h) !important;
    min-height: var(--header-h) !important;
    grid-template-columns: auto 1fr auto !important;
    grid-template-areas:
      "brand spacer actions"
      "contacts contacts contacts" !important;
    row-gap: 10px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    align-items: center !important;
  }
  .wf-header .wf-brandline{
    gap: 0 !important;
  }
  .wf-header .wf-actions{
    gap: 8px !important;
  }
  .wf-header .wf-socials--header{
    display: none !important;
  }
  .wf-header-contactline{
    justify-content: flex-start !important;
    width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    padding: 0 !important;
    gap: 8px !important;
    scrollbar-width: none;
  }
  .wf-header-contactline::-webkit-scrollbar{
    display: none;
  }
  .wf-contact-chip,
  .wf-contact-chip--email{
    flex: 0 0 auto !important;
    max-width: none !important;
    height: 34px !important;
    min-height: 34px !important;
    padding: 0 12px !important;
    border-radius: 17px !important;
  }
  .wf-contact-chip__text{
    font-size: 13px !important;
    line-height: 1 !important;
  }
  .wf-search-btn,
  .wf-cart-btn--icon,
  .wf-menu-btn{
    height: 36px !important;
    min-height: 36px !important;
  }
}

@media (max-width: 520px){
  :root{
    --header-h: 96px;
  }
  .wf-shell{
    padding-top: 0 !important;
  }
  .wf-header__inner,
  .wf-bar__inner.wf-header__inner{
    height: var(--header-h) !important;
    min-height: var(--header-h) !important;
    row-gap: 8px !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .wf-contact-chip--email{
    display: none !important;
  }
  .wf-contact-chip{
    max-width: calc(100vw - 24px) !important;
  }
  .wf-brand .wf-logo,
  .wf-brand .wf-logo__img,
  .wf-brand .wf-logo--svg svg{
    max-height: 30px !important;
    width: auto !important;
  }
}

/* ===== Final header/menu/footer cleanup ===== */
.wf-header-contactline,
.wf-contact-chip,
.wf-contact-chip--email{
  display: none !important;
}

.wf-header__inner,
.wf-bar__inner.wf-header__inner{
  grid-template-columns: auto 1fr auto !important;
  grid-template-areas: "brand nav actions" !important;
  align-items: center !important;
}

.wf-header-contact-actions,
.wf-socials--header{
  display: flex;
  align-items: center;
  gap: 10px;
}

.wf-socials__item,
.wf-socials__item--headericon{
  width: 38px !important;
  height: 38px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(18, 18, 18, 0.08) !important;
  background: #f1f1f1 !important;
  color: #1f1f1f !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: none !important;
}
.wf-socials__item:hover,
.wf-socials__item--headericon:hover{
  background: #ebebeb !important;
  border-color: rgba(18, 18, 18, 0.12) !important;
  transform: none !important;
}
.wf-socials__item .wf-socials__svg,
.wf-socials__item--headericon .wf-socials__svg,
.wf-menu__contacticon{
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.wf-socials__item .wf-socials__svg svg,
.wf-socials__item--headericon .wf-socials__svg svg,
.wf-menu__contacticon svg{
  width: 18px;
  height: 18px;
}

.wf-menu__contactsblock{
  display: grid;
  gap: 10px;
  margin: 14px 0 16px;
  padding: 14px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--fg) 4%, transparent);
  border: 1px solid var(--line);
}
.wf-menu__contactrow{
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  word-break: break-word;
}
.wf-menu__socials{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.wf-footer__brandname,
.wf-footer__legal{
  display: none !important;
}
.wf-footer__brandimagewrap{
  margin: 0 0 18px;
}
.wf-footer__brandimage{
  display: block;
  width: 100%;
  height: auto;
  max-width: 220px;
}
.wf-footer__contactlist2--freeform{
  display: grid;
  gap: 10px;
}
.wf-footer__contactline-freeform{
  line-height: 1.55;
  color: inherit;
  white-space: pre-wrap;
  word-break: break-word;
}
.wf-footer__bottom2--airy{
  border-top: 0 !important;
  padding-top: 0 !important;
  margin-top: 12px !important;
}

.wf-swipebar,
.wf-progress{
  display: none !important;
}

@media (max-width: 760px){
  :root{
    --header-h: 58px !important;
  }
  .wf-header,
  .wf-bar.wf-header,
  .wf-header__inner,
  .wf-bar__inner.wf-header__inner{
    height: 58px !important;
    min-height: 58px !important;
  }
  .wf-header__inner,
  .wf-bar__inner.wf-header__inner{
    grid-template-columns: auto 1fr auto !important;
    grid-template-areas: "brand spacer actions" !important;
    row-gap: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    align-items: center !important;
  }
  .wf-shell{
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
  }
  .wf-main{
    min-height: 0 !important;
  }
  .wf-header-contact-actions,
  .wf-socials--header{
    display: none !important;
  }
  .wf-brandline{
    gap: 0 !important;
  }
  .wf-actions{
    gap: 8px !important;
  }
  .wf-search-btn,
  .wf-cart-btn--icon,
  .wf-menu-btn{
    height: 38px !important;
    min-height: 38px !important;
  }
  .wf-menu-btn{
    width: 38px !important;
    min-width: 38px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    justify-content: center !important;
  }
  .wf-menu-btn__text{
    display: none !important;
  }
  .wf-content,
  body.wf-layout-full .wf-content,
  body.wf-layout-full-tight .wf-content{
    padding-top: 0 !important;
  }
}
