/* Exact header and footer presentation copied from the approved homepage. */
body.kk-home-shell-exact {
  --brand-red: #d9362b;
  --brand-red-dark: #b92b23;
  --ink: #101010;
  --white: #ffffff;
  --line: #d9d9d5;
  --header-height: 76px;
  --shell: min(1460px, calc(100% - 56px));
  --font: "Archivo", Arial, sans-serif;
  --ease: cubic-bezier(.22,.75,.2,1);
}

body.kk-home-shell-exact.menu-open { overflow: hidden; }
body.kk-home-shell-exact .shell { width: var(--shell); margin-inline: auto; }
body.kk-home-shell-exact .utility,
body.kk-home-shell-exact .site-header,
body.kk-home-shell-exact .site-header__inner,
body.kk-home-shell-exact .header-actions,
body.kk-home-shell-exact .site-header a,
body.kk-home-shell-exact .site-header button,
body.kk-home-shell-exact .mobile-nav,
body.kk-home-shell-exact .mobile-nav a,
body.kk-home-shell-exact .mobile-nav button,
body.kk-home-shell-exact .site-footer,
body.kk-home-shell-exact .footer-grid,
body.kk-home-shell-exact .footer-grid > *,
body.kk-home-shell-exact .footer-bottom,
body.kk-home-shell-exact .site-footer a,
body.kk-home-shell-exact .site-footer button {
  font-family: var(--font);
  line-height: normal;
}

/* Header */
body.kk-home-shell-exact .utility {
  min-height: 29px;
  padding: 6px 16px;
  display: grid;
  place-items: center;
  background: var(--brand-red);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .085em;
  text-align: center;
  text-transform: uppercase;
}
body.kk-home-shell-exact .site-header {
  position: relative;
  z-index: 50;
  display: block;
  height: var(--header-height);
  min-height: 0;
  margin: 0;
  padding: 0;
  background: var(--white);
  border-bottom: 1px solid rgba(16,16,16,.14);
  grid-template-columns: none;
}
body.kk-home-shell-exact .site-header__inner {
  width: var(--shell);
  max-width: none;
  height: 100%;
  margin-inline: auto;
  padding: 0;
  display: grid;
  line-height: normal;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 38px;
}
body.kk-home-shell-exact .brand {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: var(--ink);
  text-decoration: none;
  font-size: 30px;
  line-height: 30px !important;
  height: 30px;
  font-weight: 900;
  letter-spacing: -.06em;
  white-space: nowrap;
}
body.kk-home-shell-exact .brand strong { color: var(--brand-red); }
body.kk-home-shell-exact .brand small {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
}
body.kk-home-shell-exact .desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 29px;
  flex-wrap: nowrap;
}
body.kk-home-shell-exact .desktop-nav a {
  position: relative;
  padding: 11px 0 8px;
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  line-height: normal;
  font-weight: 700;
  white-space: normal;
}
body.kk-home-shell-exact .desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--ink);
  transition: right .18s var(--ease);
}
body.kk-home-shell-exact .desktop-nav a:hover::after,
body.kk-home-shell-exact .desktop-nav a:focus-visible::after { right: 0; }
body.kk-home-shell-exact .header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
body.kk-home-shell-exact .cart-link {
  color: var(--ink);
  text-decoration: none;
  font-size: 12px;
  line-height: normal;
  font-weight: 700;
  white-space: nowrap;
}
body.kk-home-shell-exact .header-cta {
  min-height: 45px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--white);
  text-decoration: none;
  font-size: 11px;
  line-height: normal;
  font-weight: 800;
  height: 45px;
  white-space: normal;
  letter-spacing: .045em;
  text-transform: uppercase;
  transition: background .18s var(--ease), border-color .18s var(--ease);
}
body.kk-home-shell-exact .header-cta:hover {
  background: var(--brand-red);
  border-color: var(--brand-red);
}
body.kk-home-shell-exact .menu-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--ink);
  background: var(--white);
  color: var(--ink);
}
body.kk-home-shell-exact .menu-toggle span {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: top .18s var(--ease), transform .18s var(--ease);
}
body.kk-home-shell-exact .menu-toggle span:first-child { top: 17px; }
body.kk-home-shell-exact .menu-toggle span:last-child { top: 27px; }
body.kk-home-shell-exact .menu-toggle[aria-expanded="true"] span:first-child { top: 22px; transform: rotate(45deg); }
body.kk-home-shell-exact .menu-toggle[aria-expanded="true"] span:last-child { top: 22px; transform: rotate(-45deg); }

