.kjk-page-bg,
html,
body,
body .body-wrapper,
body .body-wrapper-inner {
  background: #fff !important;
}

.kjk-header,
.kjk-header-spacer,
.kjk-search-panel,
.kjk-mobile-overlay,
.kjk-mobile-nav {
  --kjk-header-h: 88px;
  --kjk-wrap: 1420px;
  --kjk-bg: #ffffff;
  --kjk-surface: #ffffff;
  --kjk-surface-soft: #fafafa;
  --kjk-line: rgba(18, 18, 18, 0.08);
  --kjk-line-strong: rgba(18, 18, 18, 0.12);
  --kjk-text: #161616;
  --kjk-muted: #767676;
  --kjk-shadow: 0 24px 70px rgba(15, 15, 15, 0.09);
  --kjk-shadow-soft: 0 12px 28px rgba(15, 15, 15, 0.06);
}

.kjk-search-panel[hidden],
.kjk-mobile-overlay[hidden],
.kjk-mobile-nav[hidden] {
  display: none !important;
}

.kjk-header,
.kjk-header *,
.kjk-header-spacer,
.kjk-search-panel,
.kjk-search-panel *,
.kjk-mobile-overlay,
.kjk-mobile-nav,
.kjk-mobile-nav * {
  box-sizing: border-box;
}

.kjk-container {
  width: min(var(--kjk-wrap), calc(100% - 40px));
  margin: 0 auto;
}

.kjk-header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--kjk-header-h);
  z-index: 1200;
  background: var(--kjk-bg);
  border-bottom: 1px solid var(--kjk-line);
  transform: translate3d(0, 0, 0);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
  will-change: transform;
}

.kjk-header.is-hidden {
  transform: translate3d(0, -100%, 0);
}

.kjk-header.is-scrolled {
  box-shadow: var(--kjk-shadow-soft);
}

.kjk-header-spacer {
  height: var(--kjk-header-h);
}

.kjk-header-inner {
  min-height: var(--kjk-header-h);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.kjk-logo {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--kjk-text);
  text-decoration: none;
  white-space: nowrap;
}

.kjk-logo-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px 5px 11px 5px;
  background: linear-gradient(145deg, #f2d35f 0%, #c8952a 100%);
  transition: border-radius 0.22s ease, transform 0.22s ease;
}

.kjk-logo:hover .kjk-logo-mark {
  border-radius: 5px 11px 5px 11px;
  transform: translateY(-1px);
}

.kjk-logo-mark-k {
  font-size: 1.18rem;
  line-height: 1;
  font-weight: 900;
  color: #0b0b0b;
}

.kjk-logo-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
}

.kjk-logo-title {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #8b6508;
}

.kjk-logo-subtitle {
  font-size: 0.54rem;
  letter-spacing: 0.34em;
  color: #595959;
}

.kjk-logo-pulse {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #9f7616;
}

.kjk-desktop-nav {
  min-width: 0;
  height: 100%;
  display: flex;
  justify-content: center;
}

.kjk-menu,
.kjk-mobile-menu-level {
  list-style: none;
  margin: 0;
  padding: 0;
}

.kjk-menu {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.kjk-menu-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.kjk-menu-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 14px;
  color: var(--kjk-text);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.kjk-menu-link:hover,
.kjk-menu-item:hover > .kjk-menu-link,
.kjk-menu-item:focus-within > .kjk-menu-link {
  background: #f4f4f4;
}

.kjk-menu-item--panel > .kjk-submenu--panel,
.kjk-menu-item--mega > .kjk-mega-menu {
  position: fixed;
  top: var(--kjk-dropdown-top, calc(var(--kjk-header-h) - 4px));
  left: 50%;
  width: min(1180px, calc(100vw - 40px));
  background: #ffffff;
  border: 1px solid var(--kjk-line);
  border-radius: 28px;
  box-shadow: var(--kjk-shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  transform: translate(-50%, 4px) scale(0.995);
  transform-origin: top center;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 30;
}

.kjk-menu-item--dropdown.is-open > .kjk-submenu--panel,
.kjk-menu-item--dropdown.is-open > .kjk-mega-menu,
.kjk-menu-item--dropdown:focus-within > .kjk-submenu--panel,
.kjk-menu-item--dropdown:focus-within > .kjk-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.kjk-dropdown-panel,
.kjk-mega-shell {
  max-height: min(72vh, 760px);
}

.kjk-dropdown-panel {
  padding: 22px 24px 24px;
  overflow: auto;
}

.kjk-dropdown-panel-head,
.kjk-mega-panel-head {
  margin-bottom: 18px;
}

.kjk-dropdown-panel-title,
.kjk-mega-panel-title,
.kjk-mega-tertiary-title {
  color: #111111;
  text-decoration: none;
}

.kjk-dropdown-panel-title,
.kjk-mega-panel-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.08;
}

.kjk-dropdown-panel-text,
.kjk-mega-panel-text {
  margin: 10px 0 0;
  color: var(--kjk-muted);
  font-size: 14px;
  line-height: 1.55;
}

.kjk-dropdown-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.kjk-dropdown-column {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--kjk-line);
  border-radius: 22px;
  background: #ffffff;
}

