/* KBSNEAK Header & Footer 1.1 — Nike-inspired, isolated from the active theme. */
:root {
  --kbs-hf-black: #111111;
  --kbs-hf-white: #ffffff;
  --kbs-hf-soft: #f5f5f5;
  --kbs-hf-muted: #707072;
  --kbs-hf-line: #e5e5e5;
  --kbs-hf-accent: #ff4f1f;
}

body.kbs-hf-active .elementor-location-header,
body.kbs-hf-active .elementor-location-footer,
body.kbs-hf-active header#site-header,
body.kbs-hf-active footer#site-footer,
body.kbs-hf-active > .site-header,
body.kbs-hf-active > .site-footer {
  display: none !important;
}

body.kbs-hf-lock { overflow: hidden; }

.kbs-hf-skip {
  position: fixed;
  inset: 8px auto auto 8px;
  z-index: 10050;
  padding: 10px 14px;
  color: #fff;
  background: #111;
  transform: translateY(-150%);
}

.kbs-hf-skip:focus { transform: translateY(0); }

.kbs-hf-shell,
.kbs-hf-footer {
  color: var(--kbs-hf-black);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.kbs-hf-shell *,
.kbs-hf-footer * { box-sizing: border-box; }

.kbs-hf-shell {
  position: sticky;
  top: 0;
  z-index: 10050;
  width: 100%;
  isolation: isolate;
  background: #fff;
}

.admin-bar .kbs-hf-shell { top: 32px; }

/* Main navigation */
.kbs-hf-header {
  width: 100%;
  min-height: 76px;
  background: #fff;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.kbs-hf-header.is-scrolled {
  border-color: var(--kbs-hf-line);
  box-shadow: 0 5px 18px rgba(0,0,0,.055);
}

.kbs-hf-header-inner {
  width: 100%;
  min-height: 76px;
  margin: 0 auto;
  padding: 0 clamp(28px, 3.1vw, 62px);
  display: grid;
  grid-template-columns: minmax(185px, 1fr) auto minmax(300px, 1fr);
  align-items: center;
  gap: 24px;
}

.kbs-hf-brand {
  width: 170px;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  color: inherit;
  text-decoration: none;
}

.kbs-hf-brand img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.kbs-hf-desktop-nav { justify-self: center; }

.kbs-hf-nav-list,
.kbs-hf-drawer-nav,
.kbs-hf-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.kbs-hf-nav-list {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.2vw, 42px);
}

.kbs-hf-nav-list > li {
  position: relative;
  margin: 0;
  padding: 0;
}

.kbs-hf-nav-list a {
  display: block;
  padding: 28px 0 24px;
  color: #111;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.kbs-hf-nav-list > li > a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 17px;
  left: 50%;
  height: 2px;
  background: #111;
  transition: right .18s ease, left .18s ease;
}

.kbs-hf-nav-list > li:hover > a::after,
.kbs-hf-nav-list > .current-menu-item > a::after,
.kbs-hf-nav-list > .current-menu-ancestor > a::after { right: 0; left: 0; }

.kbs-hf-nav-list .sub-menu {
  position: absolute;
  top: calc(100% - 6px);
  left: 50%;
  min-width: 220px;
  margin: 0;
  padding: 14px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--kbs-hf-line);
  border-radius: 2px;
  box-shadow: 0 18px 44px rgba(0,0,0,.11);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 7px);
  transition: opacity .18s ease, transform .18s ease;
}

.kbs-hf-nav-list li:hover > .sub-menu,
.kbs-hf-nav-list li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.kbs-hf-nav-list .sub-menu a { padding: 10px 12px; font-size: 14px; }
.kbs-hf-nav-list .sub-menu a:hover { background: var(--kbs-hf-soft); }

.kbs-hf-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 5px;
}

.kbs-hf-desktop-search {
  order: 1;
  width: clamp(180px, 15vw, 236px);
  height: 42px;
  margin: 0 5px 0 0;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f5f5f5;
  border: 0;
  border-radius: 999px;
}

