/*
 * Shared, statically rendered site chrome.
 * Keep every rule scoped to the generated `site-*` shell so legacy page CSS
 * cannot leak into the navigation or footer (and vice versa).
 */
@font-face{
  font-family:"Satoshi";
  src:url("/fonts/Satoshi-Variable.woff2") format("woff2");
  font-weight:300 900;
  font-style:normal;
  font-display:swap;
}

:root{
  --site-shell-paper:#f1efea;
  --site-shell-ink:#131211;
  --site-shell-graphite:#1a1b1c;
  --site-shell-azure:#3f8ccc;
  --site-shell-azure-soft:#88cef6;
  --site-shell-azure-deep:#1e3d63;
  --site-shell-warm-200:#d8d4cc;
  --site-shell-warm-500:#8a857c;
  --site-shell-warm-700:#4a4640;
  --site-shell-font:"Satoshi","Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

.site-shell-header,
.site-mnav,
.site-footer{
  font-family:var(--site-shell-font);
  -webkit-font-smoothing:antialiased;
}

.site-shell-header *,
.site-mnav *,
.site-footer *{box-sizing:border-box}

:where(.site-shell-header,.site-mnav,.site-footer) a{
  min-height:0;
  margin:0;
  padding:0;
  border:0;
  border-radius:0;
  color:inherit;
  background:transparent;
  box-shadow:none;
  text-decoration:none;
  text-transform:none;
}

:where(.site-shell-header,.site-mnav,.site-footer) button{font:inherit}

.site-shell-header :where(a,button):focus-visible,
.site-mnav :where(a,button):focus-visible,
.site-footer :where(a,button):focus-visible{
  outline:3px solid var(--site-shell-azure-soft);
  outline-offset:3px;
}

/* Header ----------------------------------------------------------------- */
.topbar.glass.site-shell-header{
  position:fixed;
  top:max(18px,env(safe-area-inset-top,0px));
  right:0;
  left:0;
  z-index:900;
  width:min(1280px,calc(100% - 28px));
  margin:0 auto;
  padding:0;
  border:1px solid rgba(255,255,255,.55);
  border-radius:24px;
  color:var(--site-shell-ink);
  background:rgba(252,252,253,.5);
  -webkit-backdrop-filter:blur(26px) saturate(1.7);
  backdrop-filter:blur(26px) saturate(1.7);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.85),inset 0 -1px 0 rgba(19,18,17,.03),0 20px 50px rgba(19,18,17,.16),0 5px 14px rgba(19,18,17,.08);
  overflow:visible;
  isolation:isolate;
  transition:background-color .24s ease,border-color .24s ease,box-shadow .24s ease,color .24s ease;
}

.topbar.glass.site-shell-header::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  border-radius:inherit;
  overflow:hidden;
  pointer-events:none;
  background:linear-gradient(104deg,rgba(255,255,255,.28),rgba(255,255,255,0) 26% 74%,rgba(255,255,255,.14));
}

.topbar.glass.site-shell-header::after{display:none}

.topbar.glass.site-shell-header.nav-dark{
  color:var(--site-shell-paper);
  background:rgba(20,21,22,.42);
  border-color:rgba(255,255,255,.16);
  -webkit-backdrop-filter:blur(26px) saturate(1.5) brightness(1.15);
  backdrop-filter:blur(26px) saturate(1.5) brightness(1.15);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.22),0 20px 50px rgba(0,0,0,.4),0 5px 14px rgba(0,0,0,.28);
}

.topbar.glass.site-shell-header.nav-dark::before{
  background:linear-gradient(104deg,rgba(255,255,255,.13),rgba(255,255,255,0) 26% 74%,rgba(255,255,255,.06));
}

.site-shell-inner{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  max-width:none;
  height:78px;
  margin:0;
  padding:0 10px 0 24px;
  gap:18px;
}

.site-wordmark{
  display:inline-flex;
  align-items:center;
  flex:none;
  gap:16px;
  min-width:0;
  color:var(--site-shell-ink);
  font-family:var(--site-shell-font);
  font-size:20px;
  font-weight:700;
  letter-spacing:-.01em;
  line-height:1;
  white-space:nowrap;
}

.site-wordmark .brand-name{font-family:"Inter",-apple-system,"Helvetica Neue",Helvetica,Arial,sans-serif!important}

