/**
 * Site header + footer chrome.
 *
 * Built by Rank Ray — https://rankray.com
 *
 * --r is a viewport-proportional spacing unit (1 unit = 100vw/19.2, so 100px at
 * 1920). It is scoped to the chrome elements: `rem` is always root-relative, so
 * a scoped font-size could not do this job, and changing html font-size would
 * rescale every product/page stylesheet.
 *
 * --navh is the single source of truth for bar height. It lives on `html` so
 * the header, main offset, and homepage hero all read the same value.
 */
html {
  --navh: 100px;
  --header-height: var(--navh);
  --jc-header-h: var(--navh);
  --jc-admin-bar: 0px;
  /* Phone frames: inner/PDP desktop-only heroes 350px; CCELL 3.0 j3 485px; home + split mobile art use intrinsic height. */
  --jc-banner-mobile-h: 350px;
  --jc-banner-tall-mobile-h: 485px;
  /* Fixed bottom bars (Woo coming-soon notice, etc.) — set by product-high-scroll.js */
  --jc-viewport-inset-bottom: 0px;
}

/* WP adds `admin-bar` to body on the storefront, not html. :has() keeps the
   token on html so nav, heroes, and sticky columns share one value. */
html:has(body.admin-bar),
html.admin-bar,
html.wp-toolbar {
  --jc-admin-bar: 32px;
}

@media screen and (max-width: 782px) {
  html:has(body.admin-bar),
  html.admin-bar,
  html.wp-toolbar {
    --jc-admin-bar: 46px;
  }
}

.container2 {
  margin: 0 auto;
  width: 94%;
  max-width: 1720px;
}

nav.show_nav,
footer.jc-foot {
  --r: calc(100vw / 19.2);
  font-family: "mon-r", "Montserrat", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

nav.show_nav {
  position: fixed;
  top: var(--jc-admin-bar);
  left: 0;
  z-index: 1000;
  height: var(--navh);
  width: 100%;
  background: #fff;
  box-shadow: 0 0 10px rgb(0 0 0 / 5%);
  transition: background-color 0.2s ease, box-shadow 0.2s ease, height 0.2s ease;
  transform: none !important;
}

/* Header never auto-hides on scroll — bulletproof against stale LiteSpeed bundles. */
nav.show_nav.header-hidden,
body.c-open nav.show_nav.header-hidden {
  transform: none !important;
}

nav.show_nav > .container2 {
  height: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas: "logo nav utils";
  align-items: center;
  column-gap: calc(0.2 * var(--r));
  overflow: visible;
}

.site-main {
  padding-top: 0;
}

.show_nav .logo {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  width: 150px;
  max-width: 150px;
  overflow: hidden;
  z-index: 1;
  grid-area: logo;
}

.show_nav .logo img {
  display: block;
  width: 150px;
  max-width: 150px;
  height: auto;
  object-fit: contain;
}

.show_nav .nav {
  position: static;
  height: 100%;
  min-width: 0;
  display: flex;
  justify-content: center;
  grid-area: nav;
}

.show_nav .nav > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: auto;
  max-width: 100%;
  flex-wrap: nowrap;
}

.show_nav .nav > ul > li {
  height: 100%;
}

.show_nav .nav > ul > li > a {
  color: var(--jc-color-text);
  margin: 0 calc(0.3 * var(--r));
  height: 100%;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 18px;
  font-family: "mon-m", "Montserrat", sans-serif;
  position: relative;
  white-space: nowrap;
}

.show_nav .nav > ul > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--jc-color-primary);
  transition: all 0.6s;
}

.show_nav .nav > ul > li > a:hover::after,
.show_nav .nav > ul > li.is-on > a::after,
.show_nav .nav > ul > li:hover > a::after {
  width: 100%;
  left: 0;
}

.show_nav .nav > ul > li > a:hover,
.show_nav .nav > ul > li.is-on > a {
  color: var(--jc-color-primary);
}

.show_nav .nav > i {
  position: absolute;
  width: 100%;
  height: 100vh;
  background: rgb(0 0 0 / 30%);
  left: 0;
  display: none;
  top: var(--navh);
  z-index: 90;
}

.show_nav .nav > ul > li:hover > .pro_nav2,
.show_nav .nav > ul > li.is-open > .pro_nav2 {
  display: block;
}