.kjk-dropdown-heading {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  color: #141414;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.kjk-dropdown-links {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.kjk-dropdown-links a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  background: #f7f7f7;
  color: var(--kjk-text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.kjk-dropdown-links a:hover {
  background: #efefef;
  transform: translateX(2px);
}

.kjk-mega-shell {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
}

.kjk-mega-sidebar {
  padding: 22px 16px;
  background: #ffffff;
  border-right: 1px solid var(--kjk-line);
}

.kjk-mega-sidebar-label {
  margin-bottom: 14px;
  color: #6a6a6a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kjk-mega-primary-list {
  display: grid;
  gap: 8px;
  max-height: calc(min(72vh, 760px) - 72px);
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
}

.kjk-mega-primary-list::-webkit-scrollbar,
.kjk-mega-secondary-list::-webkit-scrollbar,
.kjk-mega-tertiary-stack::-webkit-scrollbar,
.kjk-mega-stage::-webkit-scrollbar,
.kjk-dropdown-panel::-webkit-scrollbar {
  width: 8px;
}

.kjk-mega-primary-list::-webkit-scrollbar-thumb,
.kjk-mega-secondary-list::-webkit-scrollbar-thumb,
.kjk-mega-tertiary-stack::-webkit-scrollbar-thumb,
.kjk-mega-stage::-webkit-scrollbar-thumb,
.kjk-dropdown-panel::-webkit-scrollbar-thumb {
  background: rgba(17, 17, 17, 0.16);
  border-radius: 999px;
}

.kjk-mega-primary {
  appearance: none;
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px 14px 16px;
  border-radius: 18px;
  cursor: pointer;
  text-align: left;
  color: var(--kjk-text);
  text-decoration: none;
  background: #ffffff;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.kjk-mega-primary:hover,
.kjk-mega-primary.is-active {
  background: #f7f7f7;
  border-color: var(--kjk-line);
}

.kjk-mega-primary-copy {
  display: grid;
  gap: 4px;
}

.kjk-mega-primary-title {
  font-size: 15px;
  font-weight: 800;
  color: #111111;
}

.kjk-mega-primary-meta {
  font-size: 12px;
  color: var(--kjk-muted);
}

.kjk-mega-primary-arrow {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #f3f3f3;
  color: #565656;
  font-size: 16px;
  line-height: 1;
}

.kjk-mega-stage {
  min-width: 0;
  padding: 22px 24px 24px;
  overflow: hidden;
  max-height: min(72vh, 760px);
}

.kjk-mega-stage-inner {
  position: relative;
  min-height: 0;
  transition: height 0.2s ease;
  overflow: hidden;
}

.kjk-mega-panel {
  display: none;
}

.kjk-mega-panel.is-active {
  display: block;
}

.kjk-mega-panel-grid {
  display: grid;
  grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: min(56vh, 620px);
}

.kjk-mega-secondary-list {
  display: grid;
  gap: 10px;
  min-height: 0;
  max-height: min(56vh, 620px);
  overflow-y: auto;
  padding-right: 6px;
  align-content: start;
  scrollbar-width: thin;
}

.kjk-mega-secondary {
  padding: 15px 16px;
  border: 1px solid var(--kjk-line);
  border-radius: 20px;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.kjk-mega-secondary:hover,
.kjk-mega-secondary:focus,
.kjk-mega-secondary.is-active {
  background: #f7f7f7;
  border-color: var(--kjk-line-strong);
  box-shadow: 0 10px 20px rgba(15, 15, 15, 0.04);
  outline: none;
}

.kjk-mega-secondary-link {
  color: #111111;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
}

.kjk-mega-secondary-note {
  margin-top: 6px;
  display: block;
  color: var(--kjk-muted);
  font-size: 12px;
}

.kjk-mega-tertiary-stack {
  min-width: 0;
  min-height: 0;
  max-height: min(56vh, 620px);
  overflow-y: auto;
  align-self: start;
  border: 1px solid var(--kjk-line);
  border-radius: 24px;
  background: #ffffff;
  padding: 18px;
  scrollbar-width: thin;
}

.kjk-mega-tertiary {
  display: none;
}

.kjk-mega-tertiary.is-active {
  display: block;
}

.kjk-mega-tertiary-title {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 800;
}

.kjk-mega-tertiary-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.kjk-mega-tertiary-links a {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 11px 13px;
  border-radius: 15px;
  color: var(--kjk-text);
  background: #f7f7f7;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  text-decoration: none;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.kjk-mega-tertiary-links a:hover {
  background: #efefef;
  transform: translateX(2px);
}

.kjk-mega-empty {
  padding: 28px;
}

.kjk-mega-empty a {
  color: var(--kjk-text);
  font-weight: 700;
  text-decoration: none;
}

.kjk-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.kjk-header-actions > * {
  flex: 0 0 auto;
  align-self: center;
  margin: 0;
}

.kjk-icon-btn,
.kjk-menu-toggle,
.kjk-mobile-close,
.kjk-mobile-toggle {
  appearance: none;
  border: 1px solid var(--kjk-line-strong);
  background: #ffffff;
  color: var(--kjk-text);
}

.kjk-icon-btn,
.kjk-menu-toggle {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 16px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  line-height: 1;
  vertical-align: middle;
  transition: background-color 0.18s ease, border-color 0.18s ease;
}

.kjk-icon-btn:hover,
.kjk-menu-toggle:hover {
  background: #f7f7f7;
}

.kjk-icon-svg {
  width: 22px;
  height: 22px;
  display: block;
  flex: 0 0 auto;
  transform: translateY(0);
  pointer-events: none;
}

.kjk-cart-badge {
  position: absolute;
  top: -5px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.kjk-quote-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 18px;
  background: #1f1f1f;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
  transition: opacity 0.18s ease;
}

.kjk-quote-btn:hover {
  opacity: 0.94;
}

.kjk-menu-toggle {
  display: none;
}

.kjk-menu-toggle span,
.kjk-menu-toggle span::before,
.kjk-menu-toggle span::after {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  content: '';
  position: relative;
}

.kjk-menu-toggle span::before {
  position: absolute;
  top: -6px;
  left: 0;
}

.kjk-menu-toggle span::after {
  position: absolute;
  top: 6px;
  left: 0;
}

.kjk-search-panel {
  position: fixed;
  inset: 0;
  padding-top: calc(var(--kjk-header-h) + 18px);
  background: rgba(15, 15, 15, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1250;
}

.kjk-search-panel.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.kjk-search-box {
  width: min(760px, calc(100% - 24px));
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--kjk-line);
  border-radius: 26px;
  box-shadow: var(--kjk-shadow);
}

.kjk-search-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
}

.kjk-search-form {
  flex: 1 1 auto;
}

.kjk-search-input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0;
  background: transparent;
  color: var(--kjk-text);
  font-size: 17px;
}

.kjk-search-close {
  font-size: 28px;
  line-height: 1;
}

.kjk-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
  z-index: 1240;
}

.kjk-mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.kjk-mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 92vw);
  height: 100vh;
  background: #ffffff;
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.26s ease;
  z-index: 1255;
  display: flex;
  flex-direction: column;
}