/* Mobile navigation */
body.kk-home-shell-exact .mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
}
body.kk-home-shell-exact .mobile-nav.open { pointer-events: auto; }
body.kk-home-shell-exact .mobile-nav__shade {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0,0,0,.64);
  opacity: 0;
  transition: opacity .2s var(--ease);
}
body.kk-home-shell-exact .mobile-nav.open .mobile-nav__shade { opacity: 1; }
body.kk-home-shell-exact .mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(88vw, 420px);
  padding: 24px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  color: var(--ink);
  transform: translateX(100%);
  transition: transform .24s var(--ease);
  overflow: auto;
}
body.kk-home-shell-exact .mobile-nav.open .mobile-nav__panel { transform: none; }
body.kk-home-shell-exact .mobile-nav__top {
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body.kk-home-shell-exact .mobile-nav__brand {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.04em;
}
body.kk-home-shell-exact .mobile-nav__close {
  width: 43px;
  height: 43px;
  border: 1px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  font-size: 24px;
}
body.kk-home-shell-exact .mobile-nav nav { padding-top: 11px; }
body.kk-home-shell-exact .mobile-nav nav a {
  min-height: 58px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
  text-decoration: none;
  font-size: 21px;
  font-weight: 700;
}
body.kk-home-shell-exact .mobile-nav nav a:hover { color: var(--brand-red); }
body.kk-home-shell-exact .mobile-nav__cta {
  margin-top: auto;
  min-height: 54px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Footer */
body.kk-home-shell-exact .site-footer {
  padding: 66px 0 27px;
  background: var(--brand-red);
  color: var(--white);
}
body.kk-home-shell-exact .footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .75fr .75fr 1.4fr;
  gap: 54px;
  padding: 0 0 66px;
}
body.kk-home-shell-exact .footer-grid > div {
  display: block;
  flex-direction: row;
  gap: normal;
}
body.kk-home-shell-exact .footer-brand {
  font-size: 29px;
  line-height: normal;
  font-weight: 900;
  letter-spacing: -.05em;
}
body.kk-home-shell-exact .footer-intro {
  max-width: 300px;
  margin: 17px 0 0;
  color: rgba(255,255,255,.8);
  font-size: 15px;
  line-height: 1.55;
}
body.kk-home-shell-exact .footer-col h3 {
  margin: 0 0 18px;
  font-size: 10px;
  line-height: normal;
  letter-spacing: .11em;
  text-transform: uppercase;
}
body.kk-home-shell-exact .footer-col a {
  display: block;
  width: max-content;
  margin: 11px 0;
  color: rgba(255,255,255,.84);
  text-decoration: none;
  font-size: 16px;
  line-height: normal;
}
body.kk-home-shell-exact .footer-col a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}
body.kk-home-shell-exact .footer-action h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 60px);
  line-height: .92;
  letter-spacing: -.055em;
  font-weight: 800;
}
body.kk-home-shell-exact .footer-action .button {
  min-height: 53px;
  padding: 0 20px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
  transition: background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
  margin-top: 24px;
  position: static;
  width: auto;
}
body.kk-home-shell-exact .footer-action .button span:last-child { transition: transform .18s var(--ease); }
body.kk-home-shell-exact .footer-action .button:hover span:last-child { transform: translateX(4px); }
body.kk-home-shell-exact .footer-action .button--dark {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
body.kk-home-shell-exact .footer-action .button--dark:hover {
  background: #333;
  border-color: #333;
}
body.kk-home-shell-exact .footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.36);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255,255,255,.76);
  font-size: 12px;
}

@media (max-width: 1120px) {
  body.kk-home-shell-exact { --shell: min(calc(100% - 40px), 1460px); }
  body.kk-home-shell-exact .desktop-nav,
  body.kk-home-shell-exact .cart-link,
  body.kk-home-shell-exact .header-cta { display: none; }
  body.kk-home-shell-exact .header-cta { height: auto; }
  body.kk-home-shell-exact .menu-toggle { display: block; }
  body.kk-home-shell-exact .mobile-nav { display: block; }
  body.kk-home-shell-exact .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  body.kk-home-shell-exact .footer-action { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  body.kk-home-shell-exact {
    --header-height: 70px;
    --shell: calc(100% - 28px);
  }
  body.kk-home-shell-exact .utility { min-height: 27px; font-size: 9px; }
  body.kk-home-shell-exact .site-header { height: var(--header-height); }
  body.kk-home-shell-exact .footer-grid { grid-template-columns: 1fr 1fr; }
  body.kk-home-shell-exact .footer-action { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  body.kk-home-shell-exact .footer-grid { grid-template-columns: 1fr; }
  body.kk-home-shell-exact .footer-action { grid-column: auto; }
  body.kk-home-shell-exact .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