.show_nav .nav > ul > li:hover ~ i,
.show_nav .nav > ul > li.is-open ~ i,
.show_nav .nav:has(li:hover) > i,
.show_nav .nav:has(li.is-open) > i {
  display: block;
}

.show_nav .pro_nav2 {
  display: none;
  position: absolute;
  top: var(--navh);
  left: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  white-space: normal;
}

.show_nav .pro_nav_tab2_con.container2 {
  width: 72.9%;
  max-width: none;
  margin: 0 auto;
}

.show_nav .pro_nav_tab {
  height: calc(1.2 * var(--r));
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #ddd;
}

.show_nav .pro_nav_tab a {
  margin: 0 calc(0.47 * var(--r));
  color: var(--jc-color-text);
  font-size: 16px;
}

.show_nav .pro_nav_tab a:hover,
.show_nav .pro_nav_tab a.on {
  color: #111;
  font-weight: 600;
}

.show_nav .pro_nav_tab--cols {
  height: auto;
  min-height: calc(1.2 * var(--r));
  padding: calc(0.45 * var(--r)) calc(0.75 * var(--r));
  justify-content: flex-start;
  align-items: flex-start;
  gap: calc(0.9 * var(--r));
  flex-wrap: wrap;
}

.show_nav .pro_nav_tab__col {
  min-width: 9.5rem;
}

.show_nav .pro_nav_tab__heading {
  display: block;
  margin: 0 0 calc(0.22 * var(--r));
  color: #111;
  font-weight: 600;
}

.show_nav .pro_nav_tab__sub a {
  display: block;
  margin: 0 0 calc(0.14 * var(--r));
  font-size: 14px;
}

.show_nav .pro_nav_tab__grand {
  padding-left: 0.65rem;
  font-size: 13px;
  color: var(--jc-color-text);
}

.show_nav .pro_nav_tab2_box {
  background: #fff;
  padding-bottom: calc(0.75 * var(--r));
}

.show_nav .pro_nav_tab2_con {
  display: none;
}

.show_nav .pro_nav_tab2_con.on {
  display: block;
}

.show_nav .pro_nav_tab2_nr {
  display: flex;
  justify-content: center;
}

.show_nav .pro_nav_tab2_nr {
  gap: var(--jc-product-box-mega-gap);
}

.show_nav .pro_nav_tab2_nr .jc-product-box--mega:last-child {
  margin-right: 0;
}

.show_nav .nav_all {
  display: block;
  text-align: center;
  margin-top: calc(0.35 * var(--r));
  color: var(--jc-color-primary);
  text-decoration: underline;
}

.jc-header-utils {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0.35rem;
  z-index: 2;
  flex-shrink: 0;
  min-width: 0;
  grid-area: utils;
  overflow: visible;
}

.jc-header-util {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--jc-color-text);
  text-decoration: none;
  cursor: pointer;
  touch-action: manipulation;
  transition: color 0.15s ease, background-color 0.15s ease;
  overflow: visible;
}

.jc-header-util svg,
.jc-header-util__icon {
  display: block;
  width: 1.35rem !important;
  height: 1.35rem !important;
  max-width: 1.35rem !important;
  max-height: 1.35rem !important;
  flex-shrink: 0;
}

.jc-header-util:hover,
.jc-header-util:focus-visible {
  color: var(--jc-color-primary);
  background: rgb(5 4 170 / 6%);
}

.jc-header-util__icon {
  width: 1.35rem !important;
  height: 1.35rem !important;
}

.jc-header-search {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-right: 0.15rem;
}

.jc-header-search[hidden] {
  display: none !important;
}

.jc-header-search input[type="search"] {
  width: min(12rem, 34vw);
  min-height: 2.35rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid #dedede;
  border-radius: 999px;
  background: #fff;
  font: inherit;
  font-size: 0.875rem;
}

.jc-header-cta {
  margin-left: 0.35rem;
}

.jc-header-cta .g_a {
  border-radius: calc(0.08 * var(--r));
  padding: 0 calc(0.12 * var(--r));
  height: calc(0.42 * var(--r));
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
}

.jc-header-cta .g_a2 {
  background: var(--jc-color-primary);
}