.site-wm-key{display:block;width:auto;height:54px;flex:none;color:currentColor}
.site-wm-key :where(rect,path){stroke:currentColor}
.site-wm-key path[fill]{fill:currentColor;stroke:none}
.site-shell-header.nav-dark .site-wordmark{color:var(--site-shell-paper)}

.site-topnav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:clamp(22px,2.6vw,40px);
  min-width:0;
}

.site-topnav > a{
  position:relative;
  display:inline-flex;
  align-items:center;
  min-height:44px;
  padding:8px 0;
  border:0;
  color:var(--site-shell-warm-700);
  font-family:var(--site-shell-font);
  font-size:18.5px;
  font-weight:600;
  letter-spacing:.01em;
  line-height:1.2;
  white-space:nowrap;
  transition:color .2s ease;
}

.site-topnav > a:hover,
.site-topnav > a[aria-expanded="true"]{color:var(--site-shell-azure)}
.site-shell-header.nav-dark .site-topnav > a{color:rgba(241,239,234,.82)}
.site-shell-header.nav-dark .site-topnav > a:hover,
.site-shell-header.nav-dark .site-topnav > a[aria-expanded="true"]{color:#fff}

.site-topnav > [data-site-mega]{padding-right:17px}
.site-topnav > [data-site-mega]::after{
  content:"";
  position:absolute;
  top:50%;
  right:1px;
  width:6.5px;
  height:6.5px;
  border-right:1.7px solid currentColor;
  border-bottom:1.7px solid currentColor;
  opacity:.55;
  transform:translateY(-72%) rotate(45deg);
  transition:opacity .2s ease,transform .2s ease;
}

.site-topnav > [data-site-mega][aria-expanded="true"]::after{
  opacity:.9;
  transform:translateY(-28%) rotate(225deg);
}

.site-topbar-right{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  flex:none;
  gap:clamp(8px,1.25vw,16px);
}

.site-nav-cd{
  color:var(--site-shell-warm-700);
  font-size:14px;
  font-weight:650;
  font-variant-numeric:tabular-nums;
  letter-spacing:.02em;
  line-height:1;
  opacity:0;
  pointer-events:none;
  transform:translateX(8px);
  white-space:nowrap;
  transition:opacity .35s ease,transform .35s ease;
}

.site-shell-header.show-cd .site-nav-cd{opacity:1;transform:none}
.site-shell-header.nav-dark .site-nav-cd{color:rgba(241,239,234,.82)}

.site-cart-btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:none;
  width:42px;
  height:42px;
  padding:0;
  border:0;
  border-radius:999px;
  color:var(--site-shell-warm-700);
  background:transparent;
  cursor:pointer;
  transition:color .2s ease,background-color .2s ease,transform .2s ease;
}

