.tk-usp,
.tk-nav,
.tk-nav-utility {
  font-family: Manrope, Arial, sans-serif;
}

.tk-usp *,
.tk-nav *,
.tk-nav-utility *,
.tk-usp *::before,
.tk-nav *::before,
.tk-nav-utility *::before,
.tk-usp *::after,
.tk-nav *::after,
.tk-nav-utility *::after {
  box-sizing: border-box;
}

.tk-usp {
  max-height: 40px;
  overflow: hidden;
  color: var(--tk-paper, #f7f6f1);
  background: var(--tk-ink, #111311);
  transition: max-height .2s ease, opacity .2s ease;
}

.tk-usp__inner {
  display: flex;
  width: min(1800px, calc(100% - clamp(32px, 4vw, 80px)));
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
}

.tk-usp__inner > * {
  position: relative;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding-inline: clamp(18px, 2.5vw, 44px);
  color: inherit;
  font: 700 10px/1.3 'Space Mono', monospace;
  letter-spacing: .02em;
  text-align: center;
  text-decoration: none;
}

.tk-site-header .tk-usp__inner a {
  color: inherit;
}

.tk-usp__inner > * + *::before {
  position: absolute;
  top: 11px;
  bottom: 11px;
  left: 0;
  width: 1px;
  background: rgba(247, 246, 241, .28);
  content: "";
}

.tk-usp__inner a:hover,
.tk-usp__inner a:focus-visible {
  color: var(--tk-mint, #79d7c3);
  text-decoration: none;
}

.tk-site-header.is-compact .tk-usp {
  max-height: 0;
  opacity: 0;
}

.tk-site-header .tk-nav {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
  color: var(--tk-ink, #111311);
}

/* On desktop the panel hangs off the header's bottom edge, so the nav must not
   be the positioning context — its own bottom sits a little higher. The mobile
   drawer still needs the nav positioned, so this applies only above 900px. */
@media (min-width: 901px) {
  .tk-site-header .tk-nav {
    position: static;
  }
}

.tk-nav-panel[hidden],
.tk-nav-backdrop[hidden],
.tk-utility-dropdown[hidden],
.tk-nav-mobile-level[hidden] {
  display: none !important;
}

.tk-site-header .tk-nav-trigger,
.tk-site-header .tk-nav-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--tk-ink, #111311);
  background: transparent;
  border: 0;
  font: 700 13px/1.3 Manrope, Arial, sans-serif;
  text-decoration: none;
  white-space: nowrap;
}

.tk-site-header .tk-nav-trigger {
  gap: 8px;
  padding: 0;
  cursor: pointer;
}

.tk-nav-trigger__menu {
  display: none;
}

.tk-site-header .tk-nav-trigger__chevron,
.tk-site-header .tk-nav-trigger__menu,
.tk-nav-panel svg,
.tk-nav-mobile-links svg,
.tk-nav-utility svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tk-site-header .tk-nav-trigger__chevron {
  width: 16px;
  height: 16px;
  transition: transform .2s ease;
}

.tk-site-header .tk-nav-trigger[aria-expanded="true"] .tk-nav-trigger__chevron {
  transform: rotate(180deg);
}

.tk-site-header .tk-nav-trigger:hover,
.tk-site-header .tk-nav-trigger:focus-visible,
.tk-site-header .tk-nav-link:hover,
.tk-site-header .tk-nav-link:focus-visible {
  color: var(--tk-mint-text, #1f6f60);
  text-decoration: none;
}

/* Anchored to the header instead of a measured offset. The header animates
   its height when it turns compact, so a value read during that transition
   left the panel floating too high — and the header's backdrop-filter made it
   the containing block for "fixed" anyway. top: 100% is its bottom edge,
   whatever height it happens to have. */
.tk-nav-panel {
  position: absolute;
  z-index: 230;
  top: 100%;
  left: 50%;
  width: min(1800px, calc(100% - clamp(32px, 4vw, 80px)));
  max-height: calc(100dvh - var(--tk-header-offset, 118px) - 14px);
  overflow: auto;
  color: var(--tk-ink, #111311);
  background: var(--tk-paper, #f7f6f1);
  border: 1px solid var(--tk-line, rgba(17, 19, 17, .15));
  border-top: 0;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 28px 70px rgba(17, 19, 17, .14);
  opacity: 0;
  transform: translate(-50%, -10px);
  transition: opacity .18s ease, transform .18s ease;
}

.tk-nav-panel.is-open {
  opacity: 1;
  transform: translate(-50%, 0);
}

.tk-nav-panel__inner {
  width: 100%;
  min-height: 410px;
  padding: clamp(26px, 3vw, 46px);
}

.tk-nav-panel__header,
.tk-nav-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.tk-nav-panel__header {
  margin-bottom: 30px;
}

.tk-nav-panel__header h2 {
  max-width: 820px;
  margin: 0;
  color: var(--tk-ink, #111311);
  font: 800 clamp(28px, 3vw, 48px)/1 Manrope, Arial, sans-serif;
  letter-spacing: -.06em;
  text-transform: none;
}

.tk-site-header .tk-nav-close {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 12px;
  place-items: center;
  color: var(--tk-ink, #111311);
  background: transparent;
  border: 1px solid var(--tk-line, rgba(17, 19, 17, .15));
  border-radius: 50%;
  cursor: pointer;
}

.tk-nav-panel__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .58fr);
  gap: clamp(30px, 4vw, 66px);
}

.tk-nav-section-title {
  min-height: 36px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--tk-line, rgba(17, 19, 17, .15));
}

.tk-nav-section-title h3 {
  margin: 0;
  color: var(--tk-ink, #111311);
  font: 700 11px/1.3 'Space Mono', monospace;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.tk-nav-section-title > a,
.tk-nav-section-title > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--tk-mint-text, #1f6f60);
  font: 700 10px/1.2 'Space Mono', monospace;
  text-decoration: none;
}

.tk-nav-categories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  gap: 1px;
  background: var(--tk-line, rgba(17, 19, 17, .15));
  border: 1px solid var(--tk-line, rgba(17, 19, 17, .15));
  border-radius: 18px;
}

.tk-nav-category {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px;
  grid-template-rows: auto 1fr;
  min-height: 124px;
  gap: 14px;
  padding: 18px;
  color: var(--tk-ink, #111311);
  background: var(--tk-paper, #f7f6f1);
  text-decoration: none;
  transition: background-color .16s ease;
}

.tk-nav-category:hover,
.tk-nav-category:focus-visible {
  color: var(--tk-ink, #111311);
  background: var(--tk-mint, #79d7c3);
  text-decoration: none;
}

.tk-nav-category > span {
  grid-column: 1 / -1;
  color: var(--tk-mint-text, #1f6f60);
  font: 700 9px/1 'Space Mono', monospace;
}

.tk-nav-category > strong {
  align-self: end;
  color: inherit;
  font: 750 14px/1.25 Manrope, Arial, sans-serif;
}

.tk-nav-category > svg {
  align-self: end;
}

.tk-nav-products {
  display: grid;
  overflow: hidden;
  gap: 1px;
  background: var(--tk-line, rgba(17, 19, 17, .15));
  border: 1px solid var(--tk-line, rgba(17, 19, 17, .15));
  border-radius: 18px;
}

.tk-nav-product,
.tk-nav-mobile-product {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) 22px;
  min-width: 0;
  min-height: 112px;
  align-items: center;
  gap: 14px;
  padding: 12px;
  color: var(--tk-ink, #111311);
  background: var(--tk-paper, #f7f6f1);
  text-decoration: none;
  transition: background-color .16s ease;
}

.tk-nav-product:hover,
.tk-nav-product:focus-visible,
.tk-nav-mobile-product:hover,
.tk-nav-mobile-product:focus-visible {
  color: var(--tk-ink, #111311);
  background: var(--tk-mint, #79d7c3);
  text-decoration: none;
}

.tk-nav-product img,
.tk-nav-mobile-product img {
  display: block;
  width: 86px;
  height: 86px;
  object-fit: cover;
  background: #e8ebe8;
  border-radius: 12px;
}

.tk-nav-product > span,
.tk-nav-mobile-product > span {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.tk-nav-product small,
.tk-nav-mobile-product small {
  overflow: hidden;
  color: var(--tk-mint-text, #1f6f60);
  font: 700 9px/1.3 'Space Mono', monospace;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.tk-nav-product strong,
.tk-nav-mobile-product strong {
  display: -webkit-box;
  overflow: hidden;
  color: inherit;
  font: 750 13px/1.25 Manrope, Arial, sans-serif;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tk-nav-product b,
.tk-nav-mobile-product b {
  color: inherit;
  font: 700 10px/1.2 'Space Mono', monospace;
}

.tk-nav-mobile-root,
.tk-nav-mobile-level,
.tk-nav-mobile-links {
  display: none;
}

.tk-nav-custom {
  margin-top: 26px;
}

.tk-nav-backdrop {
  display: none;
}

.tk-nav-utility {
  display: flex;
  align-items: center;
  gap: 5px;
}

.tk-language-menu,
.tk-account-menu {
  position: relative;
}

.tk-site-header .tk-utility-button {
  display: inline-flex;
  min-width: 46px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  color: var(--tk-ink, #111311);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font: 700 10px/1 'Space Mono', monospace;
  cursor: pointer;
}

.tk-site-header .tk-utility-button:hover,
.tk-site-header .tk-utility-button:focus-visible,
.tk-site-header .tk-utility-button[aria-expanded="true"] {
  color: var(--tk-mint-text, #1f6f60);
  background: rgba(121, 215, 195, .16);
}

.tk-site-header .tk-account-trigger svg {
  width: 22px;
  height: 22px;
}

.tk-site-header .tk-utility-chevron {
  width: 13px;
  height: 13px;
}

.tk-utility-dropdown {
  position: absolute;
  z-index: 250;
  top: calc(100% + 8px);
  right: 0;
  width: 280px;
  overflow: hidden;
  padding: 8px;
  color: var(--tk-ink, #111311);
  background: var(--tk-paper, #f7f6f1);
  border: 1px solid var(--tk-line, rgba(17, 19, 17, .15));
  border-radius: 18px;
  box-shadow: 0 20px 46px rgba(17, 19, 17, .14);
}

.tk-language-panel {
  width: 220px;
}

/* Items keep one radius at all times, concentric with the panel
   (18px panel − 8px padding = 10px), so hover never changes their shape.
   The #header prefix is needed to outrank the parent theme's
   "#header a:hover" and the header shell's own link hover colour. */
body #header .tk-site-header .tk-utility-dropdown > a,
.tk-utility-dropdown > a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 12px;
  color: var(--tk-ink, #111311);
  border: 0;
  border-radius: 10px;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color .15s ease;
}

body #header .tk-site-header .tk-utility-dropdown > a svg {
  width: 16px;
  height: 16px;
  color: var(--tk-muted, #626560);
  transition: transform .15s ease, color .15s ease;
}

body #header .tk-site-header .tk-utility-dropdown > a:hover,
body #header .tk-site-header .tk-utility-dropdown > a:focus-visible,
body #header .tk-site-header .tk-utility-dropdown > a[aria-current="page"] {
  color: var(--tk-ink, #111311);
  background: var(--tk-off, #eeece5);
  text-decoration: none;
}

body #header .tk-site-header .tk-utility-dropdown > a:hover svg,
body #header .tk-site-header .tk-utility-dropdown > a:focus-visible svg {
  color: var(--tk-ink, #111311);
  transform: translateX(2px);
}

body #header .tk-site-header .tk-utility-dropdown > a:focus-visible {
  outline: 2px solid var(--tk-mint-deep, #2b8b78);
  outline-offset: -2px;
}

.tk-language-panel > a span {
  color: var(--tk-muted, #626560);
  font-weight: 500;
}

.tk-account-panel__heading {
  display: grid;
  gap: 3px;
  margin: 0 0 6px;
  padding: 10px 12px 14px;
  border-bottom: 1px solid var(--tk-line, rgba(17, 19, 17, .15));
}

.tk-account-panel__heading span {
  color: var(--tk-muted, #626560);
  font: 700 9px/1.3 'Space Mono', monospace;
  text-transform: uppercase;
}

.tk-account-panel__heading strong {
  font-size: 16px;
}

body #header .tk-site-header .tk-account-panel > a.is-logout {
  position: relative;
  margin-top: 13px;
  color: var(--tk-muted, #626560);
}

body #header .tk-site-header .tk-account-panel > a.is-logout::before {
  content: '';
  position: absolute;
  top: -7px;
  right: 4px;
  left: 4px;
  height: 1px;
  background: var(--tk-line, rgba(17, 19, 17, .15));
}

body #header .tk-site-header .tk-account-panel > a.is-logout:hover {
  color: var(--tk-ink, #111311);
}

body.tk-nav-open {
  overflow: hidden;
}

@media (min-width: 901px) {
  .tk-nav:hover .tk-nav-trigger,
  .tk-account-menu:hover .tk-account-trigger,
  .tk-language-menu:hover .tk-language-trigger {
    color: var(--tk-mint-text, #1f6f60);
  }
}

@media (max-width: 1280px) and (min-width: 901px) {
  .tk-site-header .tk-nav {
    gap: 18px;
  }

  .tk-site-header .tk-nav-link:nth-of-type(n+2) {
    display: none;
  }

  .tk-nav-categories {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .tk-usp {
    display: none;
  }

  .tk-site-header .tk-nav {
    display: flex !important;
    width: 44px;
    gap: 0;
  }

  .tk-site-header .tk-nav-link {
    display: none;
  }

  .tk-site-header .tk-nav-trigger {
    display: grid;
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 10px;
    place-items: center;
    border: 1px solid var(--tk-line, rgba(17, 19, 17, .15));
    border-radius: 50%;
  }

  .tk-nav-trigger > span,
  .tk-nav-trigger__chevron {
    position: absolute;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .tk-nav-trigger__menu {
    display: block;
  }

  .tk-nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(100vw, 480px);
    max-width: 100vw;
    max-height: none;
    height: 100dvh;
    box-sizing: border-box;
    overflow-x: hidden;
    overscroll-behavior: contain;
    border: 0;
    border-radius: 26px 0 0 26px;
    opacity: 1;
    transform: translateX(100%);
    transition: transform .22s ease;
  }

  .tk-nav-panel.is-open {
    transform: translateX(0);
  }

  .tk-nav-panel:not(.is-open) {
    visibility: hidden;
    pointer-events: none;
  }

  .tk-nav-panel__inner {
    min-height: 100%;
    padding: 22px 18px 34px;
  }

  .tk-nav-panel__header {
    margin-bottom: 22px;
  }

  .tk-nav-panel__header h2 {
    max-width: 300px;
    font-size: clamp(25px, 8vw, 36px);
  }

  .tk-nav-panel__content {
    display: none;
  }

  .tk-nav-mobile-root,
  .tk-nav-mobile-level {
    display: block;
  }

  .tk-nav-mobile-categories {
    display: grid;
    border-top: 1px solid var(--tk-line, rgba(17, 19, 17, .15));
  }

  .tk-nav-mobile-categories > button {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr) 22px;
    min-height: 58px;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    color: var(--tk-ink, #111311);
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--tk-line, rgba(17, 19, 17, .15));
    text-align: left;
    cursor: pointer;
  }

  .tk-nav-mobile-categories > button > span {
    color: var(--tk-mint-text, #1f6f60);
    font: 700 9px/1 'Space Mono', monospace;
  }

  .tk-nav-mobile-categories > button > strong {
    font-size: 14px;
  }

  .tk-nav-mobile-popular {
    margin-top: 28px;
  }

  .tk-nav-mobile-product {
    grid-template-columns: 72px minmax(0, 1fr) 20px;
    min-height: 94px;
    margin-bottom: 1px;
    padding: 10px;
    border-bottom: 1px solid var(--tk-line, rgba(17, 19, 17, .15));
  }

  .tk-nav-mobile-product img {
    width: 72px;
    height: 72px;
  }

  .tk-nav-mobile-level > h3 {
    margin: 22px 0 14px;
    font: 800 clamp(28px, 8vw, 38px)/1 Manrope, Arial, sans-serif;
    letter-spacing: -.05em;
  }

  .tk-nav-mobile-back,
  .tk-nav-mobile-category-cta {
    display: flex;
    min-height: 48px;
    align-items: center;
    gap: 10px;
    color: var(--tk-ink, #111311);
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--tk-line, rgba(17, 19, 17, .15));
    font: 700 12px/1.3 Manrope, Arial, sans-serif;
    text-decoration: none;
    cursor: pointer;
  }

  .tk-nav-mobile-category-cta {
    justify-content: space-between;
    margin-top: 14px;
  }

  .tk-nav-mobile-links {
    display: grid;
    margin-top: 28px;
    border-top: 1px solid var(--tk-line, rgba(17, 19, 17, .15));
  }

  .tk-nav-mobile-links a {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--tk-ink, #111311);
    border-bottom: 1px solid var(--tk-line, rgba(17, 19, 17, .15));
    font: 700 13px/1.3 Manrope, Arial, sans-serif;
    text-decoration: none;
  }

  .tk-nav-backdrop {
    position: fixed;
    z-index: 220;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    background: rgba(17, 19, 17, .48);
    border: 0;
    opacity: 0;
    transition: opacity .22s ease;
  }

  .tk-nav-backdrop.is-open {
    opacity: 1;
  }

  .tk-language-menu {
    display: none;
  }

  .tk-site-header .tk-utility-button {
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
  }

  .tk-utility-dropdown {
    position: fixed;
    z-index: 260;
    top: 66px;
    right: 8px;
    width: min(300px, calc(100vw - 16px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .tk-usp,
  .tk-nav-panel,
  .tk-nav-backdrop,
  .tk-site-header .tk-nav-trigger__chevron {
    transition: none;
  }
}

/* ------------------------------------------------------------------------
 * Dropdown in the shop's card language: separate cream cards with a 16px
 * radius, ink border and lift on hover, and the round arrow used on every
 * catalogue card (mint-deep on hover) instead of a mint flood fill.
 * --------------------------------------------------------------------- */
.tk-nav-panel {
  border-radius: 0 0 var(--tk-radius, 24px) var(--tk-radius, 24px);
}

.tk-nav-section-title > span {
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  place-items: center;
  border-radius: 999px;
  background: var(--tk-off, #eeece5);
  color: var(--tk-ink, #111311);
}

.tk-nav-section-title > a:hover,
.tk-nav-section-title > a:focus-visible {
  color: var(--tk-ink, #111311);
}

.tk-nav-categories,
.tk-nav-products {
  gap: 10px;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.tk-nav-category,
.tk-nav-product {
  border: 1px solid var(--tk-line, rgba(17, 19, 17, .15));
  border-radius: var(--tk-radius-card, 16px);
  background: var(--tk-card-cream, #fcfbf8);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.tk-nav-category {
  grid-template-columns: minmax(0, 1fr) 36px;
  min-height: 118px;
}

.tk-nav-product {
  grid-template-columns: 86px minmax(0, 1fr) 36px;
}

.tk-nav-category:hover,
.tk-nav-category:focus-visible,
.tk-nav-product:hover,
.tk-nav-product:focus-visible {
  border-color: var(--tk-ink, #111311);
  background: var(--tk-card-cream, #fcfbf8);
  box-shadow: 0 10px 24px rgba(17, 19, 17, .08);
  transform: translateY(-2px);
}

.tk-nav-category > strong {
  font: 800 16px/1.15 Manrope, Arial, sans-serif;
  letter-spacing: -.03em;
}

.tk-nav-product strong {
  letter-spacing: -.02em;
}

.tk-nav-panel .tk-nav-category > svg,
.tk-nav-panel .tk-nav-product > svg {
  box-sizing: border-box;
  width: 36px;
  height: 36px;
  padding: 9px;
  border-radius: 50%;
  background: var(--tk-ink, #111311);
  color: var(--tk-paper, #f7f6f1);
  transition: background-color .2s ease, color .2s ease;
}

.tk-nav-panel .tk-nav-category:hover > svg,
.tk-nav-panel .tk-nav-category:focus-visible > svg,
.tk-nav-panel .tk-nav-product:hover > svg,
.tk-nav-panel .tk-nav-product:focus-visible > svg {
  background: var(--tk-mint-deep, #2b8b78);
  color: var(--tk-ink, #111311);
}

.tk-nav-product img {
  border-radius: 11px;
}

.tk-site-header .tk-nav-close {
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.tk-site-header .tk-nav-close:hover,
.tk-site-header .tk-nav-close:focus-visible {
  border-color: var(--tk-ink, #111311);
  background: var(--tk-ink, #111311);
  color: var(--tk-paper, #f7f6f1);
}

/* Mobile drawer rows follow the same card treatment. */
.tk-nav-mobile-product {
  border: 1px solid var(--tk-line, rgba(17, 19, 17, .15));
  border-radius: var(--tk-radius-card, 16px);
  background: var(--tk-card-cream, #fcfbf8);
}

.tk-nav-mobile-product:hover,
.tk-nav-mobile-product:focus-visible {
  border-color: var(--tk-ink, #111311);
  background: var(--tk-card-cream, #fcfbf8);
}

.tk-nav-mobile-popular,
.tk-nav-mobile-level__products {
  display: grid;
  gap: 8px;
}