.jc-header-cta .g_a2 p {
  color: #fff;
  font-family: "mon-r", "Montserrat", sans-serif;
  font-size: 16px;
  margin: 0;
  white-space: nowrap;
}

.jc-header-cta .g_a2:hover {
  opacity: 0.7;
  color: #fff;
}

.show_nav .nav_rr_box {
  display: none;
}

.show_nav .nav_rr {
  display: flex;
  align-items: center;
  position: relative;
}

.show_nav .nav_rr .g_a {
  border-radius: calc(0.08 * var(--r));
  padding: 0 calc(0.12 * var(--r));
  height: calc(0.42 * var(--r));
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
}

.show_nav .nav_rr .g_a2 {
  margin-left: calc(0.52 * var(--r));
  background: var(--jc-color-primary);
}

.show_nav .nav_rr .g_a2 p {
  color: #fff;
  font-family: "mon-r", "Montserrat", sans-serif;
  font-size: 16px;
  margin: 0;
  white-space: nowrap;
}

.show_nav .nav_rr .g_a2:hover {
  opacity: 0.7;
  color: #fff;
}

/* Language sits in the icon cluster next to the CTA, not as a bordered pill. */
.show_nav .lang-switch {
  position: relative;
  display: flex;
  align-items: center;
}

.show_nav .lang-switch__btn {
  display: flex;
  align-items: center;
  gap: calc(0.06 * var(--r));
  padding: 0;
  border: 0;
  background: none;
  color: var(--jc-color-text);
  font: inherit;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s;
}

.show_nav .lang-switch__globe {
  display: block;
  width: calc(0.19 * var(--r));
  height: calc(0.19 * var(--r));
  min-width: 16px;
  min-height: 16px;
}

.show_nav .lang-switch__caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.3s;
}

.show_nav .lang-switch.is-open .lang-switch__caret {
  transform: rotate(180deg);
}

.show_nav .lang-switch.is-open .lang-switch__btn,
.show_nav .lang-switch__btn:hover {
  color: var(--jc-color-primary);
}

.show_nav .lang-switch__list {
  position: absolute;
  top: calc(100% + 0.22 * var(--r));
  right: 0;
  min-width: calc(1.6 * var(--r));
  padding: calc(0.06 * var(--r)) 0;
  background: #fff;
  border: 1px solid #e4e4e4;
  box-shadow: 0 8px 24px rgb(0 0 0 / 10%);
  z-index: 50;
}

.show_nav .lang-switch__option {
  display: block;
  padding: calc(0.07 * var(--r)) calc(0.16 * var(--r));
  font-size: 14px;
  color: var(--jc-color-text);
  white-space: nowrap;
  transition: background-color 0.2s, color 0.2s;
}

.show_nav .lang-switch__option:hover {
  background: #f6f6f6;
  color: var(--jc-color-primary);
}

.show_nav .lang-switch__option.is-on {
  color: var(--jc-color-primary);
}

.show_nav .nav_box2 {
  display: none;
  grid-area: menu;
}

.show_nav .c-switch {
  position: relative;
  width: 24px;
  height: 22px;
  cursor: pointer;
}

.show_nav .c-switch i {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #333;
  transition: all 0.3s;
}

.show_nav .c-switch i:nth-child(1) {
  top: 0;
}

.show_nav .c-switch i:nth-child(2) {
  top: 50%;
  margin-top: -1px;
}

.show_nav .c-switch i:nth-child(3) {
  bottom: 0;
}

body.c-open .show_nav .c-switch i:nth-child(2) {
  opacity: 0;
}

body.c-open .show_nav .c-switch i:nth-child(1) {
  top: 50%;
  margin-top: -1px;
  transform: rotate(45deg);
}

body.c-open .show_nav .c-switch i:nth-child(3) {
  bottom: 50%;
  margin-bottom: -1px;
  transform: rotate(-45deg);
}

.show_nav .c-nav2 {
  position: absolute;
  top: var(--navh);
  right: -100%;
  width: min(420px, 100%);
  height: calc(100dvh - var(--navh));
  font-size: 14px;
  line-height: 50px;
  background: #f1f1f1;
  overflow-y: auto;
  transition: all 0.5s;
  text-align: left;
  z-index: 1001;
}

body.c-open .show_nav .c-nav2 {
  right: 0;
}