.kjk-mobile-nav.active {
  transform: translateX(0);
}

.kjk-mobile-head {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
  border-bottom: 1px solid var(--kjk-line);
}

.kjk-mobile-close {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.kjk-mobile-body {
  flex: 1 1 auto;
  overflow: auto;
  padding: 8px 16px 28px;
}

.kjk-mobile-item {
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.kjk-mobile-row {
  min-height: 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.kjk-mobile-link {
  min-width: 0;
  display: flex;
  align-items: center;
  padding: 14px 0;
  color: #111111;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.kjk-mobile-toggle {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.kjk-mobile-item.is-open > .kjk-mobile-row .kjk-mobile-toggle {
  transform: rotate(45deg);
}

.kjk-mobile-submenu {
  padding: 0 0 10px 12px;
}

.kjk-mobile-submenu .kjk-mobile-menu-level {
  border-left: 1px solid rgba(17, 17, 17, 0.06);
  padding-left: 12px;
}

.kjk-mobile-submenu .kjk-mobile-item:last-child {
  border-bottom: 0;
}

.kjk-body-locked {
  overflow: hidden;
}

#btt,
.btt {
  z-index: 1190 !important;
}

@media (max-width: 767px) {
  .footer-mstyle1 .footer-container,
  .footer-mstyle2 .footer-container {
    z-index: 1188;
    overflow: visible;
  }

  .footer-mstyle2 .footer-container .footer-open,
  .footer-mstyle2.open .footer-container .footer-open {
    left: 50%;
    top: -28px;
    bottom: auto;
    margin-left: 0;
    transform: translateX(-50%);
    z-index: 1189;
    pointer-events: auto;
  }

  #swg-totop,
  #btt,
  #back-to-top,
  .back-to-top,
  .btt,
  .scroll-to-top {
    right: 16px !important;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 88px) !important;
    z-index: 1190 !important;
  }
}

@media (max-width: 1220px) {
  .kjk-menu-item--panel > .kjk-submenu--panel,
  .kjk-menu-item--mega > .kjk-mega-menu {
    width: min(1080px, calc(100vw - 32px));
  }

  .kjk-mega-panel-grid {
    grid-template-columns: minmax(250px, 300px) minmax(0, 1fr);
  }
}

@media (max-width: 1080px) {
  .kjk-desktop-nav,
  .kjk-quote-btn {
    display: none;
  }

  .kjk-menu-toggle {
    display: inline-grid;
  }

  .kjk-header {
    transition: box-shadow 0.2s ease, background-color 0.2s ease;
    will-change: auto;
  }

  .kjk-menu-item--panel > .kjk-submenu--panel,
  .kjk-menu-item--mega > .kjk-mega-menu {
    display: none !important;
  }

  .kjk-logo,
  .kjk-logo-copy,
  .kjk-logo-title,
  .kjk-logo-subtitle,
  .kjk-mobile-link,
  .kjk-mobile-toggle {
    animation: none !important;
    transition: none !important;
  }

  .kjk-logo:hover .kjk-logo-mark {
    border-radius: 11px 5px 11px 5px;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kjk-header,
  .kjk-logo-mark,
  .kjk-menu-link,
  .kjk-menu-item--panel > .kjk-submenu--panel,
  .kjk-menu-item--mega > .kjk-mega-menu,
  .kjk-dropdown-links a,
  .kjk-mega-primary,
  .kjk-mega-stage-inner,
  .kjk-mega-secondary,
  .kjk-mega-tertiary,
  .kjk-icon-btn,
  .kjk-search-panel,
  .kjk-mobile-overlay,
  .kjk-mobile-nav,
  .kjk-mobile-toggle {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 782px) {
  .admin-bar .kjk-header {
    top: 46px;
  }
}

@media (min-width: 783px) {
  .admin-bar .kjk-header {
    top: 32px;
  }
}

@media (max-width: 767px) {
  .kjk-header,
  .kjk-header-spacer,
  .kjk-search-panel,
  .kjk-mobile-overlay,
  .kjk-mobile-nav {
    --kjk-header-h: 76px;
  }

  .kjk-container {
    width: calc(100% - 24px);
  }

  .kjk-header-inner {
    gap: 14px;
  }

  .kjk-logo {
    gap: 10px;
  }

  .kjk-logo-mark {
    width: 30px;
    height: 30px;
  }

  .kjk-logo-title {
    font-size: 0.84rem;
  }

  .kjk-logo-subtitle {
    font-size: 0.5rem;
    letter-spacing: 0.28em;
  }

  .kjk-header-actions {
    gap: 8px;
  }

  .kjk-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .kjk-header-actions > a.kjk-icon-btn:nth-of-type(1),
  .kjk-header-actions > a.kjk-icon-btn:nth-of-type(2) {
    display: none;
  }

  .kjk-search-top {
    padding: 16px;
  }

  .kjk-search-input {
    font-size: 16px;
  }
}