.site-cart-btn:hover{color:var(--site-shell-azure);background:rgba(19,18,17,.06)}
.site-cart-btn svg{display:block;width:21px;height:21px}
.site-shell-header.nav-dark .site-cart-btn{color:rgba(241,239,234,.86)}
.site-shell-header.nav-dark .site-cart-btn:hover{color:#fff;background:rgba(241,239,234,.1)}

.site-cart-btn .cart-count{
  position:absolute;
  top:0;
  right:-1px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:17px;
  height:17px;
  padding:0 4px;
  border:2px solid rgba(252,252,253,.86);
  border-radius:999px;
  color:#fff;
  background:var(--site-shell-azure);
  font-size:10px;
  font-weight:800;
  font-variant-numeric:tabular-nums;
  line-height:1;
  pointer-events:none;
  transform:scale(0);
  transition:transform .28s cubic-bezier(.34,1.56,.5,1);
}

.site-cart-btn.has-items .cart-count{transform:scale(1)}

.site-shell-header.nav-dark .site-cart-btn :where(.cart-count,#cartCount){border-color:rgba(20,21,22,.8);background:var(--site-shell-azure-soft);color:var(--site-shell-ink)}

.site-lang-switch{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:42px;
  min-height:38px;
  padding:0 11px;
  border:1.5px solid rgba(19,18,17,.16);
  border-radius:999px;
  color:var(--site-shell-warm-700);
  font-size:13.5px;
  font-weight:750;
  letter-spacing:.06em;
  line-height:1;
  transition:color .2s ease,border-color .2s ease,background-color .2s ease;
}

.site-lang-switch:hover{color:var(--site-shell-azure);border-color:var(--site-shell-azure)}
.site-shell-header.nav-dark .site-lang-switch{color:rgba(241,239,234,.84);border-color:rgba(241,239,234,.3)}
.site-shell-header.nav-dark .site-lang-switch:hover{color:#fff;border-color:#fff}

.site-nav-cta,
.site-mnav-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 30px;
  border:1.5px solid var(--site-shell-azure);
  border-radius:999px;
  color:#fff;
  background:var(--site-shell-azure);
  font-size:17px;
  font-weight:750;
  letter-spacing:.01em;
  line-height:1;
  white-space:nowrap;
  transition:color .2s ease,background-color .2s ease,border-color .2s ease,transform .2s ease;
}

.site-nav-cta:hover,
.site-mnav-cta:hover{color:#fff;background:var(--site-shell-azure-deep);border-color:var(--site-shell-azure-deep);transform:translateY(-1px)}
.site-shell-header.nav-dark .site-nav-cta{color:var(--site-shell-ink);background:var(--site-shell-paper);border-color:var(--site-shell-paper)}
.site-shell-header.nav-dark .site-nav-cta:hover{background:var(--site-shell-warm-200);border-color:var(--site-shell-warm-200)}

.site-burger{
  display:none;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  flex:none;
  gap:5px;
  width:46px;
  height:44px;
  padding:0;
  border:0;
  border-radius:999px;
  color:var(--site-shell-ink);
  background:transparent;
  cursor:pointer;
}

.site-burger span{
  display:block;
  width:27px;
  height:2.4px;
  border-radius:4px;
  background:currentColor;
  transition:transform .35s cubic-bezier(.22,.61,.21,1),opacity .2s ease;
}

.site-shell-header.nav-dark .site-burger{color:var(--site-shell-paper)}
body.site-mnav-open .site-burger{color:var(--site-shell-paper)}
body.site-mnav-open .site-burger span:nth-child(1){transform:translateY(7.4px) rotate(45deg)}
body.site-mnav-open .site-burger span:nth-child(2){opacity:0}
body.site-mnav-open .site-burger span:nth-child(3){transform:translateY(-7.4px) rotate(-45deg)}

/* Desktop mega menus ----------------------------------------------------- */
.site-mega{
  position:absolute;
  top:calc(100% + 12px);
  right:0;
  left:0;
  z-index:5;
  padding:0 14px;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translateY(-7px);
  transition:opacity .22s ease,transform .28s cubic-bezier(.22,.61,.21,1),visibility 0s linear .28s;
}

.site-mega.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:none;
  transition:opacity .22s ease,transform .28s cubic-bezier(.22,.61,.21,1);
}

.site-mega-in,
.site-mega-inner{
  display:grid;
  grid-template-columns:minmax(240px,300px) minmax(320px,1fr);
  gap:clamp(20px,3vw,44px);
  width:min(880px,100%);
  margin:0 auto;
  padding:clamp(18px,2vw,28px);
  border:1px solid rgba(19,18,17,.08);
  border-radius:24px;
  color:var(--site-shell-ink);
  background:#f7f4ee;
  box-shadow:0 30px 70px rgba(19,18,17,.18),0 6px 18px rgba(19,18,17,.08);
}

#siteMegaKey :where(.site-mega-in,.site-mega-inner){grid-template-columns:minmax(230px,280px) minmax(180px,1fr);width:min(560px,100%)}
#siteMegaImpact :where(.site-mega-in,.site-mega-inner){width:min(760px,100%)}

.site-mega-card{
  position:relative;
  display:block;
  min-height:180px;
  aspect-ratio:16/10;
  border-radius:16px;
  overflow:hidden;
  background:#d8d4cc;
}

.site-mega-card img{display:block;width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.site-mega-card::after{content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(10,11,13,.65),transparent 58%);pointer-events:none}
.site-mega-card:hover img{transform:scale(1.04)}
.site-mega-card-title,
.site-mega-card > span{
  position:absolute;
  right:14px;
  bottom:13px;
  left:16px;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  color:#fff;
  font-size:17px;
  font-weight:700;
  letter-spacing:-.01em;
}

.site-mega-card-title i,
.site-mega-card > span i{
  display:flex;
  align-items:center;
  justify-content:center;
  flex:none;
  width:32px;
  height:32px;
  border-radius:50%;
  color:var(--site-shell-ink);
  background:var(--site-shell-paper);
  font-style:normal;
  transition:transform .2s ease;
}

.site-mega-card:hover .site-mega-card-title i,
.site-mega-card:hover > span i{transform:translateX(3px)}
.site-mega-links{display:grid;grid-template-columns:1fr 1fr;gap:2px 28px;align-content:center}
#siteMegaKey .site-mega-links,
#siteMegaImpact .site-mega-links{grid-template-columns:1fr}
.site-mega-links a{
  display:flex;
  align-items:center;
  gap:13px;
  min-height:46px;
  padding:10px 12px;
  border-radius:14px;
  color:rgba(19,18,17,.72);
  font-size:16.5px;
  font-weight:600;
  line-height:1.25;
  transition:color .18s ease,background-color .18s ease;
}

.site-mega-links a:hover{color:var(--site-shell-ink);background:rgba(19,18,17,.06)}
.site-mega-links svg{width:21px;height:21px;flex:none;opacity:.75}

/* Mobile navigation ------------------------------------------------------ */
.site-mnav{
  position:fixed;
  inset:0;
  z-index:880;
  display:none;
  color:var(--site-shell-paper);
  background:var(--site-shell-graphite);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  overflow:hidden;
  transition:opacity .3s ease,visibility 0s linear .3s;
}

.site-mnav::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:radial-gradient(70% 48% at 0 0,rgba(63,140,204,.25),transparent 66%),radial-gradient(76% 60% at 100% 100%,rgba(110,147,182,.14),transparent 68%);
}

body.site-mnav-open{overflow:hidden;overscroll-behavior:none;touch-action:none}
body.site-mnav-open .site-mnav{opacity:1;visibility:visible;pointer-events:auto;transition:opacity .3s ease}
body.site-mnav-open .topbar.glass.site-shell-header{
  color:var(--site-shell-paper);
  background:transparent;
  border-color:transparent;
  box-shadow:none;
  -webkit-backdrop-filter:none;
  backdrop-filter:none;
}
body.site-mnav-open .site-shell-header::before{opacity:0}
body.site-mnav-open .site-shell-header .site-wordmark{color:var(--site-shell-paper)}
body.site-mnav-open .site-shell-header .site-cart-btn{color:var(--site-shell-paper)}
body.site-mnav-open .site-shell-header .site-lang-switch{color:var(--site-shell-paper);border-color:rgba(241,239,234,.3)}

.site-mnav-panel{
  position:absolute;
  inset:0;
  z-index:1;
  display:flex;
  flex-direction:column;
  min-height:100%;
  padding:calc(max(18px,env(safe-area-inset-top,0px)) + 96px) clamp(22px,5vw,34px) calc(28px + env(safe-area-inset-bottom,0px));
  overflow-x:hidden;
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
}

.site-mnav-panel--root{transition:opacity .3s ease,transform .4s cubic-bezier(.22,.61,.21,1)}
.site-mnav.has-sub .site-mnav-panel--root{opacity:.24;transform:translateX(-18%);pointer-events:none}
.site-mnav-panel--sub{
  z-index:2;
  background:var(--site-shell-graphite);
  opacity:.4;
  visibility:hidden;
  pointer-events:none;
  transform:translateX(102%);
  transition:opacity .32s ease,transform .44s cubic-bezier(.22,.61,.21,1),visibility 0s linear .44s;
}

.site-mnav-panel--sub.is-active{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:none;
  transition:opacity .32s ease,transform .44s cubic-bezier(.22,.61,.21,1);
}

.site-mnav-links{display:flex;flex-direction:column;width:100%}
.site-mnav-links > :where(a,button),
.site-mnav-group{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  min-height:58px;
  padding:15px 0;
  border:0;
  border-bottom:1px solid rgba(241,239,234,.16);
  color:var(--site-shell-paper);
  background:transparent;
  font-size:clamp(22px,6vw,27px);
  font-weight:550;
  letter-spacing:-.015em;
  line-height:1.2;
  text-align:left;
  cursor:pointer;
}

.site-mnav-links > :where(a,button)::after,
.site-mnav-group::after{content:"›";flex:none;margin-left:20px;color:rgba(241,239,234,.48);font-size:29px;font-weight:400;line-height:1}
.site-mnav-links > a:not([data-site-panel-open])::after{content:""}

.site-mnav-back{
  display:inline-flex;
  align-items:center;
  align-self:flex-start;
  gap:10px;
  min-height:44px;
  margin:0 0 9px -9px;
  padding:0 9px;
  border:0;
  border-radius:999px;
  color:rgba(241,239,234,.66);
  background:transparent;
  font-size:15px;
  font-weight:650;
  cursor:pointer;
}

.site-mnav-back::before{content:"←";font-size:20px;font-weight:400}
.site-mnav-back:hover{color:#fff;background:rgba(255,255,255,.07)}
.site-mnav-title{margin:0 0 14px;color:var(--site-shell-paper);font-size:clamp(28px,7vw,36px);font-weight:650;letter-spacing:-.025em;line-height:1.08}
.site-mnav-media{display:block;width:100%;aspect-ratio:16/8.5;margin:2px 0 14px;border-radius:16px;object-fit:cover;background:#26282b}
.site-mnav-panel--sub .site-mnav-links > a{font-size:17px;font-weight:650;letter-spacing:-.005em}
.site-mnav-cta{width:100%;margin-top:auto;padding-top:0}

/* Header offset for pages whose own first section did not reserve space. */
.site-shell-spacer{display:block;width:100%;height:114px;pointer-events:none}
.site-shell-spacer--overlay{display:none}
body[data-site-shell-offset="false"] > .site-shell-spacer{display:none}

body.site-shell-page--404{
  display:block;
  min-height:100%;
  padding:0;
}

body.site-shell-page--404 > main{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  min-height:calc(100vh - 114px);
  padding:clamp(64px,10vw,120px) 24px;
  text-align:center;
}

/* Footer ----------------------------------------------------------------- */
.site-footer{
  position:relative;
  display:block;
  width:100%;
  max-width:none;
  margin:0;
  padding:64px 0 40px;
  border:0;
  color:var(--site-shell-paper);
  background-color:var(--site-shell-graphite);
  background-image:radial-gradient(78% 58% at 8% 16%,rgba(63,140,204,.24),transparent 58%),radial-gradient(72% 58% at 92% 84%,rgba(110,147,182,.18),transparent 55%),radial-gradient(62% 48% at 55% 44%,rgba(63,140,204,.10),transparent 62%);
  font-size:16px;
  line-height:1.5;
  text-align:left;
  isolation:isolate;
}

.site-footer::before{content:none}
.site-footer--standalone{border-radius:44px 44px 0 0;overflow:hidden}
.darkband > .site-footer{
  background-color:transparent;
  background-image:none;
}

.site-footer-inner{width:100%;max-width:1380px;margin:0 auto;padding:0 28px}
.site-ftr-top{display:grid;grid-template-columns:1.3fr repeat(3,1fr);gap:44px 32px}
.site-ftr-brand{display:flex;align-items:flex-start;flex-direction:column;min-width:0}
.site-footer .site-wordmark{margin-bottom:18px;color:var(--site-shell-paper);font-size:17px;gap:14px}
.site-footer .site-wm-key{height:44px}
.site-ftr-mail{
  color:var(--site-shell-azure-soft)!important;
  font-size:15px;
  font-weight:650;
  border-bottom:1.5px solid transparent;
  transition:color .2s ease,border-color .2s ease;
}
.site-ftr-mail:hover{color:#fff!important;border-color:currentColor}

.site-ftr-social{display:flex;align-items:center;gap:11px;margin-top:16px}
.site-ftr-social a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  border:1px solid rgba(241,239,234,.28);
  border-radius:999px;
  color:var(--site-shell-paper);
  transition:background-color .2s ease,border-color .2s ease;
}
.site-ftr-social a:hover{border-color:currentColor;background:rgba(241,239,234,.08)}
.site-ftr-social svg{display:block;width:18px;height:18px}

.site-ftr-col{display:flex;flex-direction:column;min-width:0}
.site-ftr-toggle{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  margin:0 0 16px;
  padding:0;
  border:0;
  color:rgba(241,239,234,.42);
  background:transparent;
  font-size:14.5px;
  font-weight:550;
  letter-spacing:.04em;
  text-align:left;
  cursor:default;
}
.site-ftr-links{display:flex;flex-direction:column;overflow:hidden}
.site-ftr-links a{
  width:fit-content;
  padding:7px 0;
  color:rgba(241,239,234,.75);
  font-size:16px;
  font-weight:500;
  transition:color .2s ease;
}
.site-ftr-links a:hover{color:#fff}

.site-pay-row{display:flex;align-items:center;flex-wrap:wrap;gap:10px;margin-top:40px}
.site-pay-row img{display:block;width:auto;height:34px;max-width:100%}
.site-ftr-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px 24px;
  margin-top:56px;
  padding-top:28px;
  border-top:1px solid rgba(241,239,234,.16);
}
.site-ftr-bottom span{color:rgba(241,239,234,.48);font-size:14.5px;font-weight:500}

@media (max-width:1160px){
  .site-nav-cd{display:none}
  .site-topnav{gap:24px}
  .site-topnav > a{font-size:17px}
  .site-nav-cta{padding:0 23px;font-size:16px}
}

@media (max-width:999px){
  .site-topnav,
  .site-nav-cta,
  .site-mega{display:none!important}
  .site-burger{display:flex}
  .site-mnav{display:block}
  .site-ftr-top{grid-template-columns:1fr 1fr;row-gap:40px}
}

@media (max-width:767px){
  .topbar.glass.site-shell-header{top:max(12px,env(safe-area-inset-top,0px));border-radius:21px}
  .site-shell-inner{height:66px;padding:0 9px 0 18px;gap:9px}
  .site-wordmark{gap:12px;font-size:18px}
  .site-wm-key{height:46px}
  .site-topbar-right{gap:5px}
  .site-cart-btn{width:39px;height:39px}
  .site-lang-switch{min-width:39px;min-height:36px;padding:0 9px;font-size:12.5px}
  .site-burger{width:42px;height:42px}
  .site-shell-spacer{height:94px}
  .site-mnav-panel{padding-top:calc(max(12px,env(safe-area-inset-top,0px)) + 86px)}
  .site-footer{padding-top:52px}
  .site-footer--standalone{border-radius:28px 28px 0 0}
  .site-footer-inner{padding-right:24px;padding-left:24px}
}

@media (max-width:560px){
  .site-ftr-top{grid-template-columns:1fr;row-gap:0}
  .site-ftr-brand{margin-bottom:22px}
  .site-ftr-col{border-top:1px solid rgba(241,239,234,.16)}
  .site-ftr-toggle{
    min-height:58px;
    margin:0;
    padding:0 2px;
    color:rgba(241,239,234,.68);
    cursor:pointer;
  }
  .site-ftr-toggle::after{
    content:"";
    width:8px;
    height:8px;
    margin-right:5px;
    border-right:1.6px solid rgba(241,239,234,.62);
    border-bottom:1.6px solid rgba(241,239,234,.62);
    transform:rotate(45deg) translateY(-2px);
    transition:transform .28s cubic-bezier(.4,0,.2,1);
  }
  .site-ftr-toggle[aria-expanded="true"]::after{transform:rotate(225deg) translate(-2px,-2px)}
  .site-shell-js .site-ftr-links{
    max-height:30rem;
    opacity:1;
    visibility:visible;
    transition:max-height .34s cubic-bezier(.4,0,.2,1),opacity .24s ease,visibility 0s;
  }
  .site-shell-js .site-ftr-toggle[aria-expanded="false"] + .site-ftr-links{
    max-height:0;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:max-height .3s cubic-bezier(.4,0,.2,1),opacity .18s ease,visibility 0s linear .3s;
  }
  .site-ftr-links a{width:100%;padding:9px 2px}
  .site-ftr-links a:last-child{padding-bottom:17px}
  .site-pay-row{margin-top:34px}
  .site-ftr-bottom{align-items:flex-start;flex-direction:column;margin-top:42px}
}

@media (max-width:390px){
  .site-shell-inner{padding-left:13px}
  .site-wordmark{gap:9px;font-size:16px}
  .site-wm-key{height:42px}
  .site-lang-switch{min-width:36px;padding:0 7px}
  .site-burger{width:38px}
}

@media (max-width:350px){
  .site-shell-inner{padding-right:6px;padding-left:10px;gap:6px}
  .site-wordmark{gap:6px;font-size:14px}
  .site-wm-key{height:38px}
  .site-topbar-right{gap:3px}
  .site-cart-btn{display:flex;width:34px;height:36px}
  .site-cart-btn svg{width:19px;height:19px}
  .site-lang-switch{min-width:34px;min-height:34px;padding:0 5px;font-size:11.5px}
  .site-burger{width:36px;height:38px}
}

@media (prefers-reduced-motion:reduce){
  .site-shell-header *,
  .site-mnav *,
  .site-footer *{
    scroll-behavior:auto!important;
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
    transition-duration:.01ms!important;
  }
}

@media (prefers-contrast:more){
  .topbar.glass.site-shell-header{background:rgba(255,255,255,.92);border-color:var(--site-shell-ink)}
  .topbar.glass.site-shell-header.nav-dark{background:rgba(19,18,17,.94);border-color:var(--site-shell-paper)}
  .site-ftr-links a{color:rgba(255,255,255,.9)}
}