.show_nav .c-nav2 li {
  padding: 0 20px;
  border-top: 1px solid #fff;
}

.show_nav .c-nav2 li a {
  color: var(--jc-color-text);
  font-size: 16px;
  display: block;
}

.show_nav .c-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.show_nav .c-title-box button {
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  cursor: pointer;
  color: var(--jc-color-text);
}

.show_nav .c-title-con {
  display: none;
}

.show_nav .c-nav2 li.is-open .c-title-con {
  display: block;
}

.show_nav .c-title-con > a {
  color: var(--jc-color-text) !important;
  display: block;
  padding-left: 20px;
  line-height: 40px;
}

.show_nav .c-title-con > a.is-on {
  color: var(--jc-color-primary) !important;
}

.show_nav .c-title-box > span {
  color: var(--jc-color-text);
  font-size: 16px;
}

.show_nav .c-nav2__lang .c-title-box button {
  color: var(--jc-color-text);
  letter-spacing: 0.04em;
}

.show_nav .c-nav2__cta {
  padding: 20px;
  border-top: 1px solid #fff;
}

.show_nav .c-nav2__cta .g_a2 {
  margin-left: 0;
  height: 44px;
  width: 100%;
  border-radius: 4px;
  background: var(--jc-color-primary);
}

.show_nav .c-nav2__cta .g_a2 p {
  color: #fff;
  font-size: 15px;
  margin: 0;
}