.kbs-hf-desktop-search:focus-within { outline: 1px solid #c7c7c7; }

.kbs-hf-desktop-search button {
  width: 26px !important;
  height: 26px !important;
  min-width: 26px !important;
  margin: 0 !important;
  padding: 2px !important;
  color: #111 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 50% !important;
  box-shadow: none !important;
  cursor: pointer;
}

.kbs-hf-desktop-search input[type="search"] {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  color: #111;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font: inherit;
  font-size: 15px;
  outline: none;
}

.kbs-hf-desktop-search input::placeholder { color: #b1b1b3; opacity: 1; }
.kbs-hf-desktop-search input[type="hidden"] { display: none; }

.kbs-hf-icon-button,
.kbs-hf-shell button.kbs-hf-icon-button,
.kbs-hf-footer button.kbs-hf-footer-heading {
  appearance: none !important;
  -webkit-appearance: none !important;
  box-shadow: none !important;
}

.kbs-hf-icon-button,
.kbs-hf-shell button.kbs-hf-icon-button {
  position: relative;
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  margin: 0 !important;
  padding: 8px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: #111 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 50% !important;
  cursor: pointer;
  text-decoration: none !important;
  transition: background .16s ease, transform .16s ease;
}

.kbs-hf-icon-button:hover,
.kbs-hf-icon-button:focus-visible,
.kbs-hf-shell button.kbs-hf-icon-button:hover,
.kbs-hf-shell button.kbs-hf-icon-button:focus-visible {
  color: #111 !important;
  background: #f5f5f5 !important;
  outline: none;
}

.kbs-hf-icon-button:active { transform: scale(.94); }

.kbs-hf-icon-button svg,
.kbs-hf-desktop-search svg,
.kbs-hf-footer svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.kbs-hf-desktop-search svg { stroke-width: 2; }
.kbs-hf-action-heart { order: 2; }
.kbs-hf-action-cart { order: 3; }
.kbs-hf-shell button.kbs-hf-action-search { display: none !important; }
.kbs-hf-shell button.kbs-hf-action-menu { display: none !important; }

.kbs-hf-cart-count {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--kbs-hf-accent);
  border: 2px solid #fff;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

/* Promo strip sits below the navigation, matching the reference. */
.kbs-hf-announcement {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  color: #111;
  background: #f5f5f5;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
}

.kbs-hf-announcement a {
  color: #111;
  font-size: inherit;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Search overlay, used on tablet/mobile. */
.kbs-hf-search {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10010;
  padding: 22px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.kbs-hf-search.is-open { opacity: 1; visibility: visible; transform: translateY(0); }

.kbs-hf-search-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
}

.kbs-hf-search form,
.kbs-hf-search .woocommerce-product-search,
.kbs-hf-search .search-form {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.kbs-hf-search input[type="search"] {
  width: 100%;
  min-height: 50px;
  margin: 0;
  padding: 0 18px;
  color: #111;
  background: #f5f5f5;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  outline: none;
}

.kbs-hf-search input[type="search"]:focus { border-color: #111; }

.kbs-hf-search button[type="submit"] {
  min-height: 50px;
  margin: 0;
  padding: 0 24px;
  color: #fff;
  background: #111;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

/* Off-canvas menu */
.kbs-hf-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10020;
  width: min(420px, 92vw);
  padding: 24px 28px 38px;
  overflow-y: auto;
  color: #111;
  background: #fff;
  box-shadow: -18px 0 60px rgba(0,0,0,.18);
  visibility: hidden;
  transform: translateX(105%);
  transition: transform .26s cubic-bezier(.2,.75,.25,1), visibility .26s;
}

.kbs-hf-drawer.is-open { visibility: visible; transform: translateX(0); }

.kbs-hf-drawer-head {
  min-height: 54px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kbs-hf-drawer-head strong { font-size: 20px; letter-spacing: -.03em; }
.kbs-hf-drawer-nav > li { margin: 0; border-bottom: 1px solid var(--kbs-hf-line); }

.kbs-hf-drawer-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 2px;
  color: #111;
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -.03em;
  text-decoration: none;
}

.kbs-hf-drawer-nav .sub-menu {
  display: none;
  margin: -4px 0 12px;
  padding: 0 0 0 18px;
  list-style: none;
}

.kbs-hf-drawer-nav .menu-item-has-children.is-open > .sub-menu { display: block; }
.kbs-hf-drawer-nav .sub-menu a { padding: 9px 0; color: #555; font-size: 16px; font-weight: 500; }

.kbs-hf-drawer-links { margin-top: 32px; display: grid; gap: 12px; }
.kbs-hf-drawer-links a { color: #333; font-size: 15px; text-decoration: none; }

.kbs-hf-scrim {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,.44);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s;
}

.kbs-hf-scrim.is-open { opacity: 1; visibility: visible; }

/* Footer recommendation links */
.kbs-hf-footer { position: relative; z-index: 1; width: 100%; background: #fff; }
.kbs-hf-footer a { text-decoration: none; }

.kbs-hf-footer-top {
  width: min(100%, 1660px);
  margin: 0 auto;
  padding: 76px clamp(42px, 8vw, 150px) 72px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(36px, 6vw, 100px);
  color: #111;
  background: #fff;
}

.kbs-hf-footer-top h2 {
  margin: 0 0 22px;
  color: #111;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
}

.kbs-hf-footer-top li { margin: 0 0 17px; }
.kbs-hf-footer-top a { color: #707072; font-size: 16px; font-weight: 500; }
.kbs-hf-footer-top a:hover { color: #111; }

/* Main black footer */
.kbs-hf-footer-main {
  width: 100%;
  min-height: 300px;
  padding: 56px clamp(28px, 3.5vw, 70px) 42px;
  display: grid;
  grid-template-columns: 1.15fr repeat(3, .9fr) .75fr;
  gap: clamp(28px, 5vw, 88px);
  color: #7e7e82;
  background: #111;
}

.kbs-hf-footer-primary { display: grid; align-content: start; }
.kbs-hf-footer-primary ul { margin: 0; padding: 0; display: grid; gap: 18px; list-style: none; }
.kbs-hf-footer-primary li { margin: 0; padding: 0; }
.kbs-hf-footer-primary a { color: #fff; font-size: 14px; font-weight: 700; }

.kbs-hf-footer-heading,
.kbs-hf-footer button.kbs-hf-footer-heading {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 0 17px !important;
  padding: 0 !important;
  color: #fff !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  text-align: left;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  cursor: default;
}

.kbs-hf-footer-links li { margin: 0 0 12px; }
.kbs-hf-footer-links a { color: #7e7e82; font-size: 13px; }
.kbs-hf-footer-links a:hover { color: #fff; }
.kbs-hf-footer-links > a { display: inline-flex; margin-top: 1px; }

.kbs-hf-footer-social {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 12px;
}

.kbs-hf-footer-social a {
  width: 36px;
  height: 36px;
  padding: 9px;
  display: inline-flex;
  color: #111;
  background: #7e7e82;
  border-radius: 50%;
}

.kbs-hf-footer-social a:hover { color: #111; background: #fff; }

.kbs-hf-footer-bottom { color: #7e7e82; background: #111; border-top: 1px solid #232323; }

.kbs-hf-footer-bottom > div {
  width: 100%;
  min-height: 74px;
  padding: 18px clamp(28px, 3.5vw, 70px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  font-size: 12px;
}

.kbs-hf-location { display: inline-flex; align-items: center; gap: 7px; color: #fff; font-weight: 600; }
.kbs-hf-location svg { width: 16px; height: 16px; }
.kbs-hf-copyright { justify-self: start; }
.kbs-hf-footer-bottom nav ul { margin: 0; padding: 0; display: flex; align-items: center; gap: 30px; list-style: none; }
.kbs-hf-footer-bottom nav li { margin: 0; padding: 0; }
.kbs-hf-footer-bottom nav a { color: #7e7e82; }
.kbs-hf-footer-bottom nav a:hover { color: #fff; }

@media (max-width: 1180px) {
  .kbs-hf-header-inner { grid-template-columns: auto 1fr auto; }
  .kbs-hf-desktop-nav { display: none; }
  .kbs-hf-footer-main { grid-template-columns: 1.1fr repeat(3, 1fr); }
  .kbs-hf-footer-social { grid-column: 4; }
}

@media (max-width: 782px) {
  /* WordPress' mobile admin bar scrolls with the document. Keeping a 46px
     sticky offset leaves page content visible above the navigation. */
  .admin-bar .kbs-hf-shell { top: 0; }

  .kbs-hf-header,
  .kbs-hf-header-inner { min-height: 72px; }

  .kbs-hf-header-inner {
    padding: 0 14px;
    grid-template-columns: minmax(88px, 1fr) auto;
    gap: 8px;
  }

  .kbs-hf-brand { width: 112px; }
  .kbs-hf-actions { gap: 0; }
  .kbs-hf-desktop-search { display: none; }

  .kbs-hf-action-cart { order: 1; }
  .kbs-hf-shell button.kbs-hf-action-search { order: 2; display: inline-flex !important; }
  .kbs-hf-action-heart { order: 3; }
  .kbs-hf-shell button.kbs-hf-action-menu { order: 4; display: inline-flex !important; }

  .kbs-hf-icon-button,
  .kbs-hf-shell button.kbs-hf-icon-button {
    width: 39px !important;
    height: 39px !important;
    min-width: 39px !important;
    padding: 8px !important;
  }

  .kbs-hf-cart-count { top: -1px; right: -1px; }

  .kbs-hf-announcement {
    min-height: 44px;
    gap: 6px;
    padding: 7px 12px;
    font-size: 13px;
  }

  .kbs-hf-search { padding: 14px 10px; }
  .kbs-hf-search-inner { gap: 8px; }
  .kbs-hf-search form,
  .kbs-hf-search .woocommerce-product-search,
  .kbs-hf-search .search-form { grid-template-columns: 1fr; }
  .kbs-hf-search button[type="submit"] { display: none; }

  .kbs-hf-footer-top {
    padding: 46px 24px;
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .kbs-hf-footer-top h2 { font-size: 17px; }
  .kbs-hf-footer-top a { font-size: 14px; }

  .kbs-hf-footer-main {
    min-height: 0;
    padding: 42px 24px 28px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .kbs-hf-footer-primary { margin-bottom: 30px; }
  .kbs-hf-footer-primary ul { gap: 16px; }

  .kbs-hf-footer-column {
    border-top: 1px solid #2f2f2f;
  }

  .kbs-hf-footer-heading,
  .kbs-hf-footer button.kbs-hf-footer-heading {
    position: relative;
    margin: 0 !important;
    padding: 18px 28px 18px 0 !important;
    cursor: pointer;
  }

  .kbs-hf-footer-heading::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 2px;
    color: #fff;
    font-size: 22px;
    font-weight: 300;
    transform: translateY(-50%);
  }

  .kbs-hf-footer-column.is-open .kbs-hf-footer-heading::after { content: "−"; }

  .kbs-hf-footer-links {
    display: none;
    padding: 0 0 18px;
  }

  .kbs-hf-footer-column.is-open .kbs-hf-footer-links { display: block; }
  .kbs-hf-footer-social { grid-column: auto; padding-top: 26px; justify-content: flex-start; }

  .kbs-hf-footer-bottom > div {
    padding: 22px 24px 30px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .kbs-hf-footer-bottom nav ul { flex-wrap: wrap; gap: 14px 22px; }
}

@media (max-width: 390px) {
  .kbs-hf-header-inner { padding: 0 9px; }
  .kbs-hf-brand { width: 96px; }

  .kbs-hf-icon-button,
  .kbs-hf-shell button.kbs-hf-icon-button {
    width: 35px !important;
    height: 35px !important;
    min-width: 35px !important;
    padding: 7px !important;
  }

  .kbs-hf-announcement { font-size: 12px; }
  .kbs-hf-footer-top { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .kbs-hf-shell *,
  .kbs-hf-footer * { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
/* 1.6.0: populated footer, scoped against theme menu and link overrides. */
.kbs-hf-footer{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif}
.kbs-hf-service-row{max-width:1280px;margin:0 auto;padding:40px 24px;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:30px}
.kbs-hf-service-row>a{display:flex;gap:18px;align-items:center;color:#111!important}
.kbs-hf-service-row img{width:32px;height:32px;flex-shrink:0;margin:0!important}
.kbs-hf-service-row strong,.kbs-hf-service-row small{display:block}
.kbs-hf-service-row strong{font-size:16px;font-weight:600}.kbs-hf-service-row small{font-size:13px;color:#626262;margin-top:5px}
.kbs-hf-footer .kbs-hf-footer-main{grid-template-columns:1.3fr 1fr 1fr 1fr;padding:56px max(24px,calc((100% - 1232px)/2));gap:40px;min-height:0}
.kbs-hf-footer .kbs-hf-footer-wordmark{font-size:26px!important;font-weight:800;letter-spacing:-.04em;color:white!important}
.kbs-hf-footer-primary>p{font-size:14px;line-height:1.7;color:#b5b5b5;margin:18px 0 28px}
.kbs-hf-footer .kbs-hf-footer-links ul{display:block!important;list-style:none!important;padding:0!important;margin:0!important}
.kbs-hf-footer .kbs-hf-footer-links li{display:block!important;margin:0 0 14px!important}
.kbs-hf-footer .kbs-hf-footer-links a,.kbs-hf-footer .kbs-hf-footer-bottom a{color:#b5b5b5!important;font-size:14px!important;text-transform:none!important}
.kbs-hf-footer .kbs-hf-footer-links a:hover,.kbs-hf-footer .kbs-hf-footer-bottom a:hover{color:white!important;text-decoration:underline}
.kbs-hf-footer-instagram{display:inline-flex;margin-top:20px;color:#fff!important}
.kbs-hf-footer-bottom>div{padding-left:max(24px,calc((100% - 1232px)/2));padding-right:max(24px,calc((100% - 1232px)/2))}
.kbs-hf-footer-bottom nav ul{flex-wrap:wrap;gap:16px}
@media(min-width:783px){.kbs-hf-footer .kbs-hf-footer-links{display:block!important;visibility:visible!important;opacity:1!important;height:auto!important}}
@media(max-width:782px){.kbs-hf-service-row{grid-template-columns:1fr;padding:32px 24px;gap:28px}.kbs-hf-footer .kbs-hf-footer-main{display:block;padding:36px 24px}.kbs-hf-footer-primary{margin-bottom:32px}.kbs-hf-footer .kbs-hf-footer-heading{min-height:44px!important;padding:12px 0!important;margin:0!important}.kbs-hf-footer-bottom>div{display:flex;align-items:flex-start;flex-direction:column;padding:24px;gap:16px}}

/* Pointer taps stay clean; keyboard focus stays visible. */
:is([data-kbs-hf-root],.kbs-hf-footer,.kbs-cart,.kbs-info) :is(a,button,summary,[tabindex]):not([data-kbs-hero-slider]){-webkit-tap-highlight-color:transparent;touch-action:manipulation}
:is([data-kbs-hf-root],.kbs-hf-footer,.kbs-cart,.kbs-info) :is(a,button,summary,[tabindex]):not([data-kbs-hero-slider]):focus:not(:focus-visible){outline:none!important;box-shadow:none!important}
:is([data-kbs-hf-root],.kbs-hf-footer,.kbs-cart,.kbs-info) :is(a,button,summary,[tabindex]):not([data-kbs-hero-slider]):focus-visible{outline:2px solid #111!important;outline-offset:3px}

/* Interior mobile screens have a quiet, centered home link. */
.kbs-hf-mobile-wordmark{display:none}
@media(max-width:782px){
 body.kbs-hf-inner-page .kbs-hf-header-inner{display:flex;justify-content:center;padding:0 20px;min-height:64px}
 body.kbs-hf-inner-page .kbs-hf-header{min-height:64px;background:#fff;backdrop-filter:none}
 body.kbs-hf-inner-page .kbs-hf-header-inner>.kbs-hf-brand,
 body.kbs-hf-inner-page .kbs-hf-header-inner>.kbs-hf-desktop-nav,
 body.kbs-hf-inner-page .kbs-hf-header-inner>.kbs-hf-actions,
 body.kbs-hf-inner-page .kbs-hf-announcement{display:none!important}
 body.kbs-hf-inner-page .kbs-hf-mobile-wordmark{display:flex;align-items:center;justify-content:center;min-height:44px;color:#111!important;font:600 24px/1.1 "Helvetica Neue",Helvetica,Arial,sans-serif;letter-spacing:-.65px;text-decoration:none!important}
}

.kbs-hf-payments{max-width:1440px;margin:auto;padding:24px 36px;display:flex;align-items:center;gap:24px;border-top:1px solid #333;color:#aaa;font:13px/1.5 Arial,sans-serif}.kbs-hf-payments>div{display:flex;flex-wrap:wrap;gap:8px}.kbs-hf-payments img{display:block;object-fit:contain;background:#fff;border-radius:4px;width:52px;height:34px;padding:4px}.kbs-hf-payments a{margin-left:auto;color:#ccc;text-decoration:underline}@media(max-width:782px){.kbs-hf-payments{padding:24px 22px;gap:14px;flex-wrap:wrap}.kbs-hf-payments>span{width:100%}.kbs-hf-payments a{margin-left:0}}

/* Compact payment methods, with a cash-on-delivery option in the available space. */
.kbs-hf-footer .kbs-hf-payments{background:#fff;color:#333;border:0;border-radius:8px;margin:0 auto 24px;width:calc(100% - 72px);padding:20px 24px;gap:18px}
.kbs-hf-footer .kbs-hf-payments a{color:#444}
.kbs-hf-payments .kbs-hf-cod{display:flex;align-items:center;gap:10px;margin-left:auto;color:#222}
.kbs-hf-cod svg{width:32px;height:32px;flex:none}.kbs-hf-cod span{font-weight:600}.kbs-hf-cod small{display:block;font-size:11px;font-weight:400;color:#666}
.kbs-hf-action-account{display:inline-flex}
@media(max-width:782px){.kbs-hf-action-account{display:none!important}.kbs-hf-footer .kbs-hf-payments{width:calc(100% - 40px);max-width:420px;padding:18px;gap:12px}.kbs-hf-payments img{width:44px;height:30px;padding:3px}.kbs-hf-payments .kbs-hf-cod{width:100%;margin:6px 0 0;padding-top:14px;border-top:1px solid #e5e5e5}.kbs-hf-payments a{font-size:12px}}