/* Drawer backdrop. Sits under .c-nav2 (z-index 1001) but over the page. */
.show_nav .nav_box2::after {
  content: "";
  position: fixed;
  inset: var(--navh) 0 0;
  background: rgb(0 0 0 / 35%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  z-index: 1000;
}

body.c-open .show_nav .nav_box2::after {
  opacity: 1;
  visibility: visible;
}

body.c-open {
  overflow: hidden;
}

/**
 * Footer is the dark blue treatment on every page, not just the homepage.
 * The light gradient that used to be the inner-page default is gone.
 */
footer.jc-foot {
  padding: calc(0.5 * var(--r)) 0;
  background: #1127b0;
}

footer.jc-foot .foot_t {
  display: flex;
  justify-content: space-between;
  margin-bottom: calc(0.85 * var(--r));
}

footer.jc-foot .foot_t_l {
  width: calc(4.7 * var(--r));
  max-width: 100%;
}

footer.jc-foot .foot_t_l img {
  display: block;
  width: 157px;
  height: auto;
  margin-bottom: calc(0.35 * var(--r));
}

footer.jc-foot .foot_tagline {
  margin: 0 0 calc(0.35 * var(--r));
  max-width: 22rem;
  font-family: "mon-r", "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: #93a6e4;
}

footer.jc-foot .foot_tagline p {
  margin: 0 0 0.5rem;
}

footer.jc-foot .foot_tagline p:last-child {
  margin-bottom: 0;
}

footer.jc-foot .foot_form {
  width: 100%;
  height: auto;
  min-height: max(calc(0.5 * var(--r)), 3rem);
  background: var(--jc-color-primary);
  border: 1px solid #223cb7;
  border-radius: 5px;
  padding-left: calc(0.25 * var(--r));
  position: relative;
  margin-bottom: max(calc(0.26 * var(--r)), 0.75rem);
}

footer.jc-foot .foot_form input {
  width: 100%;
  height: auto;
  min-height: 2.75rem;
  padding: 0.5rem calc(0.5 * var(--r)) 0.5rem 0;
  border: none;
  background: transparent;
  font: inherit;
  color: #e8edfb;
  line-height: 1.4;
}

footer.jc-foot .foot_form input::placeholder {
  color: #93a6e4;
}

footer.jc-foot .foot_form button {
  background: #607dd1;
  border: 0;
  border-radius: 4px;
  width: max(calc(0.5 * var(--r) - 2px), 2.75rem);
  height: max(calc(0.5 * var(--r) - 2px), 2.75rem);
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  font-size: clamp(1rem, calc(0.18 * var(--r)), 1.125rem);
}

footer.jc-foot .foot_form_radio label {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-weight: 400;
}

footer.jc-foot .foot_form_radio input {
  margin: 4px calc(0.14 * var(--r)) 0 0;
}

footer.jc-foot .foot_form_radio p {
  font-size: 14px;
  color: #93a6e4;
  margin: 0;
}

footer.jc-foot .foot_form_radio p a {
  color: #d5def5;
  text-decoration: underline;
}

footer.jc-foot .site-footer__note {
  margin: 0.6rem 0 0;
  font-size: 0.85rem;
  line-height: 1.45;
  color: #ffffff;
}

footer.jc-foot .site-footer__note--error {
  color: #ffffff;
}

footer.jc-foot .foot_t_r {
  display: flex;
  justify-content: flex-end;
}

footer.jc-foot .foot_ul {
  margin-right: calc(0.54 * var(--r));
}

footer.jc-foot .foot_ul:last-child {
  margin-right: 0;
}

/* Column headings are uppercased in CSS so translated strings still work. */
footer.jc-foot .foot_ul > a {
  font-family: "Montserrat_s", "mon-sb", "Montserrat", sans-serif;
  margin-bottom: calc(0.28 * var(--r));
  display: block;
  font-size: 18px;
  color: #d5def5;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

footer.jc-foot .foot_ul ul a {
  font-size: 14px;
  color: #93a6e4;
  margin-bottom: calc(0.2 * var(--r));
  display: block;
  transition: color 0.2s;
}

footer.jc-foot .foot_ul ul a:hover {
  color: #fff;
}

/* Last column (Solution) reads as headings, not as a link list. */
footer.jc-foot .foot_ul:last-child ul a {
  color: #d5def5;
  font-size: 18px;
  font-family: "Montserrat_s", "mon-sb", "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

footer.jc-foot .foot_b {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-top: 0.15rem;
}

footer.jc-foot .foot_b_row--meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas:
    "social legal"
    "disclaimer disclaimer";
  align-items: center;
  gap: 0.65rem 1.5rem;
}

footer.jc-foot .foot_b_row--legal {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

footer.jc-foot .foot_b_social {
  grid-area: social;
  justify-self: start;
  min-width: 0;
}

footer.jc-foot .foot_b_disclaimer,
footer.jc-foot .foot_b_copy,
footer.jc-foot .foot_b_icon a,
footer.jc-foot .foot_legal,
footer.jc-foot .foot_legal a,
footer.jc-foot .foot_by,
footer.jc-foot .foot_by a {
  margin: 0;
  font-family: "mon-r", "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: #c5d0f5;
}

footer.jc-foot .foot_b_disclaimer {
  grid-area: disclaimer;
  justify-self: stretch;
  max-width: none;
  text-align: left;
  overflow-wrap: break-word;
}

footer.jc-foot .foot_b_copy {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}

footer.jc-foot .foot_by {
  flex: 0 0 auto;
  margin-left: auto;
  text-align: right;
}

footer.jc-foot .foot_by a {
  text-decoration: none;
}

footer.jc-foot .foot_by a:hover {
  color: #fff;
  text-decoration: underline;
}

footer.jc-foot .foot_legal {
  grid-area: legal;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  justify-self: end;
  gap: 0.65rem 1rem;
  text-transform: none;
}

footer.jc-foot .foot_b_icon a {
  display: inline-block;
  white-space: nowrap;
}

/**
 * The brand logo is navy + cyan on transparent, which has too little contrast
 * against the blue. Knocking it out to solid white matches the footer wordmark
 * treatment. Swap for a supplied reverse-colour asset and drop the filter.
 */
footer.jc-foot .foot_t_l img {
  filter: brightness(0) invert(1);
}

@media (max-width: 1580px) {
  .show_nav .pro_nav_tab2_con.container2 {
    width: 84%;
  }
}

@media (max-width: 1940px) {
  .show_nav .nav_rr .g_a2 p {
    font-size: 16px;
  }
}

@media (min-width: 1940px) {
  .container2 {
    max-width: 100%;
  }

  .show_nav .nav_rr .g_a {
    height: 50px;
  }

  .show_nav .nav_rr .g_a2 {
    margin-left: 50px;
  }

  .show_nav .nav_rr .g_a2 p {
    font-size: 24px;
  }
}

@media (max-width: 1900px) {
  .show_nav .nav > ul > li > a {
    font-size: 16px;
  }

  footer.jc-foot .foot_b_disclaimer,
  footer.jc-foot .foot_b_copy,
  footer.jc-foot .foot_b_icon a,
  footer.jc-foot .foot_legal,
  footer.jc-foot .foot_legal a,
  footer.jc-foot .foot_by,
  footer.jc-foot .foot_by a {
    font-size: 13px;
    font-weight: 400;
  }
}

@media (max-width: 1580px) {
  .container2 {
    width: 90%;
  }

  .show_nav .nav > ul > li > a {
    font-size: 14px;
    margin: 0 calc(0.2 * var(--r));
  }

  footer.jc-foot .foot_form_radio p,
  footer.jc-foot .foot_ul ul a {
    font-size: 12px;
  }
}

@media (max-width: 1440px) {
  html {
    --navh: 60px;
  }

  .show_nav .nav_rr .g_a2 {
    margin-left: calc(0.4 * var(--r));
  }

  .show_nav .nav_rr .g_a2 p {
    font-size: 14px;
  }
}

/* Desktop nav gives way to the drawer. */
@media (max-width: 1260px) {
  nav.show_nav > .container2 {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas: "menu logo utils";
    column-gap: 0.65rem;
  }

  .show_nav .nav_box2 {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
  }

  .show_nav .logo {
    justify-self: center;
    margin: 0 auto;
  }

  .jc-header-utils {
    gap: 0.15rem;
  }

  .jc-header-cta {
    display: none;
  }

  /* Mobile bar: hamburger | logo | search + cart (account lives in drawer). */
  .jc-header-util--account {
    display: none !important;
  }

  .jc-header-utils .jc-header-util--search,
  .jc-header-utils .jc-cart-trigger {
    display: inline-flex !important;
  }

  .show_nav .c-switch {
    z-index: 2;
  }

  .show_nav .nav {
    display: none;
  }
}

@media (max-width: 992px) {
  .show_nav .logo {
    width: auto;
    max-width: 150px;
    overflow: visible;
  }

  .show_nav .logo img {
    width: auto;
    max-width: 150px;
    height: 40px;
    max-height: calc(var(--navh) - 16px);
  }

  footer.jc-foot .foot_b_row--meta {
    gap: 0.65rem 1.25rem;
  }
}

@media (max-width: 768px) {
  .show_nav .logo {
    width: auto;
    max-width: 160px;
    overflow: visible;
  }

  .show_nav .logo img {
    width: auto;
    max-width: 160px;
    height: 40px;
    max-height: calc(var(--navh) - 16px);
  }

  .jc-header-utils {
    gap: 0.05rem;
  }

  .jc-header-util {
    width: 2.25rem;
    height: 2.25rem;
  }

  .show_nav .c-nav2 {
    width: 100%;
  }

  footer.jc-foot .foot_t,
  footer.jc-foot .foot_t_r {
    display: block;
  }

  footer.jc-foot .foot_t_l,
  footer.jc-foot .foot_ul {
    width: 100%;
    max-width: none;
    margin: 0 0 1.25rem;
  }

  footer.jc-foot .foot_tagline {
    max-width: none;
    margin-bottom: 1rem;
  }

  footer.jc-foot .foot_b_row--meta {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.6rem 1rem;
  }

  footer.jc-foot .foot_legal {
    justify-content: flex-end;
  }

  footer.jc-foot .foot_b_row--legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  footer.jc-foot .foot_by {
    margin-left: 0;
    text-align: left;
  }

  footer.jc-foot .foot_form {
    min-height: 3rem;
    padding-left: 0.875rem;
    margin-bottom: 0.875rem;
  }

  footer.jc-foot .foot_form input {
    min-height: 2.75rem;
    padding: 0.625rem 3.25rem 0.625rem 0;
    font-size: 1rem;
  }

  footer.jc-foot .foot_form button {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.125rem;
  }

  footer.jc-foot .foot_form_radio {
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  nav.show_nav,
  .show_nav .c-nav2,
  .show_nav .nav_box2::after,
  .show_nav .jc-product-box--mega .jc-product-box__media img,
  .show_nav .nav > ul > li > a::after {
    transition: none;
  }
}

.jc-dock {
  position: fixed;
  right: 14px;
  bottom: 18px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jc-dock__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgb(0 0 0 / 18%);
}

.jc-dock__btn--whatsapp {
  background: #25d366;
}

.jc-dock__btn--telegram {
  background: #229ed9;
}

.jc-dock__icon {
  width: 26px;
  height: 26px;
  display: block;
}

/* WPCode / legacy floating checkout controls — cart lives in nav.show_nav .jc-header-utils only. */
.floating-mobile-checkout,
.mobile-checkout-button,
a.floating-mobile-checkout[href="/checkout/"],
a.floating-mobile-checkout[href*="checkout"] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Rank Math breadcrumbs — pin + chevron, black trail below banners / in content */
.jc-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  color: #000;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.35;
  text-shadow: none;
  background: none;
  border: 0;
  box-shadow: none;
}

.jc-crumbs::before {
  content: "";
  flex: none;
  width: 11px;
  height: 16px;
  margin-right: 5px;
  background-color: currentColor;
  -webkit-mask: url("../img/chrome/crumb-pin.png") center / contain no-repeat;
  mask: url("../img/chrome/crumb-pin.png") center / contain no-repeat;
}

/* Sit under hero banners — always readable on light page chrome */
.jc-crumbs--below {
  width: min(100% - 2rem, var(--jc-container, 1720px));
  margin: 0.75rem auto 0.85rem;
  padding: 0;
  color: #000;
  font-size: 13px;
  text-shadow: none;
}

/* In-content pages (no hero) — inherit parent column width */
.jc-crumbs--page {
  width: 100%;
  margin: 0.75rem 0 0.85rem;
  padding: 0;
  color: #000;
  font-size: 13px;
  text-shadow: none;
}

.jc-crumbs a {
  color: #000;
  text-decoration: none;
}

.jc-crumbs a:hover,
.jc-crumbs a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.jc-crumbs a:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}

.jc-crumbs .rank-math-breadcrumb,
.jc-crumbs .rank-math-breadcrumb p,
.jc-crumbs > p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.jc-crumbs .separator,
.jc-crumbs__sep {
  display: inline-block;
  flex: none;
  width: 5px;
  height: 9px;
  margin: 0 8px 0 5px;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  color: inherit;
  background-color: currentColor;
  -webkit-mask: url("../img/chrome/crumb-sep.png") center / contain no-repeat;
  mask: url("../img/chrome/crumb-sep.png") center / contain no-repeat;
}

.jc-crumbs .last,
.jc-crumbs__current {
  color: #000;
  font-weight: 600;
}

@media (max-width: 800px) {
  .jc-crumbs--below {
    width: calc(100% - 2rem);
    margin: 0.65rem auto 0.75rem;
    font-size: 12px;
  }

  .jc-crumbs--page {
    margin: 0.65rem 0 0.75rem;
    font-size: 12px;
  }
}

/* Age verification modal (Storefront options) */
body.jc-age-gate-open {
  overflow: hidden;
}

.jc-age-gate {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.jc-age-gate[hidden] {
  display: none !important;
}

.jc-age-gate__overlay {
  position: absolute;
  inset: 0;
  background: rgb(8 12 20 / 78%);
  backdrop-filter: blur(4px);
}

.jc-age-gate__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 28rem);
  padding: 2rem 1.75rem 1.75rem;
  border-radius: 14px;
  background: #0b1220;
  color: #f4f6fb;
  box-shadow: 0 24px 64px rgb(0 0 0 / 45%);
  text-align: center;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.jc-age-gate--closing .jc-age-gate__dialog {
  opacity: 0;
  transform: translateY(8px);
}

.jc-age-gate__title {
  margin: 0 0 0.85rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
}

.jc-age-gate__body {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgb(244 246 251 / 88%);
}

.jc-age-gate__body p:last-child {
  margin-bottom: 0;
}

.jc-age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.jc-age-gate__confirm {
  width: 100%;
}

.jc-age-gate__decline {
  width: 100%;
  background: transparent;
  color: rgb(244 246 251 / 72%);
  border: 1px solid rgb(244 246 251 / 22%);
}

.jc-age-gate__decline:hover {
  color: #fff;
  border-color: rgb(244 246 251 / 42%);
  background: rgb(255 255 255 / 6%);
}

@media (min-width: 480px) {
  .jc-age-gate__actions {
    flex-direction: row;
  }

  .jc-age-gate__confirm,
  .jc-age-gate__decline {
    flex: 1 1 0;
  }
}
