.cfk-site-header {
  position: relative;
  z-index: 80;
  background: var(--cfk-surface);
  color: var(--cfk-text);
  border-bottom: 1px solid var(--cfk-border);
  font-family: inherit;
}

.cfk-site-header svg:not(.cfk-brand-logo-svg) {
  display: block;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cfk-site-header__main {
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(190px, 225px) minmax(300px, 1fr) auto;
  align-items: center;
  gap: 26px;
}

.cfk-brand-logo {
  display: inline-flex;
  align-items: center;
  max-width: 220px;
  color: inherit;
  text-decoration: none;
}

.cfk-brand-logo-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 218px;
  max-height: 74px;
  object-fit: contain;
}
.cfk-brand-logo-image--bundled {
  max-height: 74px;
}

.cfk-brand-logo--svg {
  width: 225px;
  max-width: 100%;
}

.cfk-brand-logo-svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  overflow: visible;
}


.cfk-brand-logo--text {
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.cfk-brand-logo__name {
  display: flex;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: .01em;
}

.cfk-brand-logo__name span:first-child {
  color: var(--cfk-blue-dark);
}

.cfk-brand-logo__name span:last-child {
  color: var(--cfk-green-dark);
}

.cfk-brand-logo__descriptor {
  margin-top: 5px;
  color: var(--cfk-text);
  opacity: .78;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .36em;
}

.cfk-product-search-wrap {
  position: relative;
  width: 100%;
}

.cfk-product-search {
  position: relative;
  display: flex;
  width: 100%;
  margin: 0;
}

.cfk-product-search__icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cfk-muted);
  pointer-events: none;
}

.cfk-product-search__icon svg {
  width: 18px;
  height: 18px;
}

.cfk-product-search__field {
  min-width: 0;
  width: 100%;
  min-height: 46px;
  padding: 10px 52px 10px 44px;
  border: 1px solid #cfd9de;
  border-radius: var(--cfk-radius-md);
  background: #fff;
  color: var(--cfk-text);
  font: inherit;
  line-height: 1.3;
}

.cfk-product-search__field::placeholder {
  color: #8a949d;
}

.cfk-product-search__field:focus {
  outline: none;
  border-color: var(--cfk-blue);
  box-shadow: var(--cfk-focus);
}

.cfk-product-search__submit {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: var(--cfk-blue-dark);
  color: #fff;
  cursor: pointer;
}

.cfk-product-search__submit:hover,
.cfk-product-search__submit:focus-visible {
  background: #004b70;
}

.cfk-product-search__submit svg {
  width: 17px;
  height: 17px;
}

.cfk-search-results {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 120;
  overflow: hidden;
  max-height: min(520px, 70vh);
  overflow-y: auto;
  border: 1px solid var(--cfk-border);
  border-radius: var(--cfk-radius-lg);
  background: #fff;
  box-shadow: 0 18px 45px rgba(24, 40, 52, .16);
}

.cfk-search-results__list {
  padding: 6px;
}

.cfk-search-suggestion {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 22px;
  gap: 12px;
  align-items: center;
  min-height: 72px;
  padding: 7px 9px;
  border-radius: 8px;
  color: var(--cfk-text);
  text-decoration: none;
}

.cfk-search-suggestion:hover,
.cfk-search-suggestion:focus-visible {
  background: var(--cfk-surface-alt);
}

.cfk-search-suggestion__media {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #edf1f3;
  border-radius: 6px;
  background: #fff;
}

.cfk-search-suggestion__image {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}

.cfk-search-suggestion__body {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.cfk-search-suggestion__category {
  color: var(--cfk-green-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.cfk-search-suggestion__title {
  overflow: hidden;
  color: var(--cfk-ink);
  font-size: 14px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cfk-search-suggestion__price {
  color: var(--cfk-blue-dark);
  font-size: 13px;
  font-weight: 700;
}

.cfk-search-suggestion__price del {
  color: var(--cfk-muted);
  font-weight: 500;
}

.cfk-search-suggestion__arrow {
  color: var(--cfk-muted);
}

.cfk-search-results__all {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  border-top: 1px solid var(--cfk-border);
  background: var(--cfk-blue-soft);
  color: var(--cfk-blue-dark);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.cfk-search-results__all svg {
  width: 17px;
  height: 17px;
}

.cfk-search-results__empty {
  display: grid;
  gap: 6px;
  padding: 22px;
  color: var(--cfk-muted);
  font-size: 13px;
}

.cfk-search-results__empty strong {
  color: var(--cfk-ink);
  font-size: 15px;
}

.cfk-search-results__empty a {
  width: fit-content;
  margin-top: 4px;
  color: var(--cfk-blue-dark);
  font-weight: 700;
}

.cfk-header-actions {
  display: flex;
  align-items: center;
  gap: 7px;
}

.cfk-header-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 11px;
  border-radius: var(--cfk-radius-md);
  color: var(--cfk-blue-dark);
  text-decoration: none;
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.cfk-header-action:hover,
.cfk-header-action:focus-visible {
  background: var(--cfk-blue-soft);
  color: var(--cfk-blue-dark);
}

.cfk-header-action--quote {
  padding-inline: 15px;
  border: 1px solid var(--cfk-blue-dark);
  background: var(--cfk-blue-dark);
  color: #fff;
}

.cfk-header-action--quote:hover,
.cfk-header-action--quote:focus-visible {
  background: #004b70;
  color: #fff;
}

.cfk-header-action--icon svg {
  width: 19px;
  height: 19px;
}

.cfk-header-nav-row {
  border-top: 1px solid #edf1f3;
  background: #fff;
}

.cfk-header-nav-row__inner {
  min-height: 44px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  gap: 20px;
}

.cfk-browse-categories {
  position: relative;
  min-width: 205px;
}

.cfk-browse-categories__toggle {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border: 0;
  background: var(--cfk-blue-dark);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.cfk-browse-categories__toggle svg {
  width: 17px;
  height: 17px;
}

.cfk-browse-categories__chevron {
  margin-left: auto;
  transition: transform .18s ease;
}

.cfk-browse-categories.is-open .cfk-browse-categories__chevron {
  transform: rotate(180deg);
}

.cfk-browse-categories__panel {
  position: absolute;
  left: 0;
  top: calc(100% + 1px);
  z-index: 110;
  width: 310px;
  overflow: hidden;
  border: 1px solid var(--cfk-border);
  border-radius: 0 0 var(--cfk-radius-lg) var(--cfk-radius-lg);
  background: #fff;
  box-shadow: 0 16px 36px rgba(24, 40, 52, .14);
}

.cfk-browse-categories__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 14px 15px;
  border-bottom: 1px solid var(--cfk-border);
  background: var(--cfk-surface-alt);
}

.cfk-browse-categories__head strong {
  color: var(--cfk-ink);
  font-size: 13px;
}

.cfk-browse-categories__head a {
  color: var(--cfk-blue-dark);
  font-size: 12px;
  font-weight: 700;
}

.cfk-browse-categories__list {
  padding: 7px;
}

.cfk-browse-categories__list > a {
  min-height: 39px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--cfk-text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 550;
}

.cfk-browse-categories__list > a:hover,
.cfk-browse-categories__list > a:focus-visible {
  background: var(--cfk-blue-soft);
  color: var(--cfk-blue-dark);
}

.cfk-browse-categories__list svg {
  width: 15px;
  height: 15px;
}

.cfk-primary-nav {
  min-width: 0;
}

.cfk-primary-nav__list,
.cfk-primary-nav .menu {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cfk-primary-nav__list > li,
.cfk-primary-nav .menu > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.cfk-primary-nav__list a,
.cfk-primary-nav .menu a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 7px 9px;
  border-radius: 6px;
  color: var(--cfk-text);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
}

.cfk-primary-nav__list a:hover,
.cfk-primary-nav__list a:focus-visible,
.cfk-primary-nav .menu a:hover,
.cfk-primary-nav .menu a:focus-visible,
.cfk-primary-nav .current-menu-item > a {
  background: var(--cfk-blue-soft);
  color: var(--cfk-blue-dark);
}

.cfk-primary-nav .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 105;
  min-width: 210px;
  margin: 0;
  padding: 7px;
  border: 1px solid var(--cfk-border);
  border-radius: var(--cfk-radius-md);
  background: #fff;
  box-shadow: 0 12px 30px rgba(24, 40, 52, .13);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
}

.cfk-primary-nav li:hover > .sub-menu,
.cfk-primary-nav li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cfk-primary-nav .sub-menu a {
  width: 100%;
}

.cfk-header-whatsapp {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 4px;
  color: #197d3c;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
}

.cfk-header-whatsapp svg {
  width: 18px;
  height: 18px;
}

.cfk-mini-cart {
  position: relative;
}

.cfk-mini-cart__toggle,
.cfk-mobile-menu__toggle {
  min-height: 42px;
  min-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 10px;
  border: 0;
  border-radius: var(--cfk-radius-md);
  background: transparent;
  color: var(--cfk-blue-dark);
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
}

.cfk-mini-cart__toggle:hover,
.cfk-mini-cart__toggle:focus-visible,
.cfk-mobile-menu__toggle:hover,
.cfk-mobile-menu__toggle:focus-visible {
  background: var(--cfk-blue-soft);
}

.cfk-mini-cart__toggle svg,
.cfk-mobile-menu__toggle svg {
  width: 21px;
  height: 21px;
}

.cfk-mini-cart__count {
  min-width: 19px;
  height: 19px;
  display: inline-grid;
  place-items: center;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--cfk-green-dark);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.cfk-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(15, 25, 31, .48);
  backdrop-filter: blur(2px);
}

.cfk-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  width: min(410px, 94vw);
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #fff;
  color: var(--cfk-text);
  box-shadow: -22px 0 50px rgba(15, 25, 31, .18);
}

.cfk-drawer__head {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--cfk-border);
}

.cfk-drawer__head h2 {
  margin: 2px 0 0;
  color: var(--cfk-ink);
  font-size: 22px;
  line-height: 1.1;
}

.cfk-drawer__eyebrow {
  color: var(--cfk-green-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.cfk-drawer__close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid var(--cfk-border);
  border-radius: 50%;
  background: #fff;
  color: var(--cfk-ink);
  cursor: pointer;
}

.cfk-mini-cart-dynamic {
  min-height: calc(100vh - 77px);
  display: flex;
  flex-direction: column;
}

.cfk-mini-cart__empty {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 30px 24px;
  text-align: center;
}

.cfk-mini-cart__empty-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 5px;
  border-radius: 50%;
  background: var(--cfk-blue-soft);
  color: var(--cfk-blue-dark);
}

.cfk-mini-cart__empty-icon svg {
  width: 27px;
  height: 27px;
}

.cfk-mini-cart__empty strong {
  color: var(--cfk-ink);
  font-size: 18px;
}

.cfk-mini-cart__empty p {
  max-width: 290px;
  margin: 0 0 8px;
  color: var(--cfk-muted);
  font-size: 13px;
  line-height: 1.55;
}

.cfk-mini-cart__items {
  flex: 1 1 auto;
  padding: 7px 18px;
}

.cfk-mini-cart__item {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) 34px;
  gap: 12px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--cfk-border);
}

.cfk-mini-cart__image {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #edf1f3;
  border-radius: 7px;
  background: #fff;
}

.cfk-mini-cart__product-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}

.cfk-mini-cart__item-body {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.cfk-mini-cart__title {
  color: var(--cfk-ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.cfk-mini-cart__meta {
  color: var(--cfk-muted);
  font-size: 12px;
}

.cfk-mini-cart__meta strong {
  color: var(--cfk-blue-dark);
}

.cfk-mini-cart__remove {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #7a858f;
}

.cfk-mini-cart__remove:hover,
.cfk-mini-cart__remove:focus-visible {
  background: #fff1f1;
  color: #9b2929;
}

.cfk-mini-cart__remove svg {
  width: 15px;
  height: 15px;
}

.cfk-mini-cart__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px 10px;
  border-top: 1px solid var(--cfk-border);
  color: var(--cfk-text);
}

.cfk-mini-cart__summary strong {
  color: var(--cfk-ink);
  font-size: 17px;
}

.cfk-mini-cart__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 20px;
}

.cfk-mini-cart__note {
  margin: 0;
  padding: 0 20px 22px;
  color: var(--cfk-muted);
  font-size: 11px;
  text-align: center;
}

.cfk-site-header__mobile {
  display: none;
}

.cfk-mobile-menu__drawer {
  width: min(430px, 94vw);
}

.cfk-mobile-menu__primary {
  padding: 12px 18px 4px;
}

.cfk-mobile-menu__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cfk-mobile-menu__links li + li {
  border-top: 1px solid #edf1f3;
}

.cfk-mobile-menu__links a {
  min-height: 47px;
  display: flex;
  align-items: center;
  color: var(--cfk-ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 650;
}

.cfk-mobile-menu__section {
  margin-top: 8px;
  padding: 18px;
  border-top: 1px solid var(--cfk-border);
}

.cfk-mobile-menu__section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 10px;
}

.cfk-mobile-menu__section-head h3 {
  margin: 0;
  color: var(--cfk-ink);
  font-size: 14px;
}

.cfk-mobile-menu__section-head a {
  color: var(--cfk-blue-dark);
  font-size: 12px;
  font-weight: 700;
}

.cfk-mobile-menu__categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.cfk-mobile-menu__categories > a {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--cfk-border);
  border-radius: 7px;
  color: var(--cfk-text);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
}

.cfk-mobile-menu__categories svg {
  width: 14px;
  height: 14px;
}

.cfk-mobile-menu__actions {
  display: grid;
  gap: 9px;
  padding: 2px 18px 18px;
}

.cfk-mobile-menu__contact {
  display: grid;
  gap: 10px;
  padding: 17px 18px 24px;
  border-top: 1px solid var(--cfk-border);
  background: var(--cfk-surface-alt);
}

.cfk-mobile-menu__contact a {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--cfk-text);
  text-decoration: none;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.cfk-mobile-menu__contact svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--cfk-blue-dark);
}

@media (max-width: 1100px) {
  .cfk-site-header__main {
    grid-template-columns: minmax(165px, 200px) minmax(250px, 1fr) auto;
    gap: 15px;
  }
  .cfk-header-action--icon span,
  .cfk-mini-cart__label {
    display: none;
  }
  .cfk-primary-nav__list a,
  .cfk-primary-nav .menu a {
    padding-inline: 7px;
    font-size: 12px;
  }
}

@media (max-width: 900px) {
  .cfk-site-header__desktop {
    display: none;
  }
  .cfk-site-header__mobile {
    display: block;
    padding-bottom: 10px;
  }
  .cfk-mobile-header__main {
    min-height: 62px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
  }
  .cfk-mobile-header__logo .cfk-brand-logo-image {
    max-width: 165px;
    max-height: 46px;
  }
  .cfk-mobile-header__logo .cfk-brand-logo__name {
    font-size: 20px;
  }
  .cfk-mobile-header__actions {
    display: flex;
    align-items: center;
    gap: 2px;
  }
  .cfk-mobile-header__actions .cfk-mini-cart__toggle,
  .cfk-mobile-menu__toggle {
    width: 42px;
    height: 42px;
    padding: 0;
  }
  .cfk-mobile-header__actions .cfk-mini-cart__label {
    display: none;
  }
  .cfk-mobile-header__actions .cfk-mini-cart__count {
    position: absolute;
    top: 1px;
    right: 0;
    min-width: 17px;
    height: 17px;
    font-size: 9px;
  }
  .cfk-mobile-header__search .cfk-product-search__field {
    min-height: 44px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .cfk-mobile-menu__categories {
    grid-template-columns: 1fr;
  }
  .cfk-mini-cart__actions {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   Corporate Furniture Kenya v0.4 — distinct compact commerce header
   ========================================================= */
.cfk-site-header--v2 {
  border-bottom: 0;
  box-shadow: 0 1px 0 rgba(25, 47, 60, .08);
}

.cfk-header-utility {
  min-height: 32px;
  background: #063f5c;
  color: rgba(255,255,255,.86);
}

.cfk-header-utility__inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cfk-header-utility__positioning,
.cfk-header-utility__links {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .01em;
}

.cfk-header-utility__marker {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--cfk-green);
}

.cfk-header-utility__divider {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,.28);
}

.cfk-header-utility__links > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  color: rgba(255,255,255,.9);
  text-decoration: none;
  white-space: nowrap;
}

.cfk-header-utility__links > a:hover,
.cfk-header-utility__links > a:focus-visible {
  color: #fff;
}

.cfk-header-utility__links svg {
  width: 14px;
  height: 14px;
}

.cfk-header-utility__quote {
  margin-left: 4px;
  padding-left: 13px;
  border-left: 1px solid rgba(255,255,255,.24);
  color: #fff !important;
  font-weight: 750 !important;
}

.cfk-header-utility__quote svg {
  width: 13px !important;
  height: 13px !important;
}

.cfk-header-commerce-bar {
  background: #fff;
}

.cfk-header-commerce-bar__inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(205px, 235px) auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
}

.cfk-header-commerce-bar__brand .cfk-brand-logo-image,
.cfk-header-commerce-bar__brand .cfk-brand-logo-svg {
  max-width: 225px;
  max-height: 60px;
}

.cfk-header-commerce-bar__catalogue .cfk-browse-categories {
  min-width: 0;
}

.cfk-header-commerce-bar__catalogue .cfk-browse-categories__toggle {
  height: 40px;
  min-width: auto;
  padding: 0 13px;
  border: 1px solid #cfdbe0;
  border-radius: 7px;
  background: #fff;
  color: var(--cfk-blue-dark);
  font-size: 12px;
}

.cfk-header-commerce-bar__catalogue .cfk-browse-categories__toggle:hover,
.cfk-header-commerce-bar__catalogue .cfk-browse-categories__toggle:focus-visible,
.cfk-header-commerce-bar__catalogue .cfk-browse-categories.is-open .cfk-browse-categories__toggle {
  border-color: var(--cfk-blue-dark);
  background: var(--cfk-blue-soft);
}

.cfk-header-commerce-bar__catalogue .cfk-browse-categories__panel {
  top: calc(100% + 15px);
  width: 325px;
  border-radius: 10px;
}

.cfk-header-commerce-bar__nav {
  justify-self: center;
  min-width: 0;
}

.cfk-header-commerce-bar__nav .cfk-primary-nav__list,
.cfk-header-commerce-bar__nav .menu {
  justify-content: center;
  gap: 0;
}

.cfk-header-commerce-bar__nav .cfk-primary-nav__list a,
.cfk-header-commerce-bar__nav .menu a {
  min-height: 40px;
  padding: 8px 8px;
  border-radius: 0;
  background: transparent;
  color: #2d3942;
  font-size: 12px;
  font-weight: 650;
}

.cfk-header-commerce-bar__nav .cfk-primary-nav__list > li > a::after,
.cfk-header-commerce-bar__nav .menu > li > a::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 1px;
  height: 2px;
  background: var(--cfk-green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .16s ease;
}

.cfk-header-commerce-bar__nav .cfk-primary-nav__list > li > a,
.cfk-header-commerce-bar__nav .menu > li > a {
  position: relative;
}

.cfk-header-commerce-bar__nav .cfk-primary-nav__list > li > a:hover::after,
.cfk-header-commerce-bar__nav .cfk-primary-nav__list > li > a:focus-visible::after,
.cfk-header-commerce-bar__nav .menu > li > a:hover::after,
.cfk-header-commerce-bar__nav .menu > li > a:focus-visible::after,
.cfk-header-commerce-bar__nav .current-menu-item > a::after {
  transform: scaleX(1);
}

.cfk-header-commerce-bar__nav .cfk-primary-nav__list a:hover,
.cfk-header-commerce-bar__nav .cfk-primary-nav__list a:focus-visible,
.cfk-header-commerce-bar__nav .menu a:hover,
.cfk-header-commerce-bar__nav .menu a:focus-visible,
.cfk-header-commerce-bar__nav .current-menu-item > a {
  background: transparent;
  color: var(--cfk-blue-dark);
}

.cfk-header-commerce-bar__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}

.cfk-header-quick-action,
.cfk-header-commerce-bar__actions .cfk-mini-cart__toggle,
.cfk-header-commerce-bar__actions .cfk-mobile-menu__toggle {
  position: relative;
  min-width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 8px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #30414b;
  text-decoration: none;
  font: inherit;
  font-size: 11px;
  font-weight: 650;
  cursor: pointer;
  white-space: nowrap;
}

.cfk-header-quick-action:hover,
.cfk-header-quick-action:focus-visible,
.cfk-header-commerce-bar__actions .cfk-mini-cart__toggle:hover,
.cfk-header-commerce-bar__actions .cfk-mini-cart__toggle:focus-visible {
  background: var(--cfk-surface-alt);
  color: var(--cfk-blue-dark);
}

.cfk-header-quick-action svg,
.cfk-header-commerce-bar__actions .cfk-mini-cart__toggle svg {
  width: 19px;
  height: 19px;
}

.cfk-header-quick-action--whatsapp {
  color: #16783a;
}

.cfk-header-commerce-bar__actions .cfk-mini-cart__count {
  position: absolute;
  top: 2px;
  right: 1px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  font-size: 9px;
}

.cfk-header-commerce-bar__actions .cfk-mini-cart__label {
  font-size: 11px;
}

.cfk-header-search-tray {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 115;
  padding: 20px 0;
  border-top: 1px solid #e7edf0;
  background: #fff;
  box-shadow: 0 18px 36px rgba(18, 38, 50, .14);
}

.cfk-header-search-tray__inner {
  display: grid;
  grid-template-columns: minmax(190px, 240px) minmax(380px, 760px) 42px;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.cfk-header-search-tray__intro {
  display: grid;
  gap: 3px;
}

.cfk-header-search-tray__eyebrow {
  color: var(--cfk-green-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.cfk-header-search-tray__intro strong {
  color: var(--cfk-ink);
  font-size: 14px;
  line-height: 1.3;
}

.cfk-header-search-tray__search {
  min-width: 0;
}

.cfk-header-search-tray .cfk-product-search__field {
  min-height: 48px;
  border-color: #bfcdd4;
  border-radius: 7px;
}

.cfk-header-search-tray__close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--cfk-border);
  border-radius: 50%;
  background: #fff;
  color: var(--cfk-text);
  cursor: pointer;
}

.cfk-header-search-tray__close:hover,
.cfk-header-search-tray__close:focus-visible {
  background: var(--cfk-surface-alt);
  color: var(--cfk-blue-dark);
}

.cfk-header-search-tray__close svg {
  width: 18px;
  height: 18px;
}

.cfk-site-header--v2 .cfk-search-results {
  top: calc(100% + 7px);
}

@media (max-width: 1220px) {
  .cfk-header-utility__links > a:nth-child(2),
  .cfk-header-commerce-bar__actions .cfk-header-quick-action > span,
  .cfk-header-commerce-bar__actions .cfk-mini-cart__label {
    display: none;
  }
  .cfk-header-commerce-bar__inner {
    grid-template-columns: minmax(155px, 185px) auto minmax(0, 1fr) auto;
    gap: 14px;
  }
  .cfk-header-commerce-bar__nav .cfk-primary-nav__list a,
  .cfk-header-commerce-bar__nav .menu a {
    padding-inline: 6px;
    font-size: 11.5px;
  }
}

@media (max-width: 1020px) {
  .cfk-site-header__desktop {
    display: none;
  }
  .cfk-site-header__mobile {
    display: block;
    padding: 0;
  }
  .cfk-mobile-header__main {
    min-height: 64px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
  }
  .cfk-mobile-header__logo .cfk-brand-logo-image,
  .cfk-mobile-header__logo .cfk-brand-logo-svg {
    max-width: 170px;
    max-height: 46px;
  }
  .cfk-mobile-header__logo .cfk-brand-logo--svg {
    width: 170px;
  }
  .cfk-mobile-header__actions {
    display: flex;
    align-items: center;
    gap: 1px;
  }
  .cfk-mobile-header__actions .cfk-header-quick-action,
  .cfk-mobile-header__actions .cfk-mini-cart__toggle,
  .cfk-mobile-header__actions .cfk-mobile-menu__toggle {
    position: relative;
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    padding: 0;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: var(--cfk-blue-dark);
  }
  .cfk-mobile-header__actions .cfk-mini-cart__label {
    display: none;
  }
  .cfk-header-search-tray--mobile {
    position: absolute;
    padding: 12px 0;
  }
  .cfk-header-search-tray--mobile .cfk-header-search-tray__inner {
    grid-template-columns: minmax(0, 1fr) 40px;
    gap: 8px;
  }
  .cfk-header-search-tray--mobile .cfk-header-search-tray__intro {
    display: none;
  }
  .cfk-header-search-tray--mobile .cfk-header-search-tray__close {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .cfk-mobile-header__logo .cfk-brand-logo-image,
  .cfk-mobile-header__logo .cfk-brand-logo-svg {
    max-width: 154px;
  }
  .cfk-mobile-header__logo .cfk-brand-logo--svg {
    width: 154px;
  }
  .cfk-mobile-header__logo .cfk-brand-logo__name {
    font-size: 18px;
  }
}

/* v0.8.0: compact desktop search panel.
 * Keep search attached to the commerce header instead of expanding across the page.
 */
@media (min-width: 1021px) {
  .cfk-site-header--v2 .cfk-header-search-tray:not(.cfk-header-search-tray--mobile) {
    left: auto;
    right: max(24px, calc((100vw - var(--cfk-container, 1240px)) / 2));
    width: min(760px, calc(100vw - 48px));
    padding: 10px;
    border: 1px solid var(--cfk-border, #dce3e7);
    border-top-color: #cbd8de;
    border-radius: 0 0 10px 10px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(18, 38, 50, .13);
  }

  .cfk-site-header--v2 .cfk-header-search-tray:not(.cfk-header-search-tray--mobile) .cfk-header-search-tray__inner.cfk-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 40px;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    gap: 8px;
  }

  .cfk-site-header--v2 .cfk-header-search-tray:not(.cfk-header-search-tray--mobile) .cfk-header-search-tray__intro {
    display: none;
  }

  .cfk-site-header--v2 .cfk-header-search-tray:not(.cfk-header-search-tray--mobile) .cfk-product-search__field {
    min-height: 44px;
    border-color: #b9c8cf;
    border-radius: 7px;
    box-shadow: none !important;
    outline: 0;
  }

  .cfk-site-header--v2 .cfk-header-search-tray:not(.cfk-header-search-tray--mobile) .cfk-product-search__field:focus {
    border-color: var(--cfk-blue-dark, #005a84);
    box-shadow: 0 0 0 2px rgba(0, 90, 132, .10) !important;
  }

  .cfk-site-header--v2 .cfk-header-search-tray:not(.cfk-header-search-tray--mobile) .cfk-header-search-tray__close {
    width: 40px;
    height: 40px;
    align-self: center;
  }
}


/* v0.8.1 mini-cart drawer refinement.
 * Keep the drawer compact, prevent theme button colours, and account for WP admin bar.
 */
.cfk-mini-cart__drawer {
  bottom: auto !important;
  max-height: calc(100dvh - 18px);
  height: auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

body.admin-bar .cfk-mini-cart__drawer {
  top: 32px !important;
  max-height: calc(100dvh - 50px);
}

.cfk-mini-cart__drawer .cfk-drawer__head {
  flex: 0 0 auto;
}

.cfk-mini-cart__drawer .cfk-mini-cart-dynamic {
  min-height: 0 !important;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cfk-mini-cart__drawer .cfk-mini-cart__items {
  flex: 0 1 auto;
  max-height: min(52dvh, 520px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #c7d3d9 transparent;
}

.cfk-mini-cart__drawer .cfk-mini-cart__summary,
.cfk-mini-cart__drawer .cfk-mini-cart__actions,
.cfk-mini-cart__drawer .cfk-mini-cart__note {
  flex: 0 0 auto;
}

.cfk-mini-cart__drawer .cfk-mini-cart__summary {
  margin-top: 0;
  background: #fff;
}

.cfk-mini-cart__drawer .cfk-mini-cart__actions {
  background: #fff;
}

.cfk-mini-cart__drawer .cfk-mini-cart__note {
  background: #fff;
}

/* Explicitly neutralise Elementor/theme button hover/focus leakage. */
.cfk-site-header button.cfk-drawer__close,
.cfk-site-header button.cfk-drawer__close:hover,
.cfk-site-header button.cfk-drawer__close:focus,
.cfk-site-header button.cfk-drawer__close:active {
  width: 42px !important;
  min-width: 42px !important;
  height: 42px !important;
  min-height: 42px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid var(--cfk-border, #dce3e7) !important;
  border-radius: 50% !important;
  background: #fff !important;
  color: var(--cfk-ink, #202633) !important;
  box-shadow: none !important;
  transform: none !important;
}

.cfk-site-header button.cfk-drawer__close:hover,
.cfk-site-header button.cfk-drawer__close:focus {
  border-color: #a9c8d6 !important;
  background: var(--cfk-blue-soft, #eef7fa) !important;
  color: var(--cfk-blue-dark, #005a84) !important;
}

.cfk-site-header button.cfk-drawer__close:focus-visible {
  outline: 2px solid var(--cfk-blue-dark, #005a84) !important;
  outline-offset: 3px;
}

.cfk-mini-cart__drawer .cfk-mini-cart__remove:hover,
.cfk-mini-cart__drawer .cfk-mini-cart__remove:focus-visible {
  background: #f2f6f8 !important;
  color: var(--cfk-blue-dark, #005a84) !important;
}

@media (max-width: 782px) {
  body.admin-bar .cfk-mini-cart__drawer {
    top: 46px !important;
    max-height: calc(100dvh - 58px);
  }
}

@media (max-width: 767px) {
  .cfk-mini-cart__drawer {
    width: min(400px, calc(100vw - 12px));
    max-height: calc(100dvh - 10px);
  }

  .cfk-mini-cart__drawer .cfk-mini-cart__items {
    max-height: min(50dvh, 430px);
  }

  body.admin-bar .cfk-mini-cart__drawer {
    max-height: calc(100dvh - 52px);
  }
}


/* v0.8.2 drawer visibility hotfix.
 * Author-level display:flex in v0.8.1 overrode the browser's [hidden] rule.
 */
.cfk-site-header .cfk-drawer[hidden],
.cfk-site-header .cfk-drawer-overlay[hidden] {
  display: none !important;
}

.cfk-site-header .cfk-drawer:not([hidden]) {
  visibility: visible;
}



/* v0.8.3: true floating mini-cart popover.
 * Desktop/mobile cart is a compact anchored panel, not a side drawer.
 */
.cfk-mini-cart {
  position: relative;
}

.cfk-mini-cart > .cfk-drawer-overlay {
  display: none !important;
}

.cfk-site-header .cfk-mini-cart__drawer.cfk-mini-cart__popover {
  position: absolute !important;
  top: calc(100% + 14px) !important;
  right: 0 !important;
  bottom: auto !important;
  left: auto !important;
  width: min(390px, calc(100vw - 28px));
  max-height: min(72dvh, 620px);
  overflow: hidden;
  border: 1px solid var(--cfk-border, #dce3e7);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(15, 25, 31, .18);
}

body.admin-bar .cfk-site-header .cfk-mini-cart__drawer.cfk-mini-cart__popover {
  top: calc(100% + 14px) !important;
  max-height: min(72dvh, 620px);
}

.cfk-mini-cart__popover .cfk-drawer__head {
  min-height: 66px;
  padding: 14px 16px;
}

.cfk-mini-cart__popover .cfk-drawer__head h2 {
  font-size: 1.1rem;
}

.cfk-mini-cart__popover .cfk-drawer__eyebrow {
  font-size: .62rem;
}

.cfk-mini-cart__popover .cfk-drawer__close,
.cfk-site-header .cfk-mini-cart__popover button.cfk-drawer__close,
.cfk-site-header .cfk-mini-cart__popover button.cfk-drawer__close:hover,
.cfk-site-header .cfk-mini-cart__popover button.cfk-drawer__close:focus {
  width: 34px !important;
  min-width: 34px !important;
  height: 34px !important;
  min-height: 34px !important;
}

.cfk-mini-cart__popover .cfk-mini-cart__items {
  max-height: min(45dvh, 390px);
  padding: 4px 14px;
}

.cfk-mini-cart__popover .cfk-mini-cart__item {
  grid-template-columns: 58px minmax(0, 1fr) 28px;
  gap: 10px;
  padding: 11px 0;
}

.cfk-mini-cart__popover .cfk-mini-cart__image {
  width: 58px;
  height: 58px;
}

.cfk-mini-cart__popover .cfk-mini-cart__title {
  font-size: .78rem;
}

.cfk-mini-cart__popover .cfk-mini-cart__meta {
  font-size: .7rem;
}

.cfk-mini-cart__popover .cfk-mini-cart__remove {
  width: 28px;
  height: 28px;
}

.cfk-mini-cart__popover .cfk-mini-cart__summary {
  padding: 14px 16px 8px;
}

.cfk-mini-cart__popover .cfk-mini-cart__summary strong {
  font-size: .98rem;
}

.cfk-mini-cart__popover .cfk-mini-cart__actions {
  gap: 8px;
  padding: 8px 16px;
}

.cfk-mini-cart__popover .cfk-mini-cart__note {
  padding: 0 16px 14px;
  font-size: .66rem;
}

.cfk-mini-cart__popover .cfk-mini-cart__empty {
  min-height: 220px;
  padding: 28px 20px;
}

@media (max-width: 767px) {
  .cfk-site-header .cfk-mini-cart__drawer.cfk-mini-cart__popover {
    position: fixed !important;
    top: 74px !important;
    right: 12px !important;
    width: calc(100vw - 24px);
    max-height: calc(100dvh - 92px);
    border-radius: 14px;
  }

  body.admin-bar .cfk-site-header .cfk-mini-cart__drawer.cfk-mini-cart__popover {
    top: 102px !important;
    max-height: calc(100dvh - 116px);
  }

  .cfk-mini-cart__popover .cfk-mini-cart__items {
    max-height: min(48dvh, 420px);
  }
}


/* v0.9.0 search prefix lock.
 * Elementor/theme input rules were overriding the search field's left padding,
 * allowing placeholder text to sit under the magnifier.
 */
.cfk-site-header .cfk-product-search {
  position: relative;
}

.cfk-site-header .cfk-product-search .cfk-product-search__icon {
  position: absolute !important;
  z-index: 3;
  left: 0 !important;
  top: 0 !important;
  width: 46px !important;
  height: 100% !important;
  display: grid !important;
  place-items: center !important;
  transform: none !important;
  color: var(--cfk-muted, #68717d) !important;
  pointer-events: none !important;
}

.cfk-site-header .cfk-product-search .cfk-product-search__icon svg {
  width: 18px !important;
  height: 18px !important;
}

.cfk-site-header .cfk-product-search input.cfk-product-search__field,
.cfk-site-header .cfk-header-search-tray input.cfk-product-search__field,
.cfk-site-header .cfk-mobile-header__search input.cfk-product-search__field {
  box-sizing: border-box !important;
  width: 100% !important;
  padding-left: 48px !important;
  padding-right: 52px !important;
  text-indent: 0 !important;
}

.cfk-site-header .cfk-product-search input.cfk-product-search__field::placeholder {
  opacity: 1 !important;
  color: #8a949d !important;
}

.cfk-site-header input[type="search"].cfk-product-search__field::-webkit-search-decoration,
.cfk-site-header input[type="search"].cfk-product-search__field::-webkit-search-cancel-button,
.cfk-site-header input[type="search"].cfk-product-search__field::-webkit-search-results-button,
.cfk-site-header input[type="search"].cfk-product-search__field::-webkit-search-results-decoration {
  -webkit-appearance: none;
}


/* v1.4.2 mobile logo correction.
 * The horizontal lockup gets enough width to keep both the symbol and wordmark
 * readable while leaving fixed space for Search / Cart / Menu actions.
 */
@media (max-width: 1020px) {
  .cfk-mobile-header__logo {
    min-width: 0;
    display: flex;
    align-items: center;
  }

  .cfk-mobile-header__logo .cfk-brand-logo,
  .cfk-mobile-header__logo .cfk-brand-logo--svg {
    width: clamp(160px, 38vw, 188px) !important;
    max-width: 100% !important;
  }

  .cfk-mobile-header__logo .cfk-brand-logo-image,
  .cfk-mobile-header__logo .cfk-brand-logo-svg {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    max-height: 52px !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

@media (max-width: 380px) {
  .cfk-mobile-header__logo .cfk-brand-logo,
  .cfk-mobile-header__logo .cfk-brand-logo--svg {
    width: 150px !important;
  }
}


/* v1.4.4 header action state lock.
 * Elementor/global button rules may load after component CSS. These controls
 * must remain inside the Corporate Furniture Kenya palette in every interaction state.
 */
.cfk-site-header button.cfk-header-quick-action,
.cfk-site-header button.cfk-mini-cart__toggle,
.cfk-site-header button.cfk-mobile-menu__toggle {
  appearance: none !important;
  -webkit-appearance: none !important;
  min-width: 42px !important;
  min-height: 42px !important;
  margin: 0 !important;
  padding: 7px 8px !important;
  border: 0 !important;
  border-radius: 7px !important;
  background: transparent !important;
  color: #30414b !important;
  box-shadow: none !important;
  text-shadow: none !important;
  transform: none !important;
  font: inherit !important;
  font-size: 11px !important;
  font-weight: 650 !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
}

.cfk-site-header button.cfk-header-quick-action:hover,
.cfk-site-header button.cfk-header-quick-action:focus,
.cfk-site-header button.cfk-header-quick-action:focus-visible,
.cfk-site-header button.cfk-header-quick-action:active,
.cfk-site-header button.cfk-header-quick-action[aria-expanded="true"],
.cfk-site-header button.cfk-mini-cart__toggle:hover,
.cfk-site-header button.cfk-mini-cart__toggle:focus,
.cfk-site-header button.cfk-mini-cart__toggle:focus-visible,
.cfk-site-header button.cfk-mini-cart__toggle:active,
.cfk-site-header button.cfk-mini-cart__toggle[aria-expanded="true"],
.cfk-site-header button.cfk-mobile-menu__toggle:hover,
.cfk-site-header button.cfk-mobile-menu__toggle:focus,
.cfk-site-header button.cfk-mobile-menu__toggle:focus-visible,
.cfk-site-header button.cfk-mobile-menu__toggle:active,
.cfk-site-header button.cfk-mobile-menu__toggle[aria-expanded="true"] {
  border: 0 !important;
  background: var(--cfk-blue-soft, #eef7fa) !important;
  color: var(--cfk-blue-dark, #005a84) !important;
  box-shadow: none !important;
  text-shadow: none !important;
  transform: none !important;
}

.cfk-site-header button.cfk-header-quick-action:focus-visible,
.cfk-site-header button.cfk-mini-cart__toggle:focus-visible,
.cfk-site-header button.cfk-mobile-menu__toggle:focus-visible {
  outline: 2px solid var(--cfk-blue-dark, #005a84) !important;
  outline-offset: 2px !important;
}

/* WhatsApp remains semantic green even when global button/link states fire. */
.cfk-site-header .cfk-header-quick-action--whatsapp,
.cfk-site-header .cfk-header-quick-action--whatsapp:hover,
.cfk-site-header .cfk-header-quick-action--whatsapp:focus,
.cfk-site-header .cfk-header-quick-action--whatsapp:focus-visible {
  color: #16783a !important;
}

/* Cart count stays Corporate Furniture Kenya green and cannot inherit the surrounding button. */
.cfk-site-header .cfk-mini-cart__count,
.cfk-site-header button.cfk-mini-cart__toggle:hover .cfk-mini-cart__count,
.cfk-site-header button.cfk-mini-cart__toggle:focus .cfk-mini-cart__count,
.cfk-site-header button.cfk-mini-cart__toggle[aria-expanded="true"] .cfk-mini-cart__count {
  background: var(--cfk-green-dark, #3d8500) !important;
  color: #fff !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Keep desktop Search/Cart footprint compact even if Elementor has a large
 * global button padding/typography preset.
 */
@media (min-width: 1021px) {
  .cfk-site-header .cfk-header-commerce-bar__actions button.cfk-header-quick-action,
  .cfk-site-header .cfk-header-commerce-bar__actions button.cfk-mini-cart__toggle {
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
    padding: 7px 8px !important;
  }
}


/* v1.4.5 search tray control lock.
 * The tray submit + close buttons are separate controls from the header toggle,
 * so Elementor/global button styles must be neutralised explicitly here too.
 */
.cfk-site-header .cfk-header-search-tray button.cfk-product-search__submit,
.cfk-site-header .cfk-header-search-tray button.cfk-product-search__submit:hover,
.cfk-site-header .cfk-header-search-tray button.cfk-product-search__submit:focus,
.cfk-site-header .cfk-header-search-tray button.cfk-product-search__submit:focus-visible,
.cfk-site-header .cfk-header-search-tray button.cfk-product-search__submit:active {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 38px !important;
  min-width: 38px !important;
  height: 38px !important;
  min-height: 38px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 6px !important;
  background: var(--cfk-blue-dark, #005a84) !important;
  color: #fff !important;
  box-shadow: none !important;
  text-shadow: none !important;
  transform: none !important;
}

.cfk-site-header .cfk-header-search-tray button.cfk-product-search__submit:hover,
.cfk-site-header .cfk-header-search-tray button.cfk-product-search__submit:focus {
  background: #004b70 !important;
  color: #fff !important;
}

.cfk-site-header .cfk-header-search-tray button.cfk-product-search__submit:focus-visible {
  outline: 2px solid var(--cfk-blue-dark, #005a84) !important;
  outline-offset: 2px !important;
}

.cfk-site-header .cfk-header-search-tray button.cfk-product-search__submit svg {
  width: 17px !important;
  height: 17px !important;
  stroke: currentColor !important;
  color: inherit !important;
}

.cfk-site-header .cfk-header-search-tray button.cfk-header-search-tray__close,
.cfk-site-header .cfk-header-search-tray button.cfk-header-search-tray__close:hover,
.cfk-site-header .cfk-header-search-tray button.cfk-header-search-tray__close:focus,
.cfk-site-header .cfk-header-search-tray button.cfk-header-search-tray__close:focus-visible,
.cfk-site-header .cfk-header-search-tray button.cfk-header-search-tray__close:active {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 40px !important;
  min-width: 40px !important;
  height: 40px !important;
  min-height: 40px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid var(--cfk-border, #dce3e7) !important;
  border-radius: 50% !important;
  background: #fff !important;
  color: #30414b !important;
  box-shadow: none !important;
  text-shadow: none !important;
  transform: none !important;
}

.cfk-site-header .cfk-header-search-tray button.cfk-header-search-tray__close:hover,
.cfk-site-header .cfk-header-search-tray button.cfk-header-search-tray__close:focus {
  border-color: #a9c8d6 !important;
  background: var(--cfk-blue-soft, #eef7fa) !important;
  color: var(--cfk-blue-dark, #005a84) !important;
}

.cfk-site-header .cfk-header-search-tray button.cfk-header-search-tray__close:focus-visible {
  outline: 2px solid var(--cfk-blue-dark, #005a84) !important;
  outline-offset: 2px !important;
}

.cfk-site-header .cfk-header-search-tray button.cfk-header-search-tray__close svg {
  width: 18px !important;
  height: 18px !important;
  stroke: currentColor !important;
  color: inherit !important;
}

@media (max-width: 1020px) {
  .cfk-site-header .cfk-header-search-tray--mobile button.cfk-header-search-tray__close {
    width: 40px !important;
    min-width: 40px !important;
    height: 40px !important;
    min-height: 40px !important;
  }
}


/* v1.4.6 catalogue trigger state lock.
 * Keep the Catalogue control inside the Corporate Furniture Kenya visual system regardless of
 * Elementor/global button presets or open/expanded state.
 */
.cfk-site-header button.cfk-catalogue-trigger,
.cfk-site-header button.cfk-catalogue-trigger:hover,
.cfk-site-header button.cfk-catalogue-trigger:focus,
.cfk-site-header button.cfk-catalogue-trigger:focus-visible,
.cfk-site-header button.cfk-catalogue-trigger:active,
.cfk-site-header button.cfk-catalogue-trigger[aria-expanded="true"],
.cfk-site-header button.cfk-category-trigger,
.cfk-site-header button.cfk-category-trigger:hover,
.cfk-site-header button.cfk-category-trigger:focus,
.cfk-site-header button.cfk-category-trigger:focus-visible,
.cfk-site-header button.cfk-category-trigger:active,
.cfk-site-header button.cfk-category-trigger[aria-expanded="true"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  margin: 0 !important;
  padding: 9px 13px !important;
  border: 1px solid #cbdbe2 !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: var(--cfk-blue-dark, #005a84) !important;
  box-shadow: none !important;
  text-shadow: none !important;
  transform: none !important;
  font: inherit !important;
  font-size: .78rem !important;
  font-weight: 750 !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
}

.cfk-site-header button.cfk-catalogue-trigger:hover,
.cfk-site-header button.cfk-catalogue-trigger:focus,
.cfk-site-header button.cfk-category-trigger:hover,
.cfk-site-header button.cfk-category-trigger:focus {
  border-color: #9fc1d0 !important;
  background: var(--cfk-blue-soft, #eef7fa) !important;
  color: var(--cfk-blue-dark, #005a84) !important;
}

.cfk-site-header button.cfk-catalogue-trigger[aria-expanded="true"],
.cfk-site-header button.cfk-category-trigger[aria-expanded="true"] {
  border-color: var(--cfk-blue-dark, #005a84) !important;
  background: var(--cfk-blue-soft, #eef7fa) !important;
  color: var(--cfk-blue-dark, #005a84) !important;
}

.cfk-site-header button.cfk-catalogue-trigger:focus-visible,
.cfk-site-header button.cfk-category-trigger:focus-visible {
  outline: 2px solid var(--cfk-blue-dark, #005a84) !important;
  outline-offset: 2px !important;
}

.cfk-site-header button.cfk-catalogue-trigger svg,
.cfk-site-header button.cfk-category-trigger svg {
  color: inherit !important;
  stroke: currentColor !important;
  fill: none !important;
}

/* Auto-detected catalogue classes */
.cfk-site-header button.cfk-header-commerce-bar__catalogue,
.cfk-site-header button.cfk-header-commerce-bar__catalogue:hover,
.cfk-site-header button.cfk-header-commerce-bar__catalogue:focus,
.cfk-site-header button.cfk-header-commerce-bar__catalogue:focus-visible,
.cfk-site-header button.cfk-header-commerce-bar__catalogue:active,
.cfk-site-header button.cfk-header-commerce-bar__catalogue[aria-expanded="true"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  border: 1px solid #cbdbe2 !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: var(--cfk-blue-dark, #005a84) !important;
  box-shadow: none !important;
  text-shadow: none !important;
  transform: none !important;
}
.cfk-site-header button.cfk-header-commerce-bar__catalogue:hover,
.cfk-site-header button.cfk-header-commerce-bar__catalogue:focus,
.cfk-site-header button.cfk-header-commerce-bar__catalogue[aria-expanded="true"] {
  border-color: #9fc1d0 !important;
  background: var(--cfk-blue-soft, #eef7fa) !important;
  color: var(--cfk-blue-dark, #005a84) !important;
}
.cfk-site-header button.cfk-header-commerce-bar__catalogue:focus-visible {
  outline: 2px solid var(--cfk-blue-dark, #005a84) !important;
  outline-offset: 2px !important;
}


/* Actual desktop Catalogue button rendered by CFK_Header::render_browse_categories(). */
.cfk-site-header .cfk-header-commerce-bar__catalogue button.cfk-browse-categories__toggle,
.cfk-site-header .cfk-header-commerce-bar__catalogue button.cfk-browse-categories__toggle:hover,
.cfk-site-header .cfk-header-commerce-bar__catalogue button.cfk-browse-categories__toggle:focus,
.cfk-site-header .cfk-header-commerce-bar__catalogue button.cfk-browse-categories__toggle:focus-visible,
.cfk-site-header .cfk-header-commerce-bar__catalogue button.cfk-browse-categories__toggle:active,
.cfk-site-header .cfk-header-commerce-bar__catalogue .cfk-browse-categories.is-open button.cfk-browse-categories__toggle,
.cfk-site-header .cfk-header-commerce-bar__catalogue button.cfk-browse-categories__toggle[aria-expanded="true"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  margin: 0 !important;
  padding: 9px 13px !important;
  border: 1px solid #cbdbe2 !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: var(--cfk-blue-dark, #005a84) !important;
  box-shadow: none !important;
  text-shadow: none !important;
  transform: none !important;
  font: inherit !important;
  font-size: .78rem !important;
  font-weight: 750 !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
}

.cfk-site-header .cfk-header-commerce-bar__catalogue button.cfk-browse-categories__toggle:hover,
.cfk-site-header .cfk-header-commerce-bar__catalogue button.cfk-browse-categories__toggle:focus,
.cfk-site-header .cfk-header-commerce-bar__catalogue .cfk-browse-categories.is-open button.cfk-browse-categories__toggle,
.cfk-site-header .cfk-header-commerce-bar__catalogue button.cfk-browse-categories__toggle[aria-expanded="true"] {
  border-color: #9fc1d0 !important;
  background: var(--cfk-blue-soft, #eef7fa) !important;
  color: var(--cfk-blue-dark, #005a84) !important;
}

.cfk-site-header .cfk-header-commerce-bar__catalogue button.cfk-browse-categories__toggle:focus-visible {
  outline: 2px solid var(--cfk-blue-dark, #005a84) !important;
  outline-offset: 2px !important;
}

.cfk-site-header .cfk-header-commerce-bar__catalogue button.cfk-browse-categories__toggle svg {
  color: inherit !important;
  stroke: currentColor !important;
}


/* v1.4.7 header fit + overflow correction.
 * v1.4.6's Catalogue state lock introduced vertical padding on a button that
 * was designed around a fixed 40px height, allowing the chevron to spill below.
 * Lock dimensions and make the whole desktop header resistant to squeeze.
 */
.cfk-site-header,
.cfk-site-header * {
  min-width: 0;
}

.cfk-site-header .cfk-header-commerce-bar__inner {
  grid-template-columns: minmax(190px, 220px) auto minmax(0, 1fr) auto;
  column-gap: clamp(10px, 1.1vw, 18px);
}

.cfk-site-header .cfk-header-commerce-bar__brand {
  min-width: 0;
}

.cfk-site-header .cfk-header-commerce-bar__brand .cfk-brand-logo,
.cfk-site-header .cfk-header-commerce-bar__brand .cfk-brand-logo--svg {
  width: min(100%, 220px);
}

.cfk-site-header .cfk-header-commerce-bar__catalogue {
  align-self: center;
  min-width: 0;
}

/* Actual Catalogue trigger: fixed physical box, no vertical overflow. */
.cfk-site-header .cfk-header-commerce-bar__catalogue button.cfk-browse-categories__toggle,
.cfk-site-header .cfk-header-commerce-bar__catalogue button.cfk-browse-categories__toggle:hover,
.cfk-site-header .cfk-header-commerce-bar__catalogue button.cfk-browse-categories__toggle:focus,
.cfk-site-header .cfk-header-commerce-bar__catalogue button.cfk-browse-categories__toggle:focus-visible,
.cfk-site-header .cfk-header-commerce-bar__catalogue button.cfk-browse-categories__toggle:active,
.cfk-site-header .cfk-header-commerce-bar__catalogue button.cfk-browse-categories__toggle[aria-expanded="true"],
.cfk-site-header .cfk-header-commerce-bar__catalogue .cfk-browse-categories.is-open button.cfk-browse-categories__toggle {
  box-sizing: border-box !important;
  width: auto !important;
  min-width: 108px !important;
  max-width: 118px !important;
  height: 42px !important;
  min-height: 42px !important;
  max-height: 42px !important;
  margin: 0 !important;
  padding: 0 11px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  flex-wrap: nowrap !important;
  gap: 7px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  line-height: 1 !important;
}

.cfk-site-header .cfk-header-commerce-bar__catalogue .cfk-browse-categories__toggle > span:not(.cfk-browse-categories__chevron) {
  display: block;
  min-width: 0;
  line-height: 1 !important;
}

.cfk-site-header .cfk-header-commerce-bar__catalogue .cfk-browse-categories__chevron {
  flex: 0 0 14px !important;
  width: 14px !important;
  height: 14px !important;
  margin-left: auto !important;
  display: inline-grid !important;
  place-items: center !important;
  line-height: 0 !important;
}

.cfk-site-header .cfk-header-commerce-bar__catalogue .cfk-browse-categories__chevron svg {
  display: block !important;
  width: 14px !important;
  height: 14px !important;
}

/* Nav must shrink, but never wrap into a second header line. */
.cfk-site-header .cfk-header-commerce-bar__nav {
  min-width: 0;
  overflow: hidden;
}

.cfk-site-header .cfk-header-commerce-bar__nav .cfk-primary-nav__list,
.cfk-site-header .cfk-header-commerce-bar__nav .menu {
  min-width: 0;
  flex-wrap: nowrap !important;
  white-space: nowrap;
}

.cfk-site-header .cfk-header-commerce-bar__nav .cfk-primary-nav__list > li,
.cfk-site-header .cfk-header-commerce-bar__nav .menu > li {
  flex: 0 1 auto;
  min-width: 0;
}

.cfk-site-header .cfk-header-commerce-bar__nav .cfk-primary-nav__list a,
.cfk-site-header .cfk-header-commerce-bar__nav .menu a {
  padding-inline: clamp(5px, .5vw, 8px);
  white-space: nowrap;
}

/* Header actions remain one line and use fixed-size icon/action boxes. */
.cfk-site-header .cfk-header-commerce-bar__actions {
  flex: 0 0 auto;
  flex-wrap: nowrap !important;
  white-space: nowrap;
}

.cfk-site-header .cfk-header-commerce-bar__actions .cfk-header-quick-action,
.cfk-site-header .cfk-header-commerce-bar__actions .cfk-mini-cart__toggle {
  box-sizing: border-box !important;
  flex: 0 0 auto !important;
  height: 42px !important;
  min-height: 42px !important;
  max-height: 42px !important;
}

/* Intermediate desktop: trim nonessential labels before the row can collide. */
@media (max-width: 1360px) and (min-width: 1121px) {
  .cfk-site-header .cfk-header-commerce-bar__inner {
    grid-template-columns: minmax(165px, 190px) 104px minmax(0, 1fr) auto;
    column-gap: 10px;
  }

  .cfk-site-header .cfk-header-commerce-bar__brand .cfk-brand-logo,
  .cfk-site-header .cfk-header-commerce-bar__brand .cfk-brand-logo--svg {
    width: 185px !important;
  }

  .cfk-site-header .cfk-header-commerce-bar__actions .cfk-header-quick-action > span,
  .cfk-site-header .cfk-header-commerce-bar__actions .cfk-mini-cart__label {
    display: none !important;
  }

  .cfk-site-header .cfk-header-commerce-bar__nav .cfk-primary-nav__list a,
  .cfk-site-header .cfk-header-commerce-bar__nav .menu a {
    padding-inline: 5px;
    font-size: 11px;
  }
}

/* Do not keep forcing the desktop row after it stops fitting.
 * Switching at 1120px is safer than waiting until 1020px.
 */
@media (max-width: 1120px) {
  .cfk-site-header__desktop {
    display: none !important;
  }

  .cfk-site-header__mobile {
    display: block !important;
    padding: 0;
  }
}

@media (min-width: 1121px) {
  .cfk-site-header__desktop {
    display: block !important;
  }

  .cfk-site-header__mobile {
    display: none !important;
  }
}


/* v1.5.1 compact desktop search trigger.
 * Icon-only on desktop; the accessible label stays available to screen readers.
 */
@media (min-width: 1121px) {
  .cfk-site-header .cfk-header-commerce-bar__actions button.cfk-header-quick-action--search,
  .cfk-site-header .cfk-header-commerce-bar__actions button.cfk-header-quick-action--search:hover,
  .cfk-site-header .cfk-header-commerce-bar__actions button.cfk-header-quick-action--search:focus,
  .cfk-site-header .cfk-header-commerce-bar__actions button.cfk-header-quick-action--search:focus-visible,
  .cfk-site-header .cfk-header-commerce-bar__actions button.cfk-header-quick-action--search:active,
  .cfk-site-header .cfk-header-commerce-bar__actions button.cfk-header-quick-action--search[aria-expanded="true"] {
    box-sizing: border-box !important;
    flex: 0 0 42px !important;
    width: 42px !important;
    min-width: 42px !important;
    max-width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
    padding: 0 !important;
    display: inline-grid !important;
    place-items: center !important;
    gap: 0 !important;
  }

  .cfk-site-header .cfk-header-quick-action--search > svg {
    display: block !important;
    width: 20px !important;
    height: 20px !important;
    margin: 0 !important;
  }

  .cfk-site-header .cfk-header-quick-action--search > .screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }
}


/* v1.5.4 header Catalogue refinement.
 * Compact, square-cornered catalogue trigger that aligns with the rest of the
 * Corporate Furniture Kenya header and does not look like a standalone form button.
 */
.cfk-site-header .cfk-header-commerce-bar__catalogue {
  display: flex !important;
  align-items: center !important;
  align-self: center !important;
  min-width: 0 !important;
}

.cfk-site-header .cfk-header-commerce-bar__catalogue .cfk-browse-categories {
  position: relative;
  display: flex !important;
  align-items: center !important;
  min-width: 0 !important;
}

.cfk-site-header .cfk-header-commerce-bar__catalogue button.cfk-browse-categories__toggle,
.cfk-site-header .cfk-header-commerce-bar__catalogue button.cfk-browse-categories__toggle:hover,
.cfk-site-header .cfk-header-commerce-bar__catalogue button.cfk-browse-categories__toggle:focus,
.cfk-site-header .cfk-header-commerce-bar__catalogue button.cfk-browse-categories__toggle:focus-visible,
.cfk-site-header .cfk-header-commerce-bar__catalogue button.cfk-browse-categories__toggle:active,
.cfk-site-header .cfk-header-commerce-bar__catalogue button.cfk-browse-categories__toggle[aria-expanded="true"],
.cfk-site-header .cfk-header-commerce-bar__catalogue .cfk-browse-categories.is-open button.cfk-browse-categories__toggle {
  appearance: none !important;
  -webkit-appearance: none !important;
  box-sizing: border-box !important;
  width: auto !important;
  min-width: 116px !important;
  max-width: 132px !important;
  height: 40px !important;
  min-height: 40px !important;
  max-height: 40px !important;
  margin: 0 !important;
  padding: 0 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 8px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  border: 1px solid #cfdce2 !important;
  border-radius: 5px !important;
  background: #fff !important;
  color: var(--cfk-blue-dark, #005a84) !important;
  box-shadow: none !important;
  text-shadow: none !important;
  transform: none !important;
  font: inherit !important;
  font-size: .76rem !important;
  font-weight: 750 !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

.cfk-site-header .cfk-header-commerce-bar__catalogue button.cfk-browse-categories__toggle:hover,
.cfk-site-header .cfk-header-commerce-bar__catalogue button.cfk-browse-categories__toggle:focus {
  border-color: #9abecf !important;
  background: #f5fafc !important;
  color: var(--cfk-blue-dark, #005a84) !important;
}

.cfk-site-header .cfk-header-commerce-bar__catalogue button.cfk-browse-categories__toggle[aria-expanded="true"],
.cfk-site-header .cfk-header-commerce-bar__catalogue .cfk-browse-categories.is-open button.cfk-browse-categories__toggle {
  border-color: var(--cfk-blue-dark, #005a84) !important;
  background: var(--cfk-blue-soft, #eef7fa) !important;
  color: var(--cfk-blue-dark, #005a84) !important;
}

.cfk-site-header .cfk-header-commerce-bar__catalogue button.cfk-browse-categories__toggle:focus-visible {
  outline: 2px solid rgba(0, 90, 132, .22) !important;
  outline-offset: 2px !important;
}

.cfk-site-header .cfk-header-commerce-bar__catalogue .cfk-browse-categories__toggle > svg:first-child {
  display: block !important;
  flex: 0 0 18px !important;
  width: 18px !important;
  min-width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  margin: 0 !important;
  color: currentColor !important;
  stroke: currentColor !important;
}

.cfk-site-header .cfk-header-commerce-bar__catalogue .cfk-browse-categories__toggle > span:not(.cfk-browse-categories__chevron) {
  display: inline-block !important;
  flex: 0 1 auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.cfk-site-header .cfk-header-commerce-bar__catalogue .cfk-browse-categories__chevron {
  flex: 0 0 12px !important;
  width: 12px !important;
  min-width: 12px !important;
  height: 12px !important;
  min-height: 12px !important;
  margin-left: auto !important;
  display: inline-grid !important;
  place-items: center !important;
  line-height: 0 !important;
  color: #65727b !important;
  transition: transform .18s ease !important;
}

.cfk-site-header .cfk-header-commerce-bar__catalogue .cfk-browse-categories__chevron svg {
  display: block !important;
  width: 12px !important;
  height: 12px !important;
  margin: 0 !important;
}

.cfk-site-header .cfk-header-commerce-bar__catalogue .cfk-browse-categories.is-open .cfk-browse-categories__chevron,
.cfk-site-header .cfk-header-commerce-bar__catalogue button.cfk-browse-categories__toggle[aria-expanded="true"] .cfk-browse-categories__chevron {
  transform: rotate(180deg) !important;
  color: var(--cfk-blue-dark, #005a84) !important;
}

/* The dropdown should visually attach to the compact trigger instead of feeling
 * like an unrelated Elementor panel.
 */
.cfk-site-header .cfk-header-commerce-bar__catalogue .cfk-browse-categories__menu {
  margin-top: 8px !important;
  border: 1px solid #d4e0e5 !important;
  border-radius: 6px !important;
  background: #fff !important;
  box-shadow: 0 16px 34px rgba(22, 35, 44, .12) !important;
}

/* At tighter desktop widths, retain the compact shape without wrapping. */
@media (max-width: 1360px) and (min-width: 1121px) {
  .cfk-site-header .cfk-header-commerce-bar__catalogue button.cfk-browse-categories__toggle {
    min-width: 108px !important;
    max-width: 116px !important;
    padding: 0 10px !important;
    gap: 6px !important;
    font-size: .72rem !important;
  }

  .cfk-site-header .cfk-header-commerce-bar__catalogue .cfk-browse-categories__toggle > svg:first-child {
    flex-basis: 16px !important;
    width: 16px !important;
    min-width: 16px !important;
    height: 16px !important;
    min-height: 16px !important;
  }
}


/* ========================================================================
   v1.1.0 Corporate header — three-band procurement/ecommerce architecture
   ======================================================================== */
.cfk-site-header--corporate {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid #DCE3E0;
  background: #fff;
}

.cfk-site-header--corporate .cfk-site-header__desktop {
  display: block;
}

.cfk-corporate-topbar {
  background: #343A40;
  color: rgba(255,255,255,.78);
}

.cfk-corporate-topbar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-size: 11px;
}

.cfk-corporate-topbar__positioning,
.cfk-corporate-topbar__contact {
  display: flex;
  align-items: center;
  gap: 13px;
}

.cfk-corporate-topbar__positioning {
  text-transform: uppercase;
  letter-spacing: .075em;
  font-weight: 720;
}

.cfk-corporate-topbar__positioning i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #00BF63;
}

.cfk-corporate-topbar__contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.78) !important;
  text-decoration: none !important;
}

.cfk-corporate-topbar__contact a:hover {
  color: #fff !important;
}

.cfk-corporate-topbar svg {
  width: 14px;
  height: 14px;
}

.cfk-corporate-mainbar {
  background: #fff;
}

.cfk-corporate-mainbar__inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: 220px minmax(340px, 1fr) auto;
  gap: 34px;
  align-items: center;
}

.cfk-corporate-mainbar__brand {
  min-width: 0;
}

.cfk-corporate-mainbar__search {
  width: min(100%, 680px);
  justify-self: center;
}

.cfk-corporate-mainbar__search .cfk-product-search {
  min-height: 44px;
  border: 1px solid #C7D1CD;
  border-radius: 3px;
  background: #F8FAF9;
}

.cfk-corporate-mainbar__search .cfk-product-search:focus-within {
  border-color: #00BF63;
  box-shadow: 0 0 0 2px rgba(0,191,99,.08);
}

.cfk-corporate-mainbar__search .cfk-product-search__submit {
  width: 46px;
  border-radius: 0 2px 2px 0 !important;
  background: #343A40 !important;
  color: #fff !important;
}

.cfk-corporate-mainbar__search .cfk-product-search__submit:hover {
  background: #00BF63 !important;
  color: #10251A !important;
}

.cfk-corporate-mainbar__actions {
  display: flex;
  align-items: center;
  gap: 7px;
}

.cfk-corporate-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 3px;
  text-decoration: none !important;
  font-size: 12px;
  font-weight: 780;
}

.cfk-corporate-action svg {
  width: 17px;
  height: 17px;
}

.cfk-corporate-action--quote {
  padding: 0 14px;
  border-color: #00BF63;
  background: #00BF63;
  color: #10251A !important;
}

.cfk-corporate-action--quote:hover {
  border-color: #00994F;
  background: #00994F;
  color: #fff !important;
}

.cfk-corporate-action--icon {
  width: 42px;
  border-color: #D5DEDA;
  background: #fff;
  color: #343A40 !important;
}

.cfk-corporate-action--icon:hover {
  border-color: #343A40;
  background: #343A40;
  color: #fff !important;
}

.cfk-site-header--corporate .cfk-mini-cart__toggle {
  width: 42px !important;
  min-width: 42px !important;
  height: 42px !important;
  min-height: 42px !important;
  padding: 0 !important;
  border: 1px solid #D5DEDA !important;
  border-radius: 3px !important;
  background: #fff !important;
  color: #343A40 !important;
}

.cfk-site-header--corporate .cfk-mini-cart__label {
  display: none !important;
}

.cfk-site-header--corporate .cfk-mini-cart__toggle:hover {
  border-color: #343A40 !important;
  background: #343A40 !important;
  color: #fff !important;
}

.cfk-corporate-navband {
  border-top: 1px solid #E4E9E7;
  background: #F5F7F6;
}

.cfk-corporate-navband__inner {
  min-height: 46px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  gap: 18px;
}

.cfk-corporate-navband .cfk-browse-categories {
  min-width: 190px;
}

.cfk-corporate-navband .cfk-browse-categories__toggle {
  height: 46px;
  padding-inline: 15px;
  border: 0 !important;
  border-radius: 0 !important;
  background: #00BF63 !important;
  color: #10251A !important;
  font-weight: 820;
}

.cfk-corporate-navband .cfk-browse-categories__toggle:hover {
  background: #00A957 !important;
}

.cfk-corporate-navband__nav .cfk-primary-nav__list,
.cfk-corporate-navband__nav .menu {
  gap: 7px;
}

.cfk-corporate-navband__nav .cfk-primary-nav__list a,
.cfk-corporate-navband__nav .menu a {
  min-height: 46px;
  padding: 0 8px;
  border-radius: 0;
  color: #4B5358;
  font-size: 12px;
  font-weight: 680;
}

.cfk-corporate-navband__nav .cfk-primary-nav__list a:hover,
.cfk-corporate-navband__nav .menu a:hover {
  background: transparent;
  color: #00994F;
}

.cfk-corporate-navband__whatsapp {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #16753A !important;
  text-decoration: none !important;
  font-size: 12px;
  font-weight: 780;
}

.cfk-corporate-navband__whatsapp svg {
  width: 17px;
  height: 17px;
}

.cfk-site-header--corporate .cfk-browse-categories__panel {
  border-radius: 0 0 4px 4px;
}

@media (max-width: 1020px) {
  .cfk-site-header--corporate .cfk-site-header__desktop {
    display: none !important;
  }

  .cfk-site-header--corporate .cfk-site-header__mobile {
    display: block !important;
  }
}

@media (min-width: 1021px) {
  .cfk-site-header--corporate .cfk-site-header__mobile {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .cfk-site-header--corporate .cfk-mobile-header__main {
    min-height: 60px;
  }

  .cfk-site-header--corporate .cfk-brand-logo--image .cfk-brand-logo-image {
    max-width: 155px;
    max-height: 45px;
  }
}


/* ========================================================================
   v1.1.1 header polish from live visual QA
   ======================================================================== */

/* Keep Catalogue compact and keep the chevron inside the button. */
.cfk-site-header--corporate .cfk-corporate-navband .cfk-browse-categories {
  min-width: 170px !important;
}

.cfk-site-header--corporate .cfk-corporate-navband .cfk-browse-categories__toggle,
.cfk-site-header--corporate .cfk-corporate-navband .cfk-browse-categories__toggle:hover,
.cfk-site-header--corporate .cfk-corporate-navband .cfk-browse-categories__toggle:focus {
  box-sizing: border-box !important;
  width: 100% !important;
  min-width: 170px !important;
  max-width: 190px !important;
  height: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 13px !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #00BF63 !important;
  color: #10251A !important;
  box-shadow: none !important;
  transform: none !important;
  font-size: 12.5px !important;
  font-weight: 820 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.cfk-site-header--corporate .cfk-corporate-navband .cfk-browse-categories__toggle svg {
  flex: 0 0 16px !important;
  width: 16px !important;
  height: 16px !important;
}

.cfk-site-header--corporate .cfk-corporate-navband .cfk-browse-categories__chevron {
  margin-left: auto !important;
  display: inline-grid !important;
  place-items: center !important;
  line-height: 1 !important;
}

/* Elementor must not reintroduce its pink button border around search submit. */
.cfk-site-header--corporate .cfk-corporate-mainbar__search button.cfk-product-search__submit,
.cfk-site-header--corporate .cfk-corporate-mainbar__search button.cfk-product-search__submit:hover,
.cfk-site-header--corporate .cfk-corporate-mainbar__search button.cfk-product-search__submit:focus,
.cfk-site-header--corporate .cfk-corporate-mainbar__search button.cfk-product-search__submit:active {
  appearance: none !important;
  -webkit-appearance: none !important;
  box-sizing: border-box !important;
  width: 48px !important;
  min-width: 48px !important;
  max-width: 48px !important;
  height: 42px !important;
  min-height: 42px !important;
  max-height: 42px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 2px 2px 0 !important;
  background: #343A40 !important;
  color: #fff !important;
  box-shadow: none !important;
  outline-offset: 2px !important;
  transform: none !important;
}

.cfk-site-header--corporate .cfk-corporate-mainbar__search button.cfk-product-search__submit:hover,
.cfk-site-header--corporate .cfk-corporate-mainbar__search button.cfk-product-search__submit:focus {
  background: #00BF63 !important;
  color: #10251A !important;
}

.cfk-site-header--corporate .cfk-corporate-mainbar__search .cfk-product-search {
  overflow: hidden !important;
}

/* Slightly reduce vertical footprint and improve alignment. */
.cfk-site-header--corporate .cfk-corporate-mainbar__inner {
  min-height: 76px !important;
}

.cfk-site-header--corporate .cfk-corporate-navband__inner {
  min-height: 44px !important;
}

.cfk-site-header--corporate .cfk-corporate-navband__nav .cfk-primary-nav__list a,
.cfk-site-header--corporate .cfk-corporate-navband__nav .menu a,
.cfk-site-header--corporate .cfk-corporate-navband__whatsapp {
  min-height: 44px !important;
}


/* ========================================================================
   v1.1.3 compact-desktop navigation containment
   ======================================================================== */

/*
 * The three-band desktop header needs more horizontal room than the old donor
 * header. Switch to the purpose-built mobile/compact header before the
 * Catalogue + full nav can overflow or be clipped off-screen.
 */
@media (max-width: 1180px) {
  .cfk-site-header--corporate .cfk-site-header__desktop {
    display: none !important;
  }

  .cfk-site-header--corporate .cfk-site-header__mobile {
    display: block !important;
  }
}

@media (min-width: 1181px) {
  .cfk-site-header--corporate .cfk-site-header__desktop {
    display: block !important;
  }

  .cfk-site-header--corporate .cfk-site-header__mobile {
    display: none !important;
  }
}

/* At full desktop widths, prevent any navigation child from forcing the shell
 * wider than the viewport.
 */
@media (min-width: 1181px) {
  .cfk-site-header--corporate .cfk-corporate-navband,
  .cfk-site-header--corporate .cfk-corporate-navband__inner,
  .cfk-site-header--corporate .cfk-corporate-navband__nav,
  .cfk-site-header--corporate .cfk-primary-nav {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .cfk-site-header--corporate .cfk-corporate-navband__inner {
    overflow: visible !important;
  }

  .cfk-site-header--corporate .cfk-corporate-navband__nav {
    overflow: hidden !important;
  }

  .cfk-site-header--corporate .cfk-corporate-navband__nav .cfk-primary-nav__list,
  .cfk-site-header--corporate .cfk-corporate-navband__nav .menu {
    min-width: 0 !important;
    width: 100% !important;
  }
}


/* ========================================================================
   v1.1.6 Corporate search control
   ======================================================================== */

.cfk-site-header--corporate .cfk-corporate-mainbar__search {
  width: min(100%, 620px) !important;
}

.cfk-site-header--corporate .cfk-product-search {
  min-height: 42px !important;
  height: 42px !important;
  overflow: hidden !important;
  border: 1px solid #C7D1CD !important;
  border-radius: 3px !important;
  background: #fff !important;
  box-shadow: none !important;
}

.cfk-site-header--corporate .cfk-product-search:focus-within {
  border-color: #00BF63 !important;
  box-shadow: 0 0 0 2px rgba(0, 191, 99, .10) !important;
}

.cfk-site-header--corporate input.cfk-product-search__field,
.cfk-site-header--corporate input.cfk-product-search__field:hover,
.cfk-site-header--corporate input.cfk-product-search__field:focus {
  box-sizing: border-box !important;
  width: 100% !important;
  height: 40px !important;
  min-height: 40px !important;
  margin: 0 !important;
  padding: 0 52px 0 14px !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0 !important;
  background: #fff !important;
  color: #343A40 !important;
  box-shadow: none !important;
  font-size: .82rem !important;
  line-height: 40px !important;
}

.cfk-site-header--corporate input.cfk-product-search__field::placeholder {
  color: #89939A !important;
  opacity: 1 !important;
}

.cfk-site-header--corporate button.cfk-product-search__submit,
.cfk-site-header--corporate button.cfk-product-search__submit:hover,
.cfk-site-header--corporate button.cfk-product-search__submit:focus,
.cfk-site-header--corporate button.cfk-product-search__submit:active {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  box-sizing: border-box !important;
  width: 44px !important;
  min-width: 44px !important;
  max-width: 44px !important;
  height: 40px !important;
  min-height: 40px !important;
  max-height: 40px !important;
  display: grid !important;
  place-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 2px 2px 0 !important;
  background: #343A40 !important;
  color: #fff !important;
  box-shadow: none !important;
  transform: none !important;
}

.cfk-site-header--corporate button.cfk-product-search__submit:hover,
.cfk-site-header--corporate button.cfk-product-search__submit:focus-visible {
  background: #00BF63 !important;
  color: #10251A !important;
}

.cfk-site-header--corporate button.cfk-product-search__submit svg {
  width: 17px !important;
  height: 17px !important;
}

/* The search icon now lives only in the submit button. */
.cfk-site-header--corporate .cfk-product-search__icon {
  display: none !important;
}

/* Mobile search tray uses the same compact field, but can span the shell. */
.cfk-site-header--corporate .cfk-header-search-tray__search {
  width: 100% !important;
}

@media (max-width: 1180px) {
  .cfk-site-header--corporate .cfk-header-search-tray .cfk-product-search {
    width: 100% !important;
  }
}


/* ========================================================================
   v1.1.8 account + cart action pair
   ======================================================================== */

.cfk-site-header--corporate .cfk-corporate-mainbar__actions {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

/* Account icon button. */
.cfk-site-header--corporate .cfk-corporate-mainbar__actions > a.cfk-corporate-action--icon,
.cfk-site-header--corporate .cfk-corporate-mainbar__actions > a.cfk-corporate-action--icon:visited {
  box-sizing: border-box !important;
  position: relative !important;
  width: 42px !important;
  min-width: 42px !important;
  max-width: 42px !important;
  height: 42px !important;
  min-height: 42px !important;
  max-height: 42px !important;
  display: inline-grid !important;
  place-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid #D5DEDA !important;
  border-radius: 3px !important;
  background: #fff !important;
  color: #343A40 !important;
  box-shadow: none !important;
  text-decoration: none !important;
  transform: none !important;
}

.cfk-site-header--corporate .cfk-corporate-mainbar__actions > a.cfk-corporate-action--icon:hover,
.cfk-site-header--corporate .cfk-corporate-mainbar__actions > a.cfk-corporate-action--icon:focus-visible {
  border-color: #AFC0B8 !important;
  background: #ECF9F2 !important;
  color: #00994F !important;
}

/* Cart wrapper is only a positioning context. */
.cfk-site-header--corporate .cfk-corporate-mainbar__actions .cfk-mini-cart {
  position: relative !important;
  width: 42px !important;
  height: 42px !important;
  flex: 0 0 42px !important;
}

/* Cart button must visually match Account, regardless of old global rules. */
.cfk-site-header--corporate .cfk-corporate-mainbar__actions button.cfk-mini-cart__toggle,
.cfk-site-header--corporate .cfk-corporate-mainbar__actions button.cfk-mini-cart__toggle:visited,
.cfk-site-header--corporate .cfk-corporate-mainbar__actions button.cfk-mini-cart__toggle:active {
  appearance: none !important;
  -webkit-appearance: none !important;
  box-sizing: border-box !important;
  position: relative !important;
  width: 42px !important;
  min-width: 42px !important;
  max-width: 42px !important;
  height: 42px !important;
  min-height: 42px !important;
  max-height: 42px !important;
  display: inline-grid !important;
  place-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  border: 1px solid #D5DEDA !important;
  border-radius: 3px !important;
  background: #fff !important;
  color: #343A40 !important;
  box-shadow: none !important;
  text-shadow: none !important;
  transform: none !important;
}

.cfk-site-header--corporate .cfk-corporate-mainbar__actions button.cfk-mini-cart__toggle:hover,
.cfk-site-header--corporate .cfk-corporate-mainbar__actions button.cfk-mini-cart__toggle:focus-visible {
  border-color: #AFC0B8 !important;
  background: #ECF9F2 !important;
  color: #00994F !important;
}

/* An open cart remains legible, but does not turn into a different-sized tile. */
.cfk-site-header--corporate .cfk-corporate-mainbar__actions button.cfk-mini-cart__toggle[aria-expanded="true"] {
  border-color: #00BF63 !important;
  background: #fff !important;
  color: #00994F !important;
}

/* Hide the text label in this icon-only desktop action group. */
.cfk-site-header--corporate .cfk-corporate-mainbar__actions .cfk-mini-cart__label {
  display: none !important;
}

/* Icons use exactly the same footprint. */
.cfk-site-header--corporate .cfk-corporate-mainbar__actions .cfk-corporate-action--icon svg,
.cfk-site-header--corporate .cfk-corporate-mainbar__actions button.cfk-mini-cart__toggle > svg {
  width: 19px !important;
  height: 19px !important;
  margin: 0 !important;
}

/* Cart quantity is a badge, not another flex/grid item inside the button. */
.cfk-site-header--corporate .cfk-corporate-mainbar__actions .cfk-mini-cart__count,
.cfk-site-header--corporate .cfk-corporate-mainbar__actions button.cfk-mini-cart__toggle:hover .cfk-mini-cart__count,
.cfk-site-header--corporate .cfk-corporate-mainbar__actions button.cfk-mini-cart__toggle:focus .cfk-mini-cart__count,
.cfk-site-header--corporate .cfk-corporate-mainbar__actions button.cfk-mini-cart__toggle[aria-expanded="true"] .cfk-mini-cart__count {
  position: absolute !important;
  top: -6px !important;
  right: -6px !important;
  z-index: 3 !important;
  box-sizing: border-box !important;
  min-width: 18px !important;
  width: auto !important;
  height: 18px !important;
  display: inline-grid !important;
  place-items: center !important;
  margin: 0 !important;
  padding: 0 4px !important;
  border: 2px solid #fff !important;
  border-radius: 999px !important;
  background: #00994F !important;
  color: #fff !important;
  box-shadow: none !important;
  font-size: 9px !important;
  font-weight: 850 !important;
  line-height: 1 !important;
}

/* Keep enough clearance for the floating badge before the viewport edge. */
.cfk-site-header--corporate .cfk-corporate-mainbar__actions {
  padding-right: 7px !important;
}

@media (max-width: 1180px) {
  /* Mobile header has its own action spacing; retain the same badge principle. */
  .cfk-site-header--corporate .cfk-mobile-header__actions .cfk-mini-cart {
    position: relative !important;
  }

  .cfk-site-header--corporate .cfk-mobile-header__actions .cfk-mini-cart__count {
    top: -4px !important;
    right: -4px !important;
    border: 2px solid #fff !important;
  }
}


/* ========================================================================
   v1.1.9 active primary-navigation state
   ======================================================================== */

/*
 * Active navigation is indicated with a precise Corporate green rule instead
 * of a filled pill. This works with both WordPress menu classes and the
 * built-in fallback navigation.
 */
.cfk-site-header--corporate .cfk-corporate-navband__nav .cfk-primary-nav__list > li > a,
.cfk-site-header--corporate .cfk-corporate-navband__nav .menu > li > a {
  position: relative !important;
}

.cfk-site-header--corporate .cfk-corporate-navband__nav .cfk-primary-nav__list > li.current-menu-item > a,
.cfk-site-header--corporate .cfk-corporate-navband__nav .cfk-primary-nav__list > li.current_page_item > a,
.cfk-site-header--corporate .cfk-corporate-navband__nav .cfk-primary-nav__list > li.current-menu-ancestor > a,
.cfk-site-header--corporate .cfk-corporate-navband__nav .menu > li.current-menu-item > a,
.cfk-site-header--corporate .cfk-corporate-navband__nav .menu > li.current_page_item > a,
.cfk-site-header--corporate .cfk-corporate-navband__nav .menu > li.current-menu-ancestor > a,
.cfk-site-header--corporate .cfk-corporate-navband__nav a[aria-current="page"] {
  background: transparent !important;
  color: #00994F !important;
  font-weight: 800 !important;
}

.cfk-site-header--corporate .cfk-corporate-navband__nav .cfk-primary-nav__list > li.current-menu-item > a::after,
.cfk-site-header--corporate .cfk-corporate-navband__nav .cfk-primary-nav__list > li.current_page_item > a::after,
.cfk-site-header--corporate .cfk-corporate-navband__nav .cfk-primary-nav__list > li.current-menu-ancestor > a::after,
.cfk-site-header--corporate .cfk-corporate-navband__nav .menu > li.current-menu-item > a::after,
.cfk-site-header--corporate .cfk-corporate-navband__nav .menu > li.current_page_item > a::after,
.cfk-site-header--corporate .cfk-corporate-navband__nav .menu > li.current-menu-ancestor > a::after,
.cfk-site-header--corporate .cfk-corporate-navband__nav a[aria-current="page"]::after {
  position: absolute !important;
  right: 8px !important;
  bottom: 0 !important;
  left: 8px !important;
  height: 3px !important;
  border-radius: 0 !important;
  background: #00BF63 !important;
  content: "" !important;
}

/* Hover remains quieter than the selected state. */
.cfk-site-header--corporate .cfk-corporate-navband__nav .cfk-primary-nav__list > li:not(.current-menu-item):not(.current_page_item) > a:hover,
.cfk-site-header--corporate .cfk-corporate-navband__nav .menu > li:not(.current-menu-item):not(.current_page_item) > a:hover {
  color: #00994F !important;
}

/* Mobile menu uses text + a short left marker rather than the desktop rule. */
.cfk-site-header--corporate .cfk-mobile-menu__links li.current-menu-item > a,
.cfk-site-header--corporate .cfk-mobile-menu__links li.current_page_item > a,
.cfk-site-header--corporate .cfk-mobile-menu__links a[aria-current="page"] {
  position: relative !important;
  padding-left: 14px !important;
  color: #00994F !important;
  font-weight: 800 !important;
}

.cfk-site-header--corporate .cfk-mobile-menu__links li.current-menu-item > a::before,
.cfk-site-header--corporate .cfk-mobile-menu__links li.current_page_item > a::before,
.cfk-site-header--corporate .cfk-mobile-menu__links a[aria-current="page"]::before {
  position: absolute !important;
  top: 50% !important;
  left: 0 !important;
  width: 3px !important;
  height: 20px !important;
  background: #00BF63 !important;
  content: "" !important;
  transform: translateY(-50%) !important;
}

/* v1.2.5 — Furea-inspired commerce header, re-authored for Corporate Furniture Kenya */
.cfk-site-header--furea {
  --cfk-header-green: #00BF63;
  --cfk-header-green-dark: #00994F;
  --cfk-header-charcoal: #343A40;
  --cfk-header-ink: #20252A;
  --cfk-header-line: #D8E0DD;
  background: #fff;
  color: var(--cfk-header-ink);
}
.cfk-site-header--furea .cfk-corporate-topbar {
  min-height: 38px;
  background: var(--cfk-header-charcoal);
  border-bottom: 0;
}
.cfk-site-header--furea .cfk-corporate-topbar__inner {
  min-height: 38px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.cfk-site-header--furea .cfk-corporate-topbar__positioning,
.cfk-site-header--furea .cfk-corporate-topbar__contact { gap:11px; }
.cfk-site-header--furea .cfk-corporate-topbar__positioning span,
.cfk-site-header--furea .cfk-corporate-topbar__contact a {
  color:#fff;
  font-size:11px;
  font-weight:600;
  letter-spacing:.02em;
}
.cfk-site-header--furea .cfk-corporate-topbar__positioning i { background:#00BF63; width:3px; height:3px; }
.cfk-site-header--furea .cfk-corporate-topbar svg { color:#83e8b4; width:14px; height:14px; }

.cfk-site-header--furea .cfk-corporate-mainbar {
  background:#fff;
  border-bottom:1px solid var(--cfk-header-line);
}
.cfk-site-header--furea .cfk-corporate-mainbar__inner {
  min-height:92px;
  display:grid;
  grid-template-columns:210px 190px minmax(300px,1fr) auto;
  align-items:center;
  gap:20px;
}
.cfk-site-header--furea .cfk-corporate-mainbar__brand { min-width:0; }
.cfk-site-header--furea .cfk-brand-logo { max-width:190px; }
.cfk-site-header--furea .cfk-brand-logo-image { max-height:68px; }
.cfk-site-header--furea .cfk-brand-logo__corporate { color:#00BF63; }
.cfk-site-header--furea .cfk-brand-logo__furniture { color:#343A40; }
.cfk-site-header--furea .cfk-brand-logo--text .cfk-brand-logo__corporate,
.cfk-site-header--furea .cfk-brand-logo--text .cfk-brand-logo__furniture { font-size:23px; font-weight:800; }
.cfk-site-header--furea .cfk-brand-logo--text small { color:#6d767d; letter-spacing:.3em; }

.cfk-site-header--furea .cfk-corporate-mainbar > .cfk-shell > .cfk-browse-categories { min-width:0; }
.cfk-site-header--furea .cfk-corporate-mainbar .cfk-browse-categories__toggle {
  width:100%;
  height:48px;
  justify-content:space-between;
  padding:0 16px;
  background:#fff;
  color:#20252A;
  border:1px solid #C9D2D0;
  border-radius:2px;
  font-size:13px;
  font-weight:750;
}
.cfk-site-header--furea .cfk-corporate-mainbar .cfk-browse-categories__toggle:hover,
.cfk-site-header--furea .cfk-corporate-mainbar .cfk-browse-categories__toggle:focus-visible {
  border-color:#00BF63;
  background:#F5FBF8;
  color:#20252A;
}
.cfk-site-header--furea .cfk-corporate-mainbar .cfk-browse-categories__toggle > svg:first-child { color:#00BF63; }
.cfk-site-header--furea .cfk-corporate-mainbar .cfk-browse-categories__chevron { margin-left:auto; }

.cfk-site-header--furea .cfk-corporate-mainbar__search .cfk-product-search__field {
  min-height:48px;
  border:1px solid #C9D2D0;
  border-radius:2px;
  padding-left:18px;
  padding-right:54px;
  color:#20252A;
}
.cfk-site-header--furea .cfk-corporate-mainbar__search .cfk-product-search__field:focus {
  border-color:#00BF63;
  box-shadow:0 0 0 2px rgba(0,191,99,.10);
}
.cfk-site-header--furea .cfk-corporate-mainbar__search .cfk-product-search__field::placeholder { color:#879198; }
.cfk-site-header--furea .cfk-corporate-mainbar__search .cfk-product-search__submit,
.cfk-site-header--furea .cfk-corporate-mainbar__search .cfk-product-search__submit:hover,
.cfk-site-header--furea .cfk-corporate-mainbar__search .cfk-product-search__submit:focus-visible {
  top:4px; right:4px; width:40px; height:40px; border-radius:1px;
  background:#343A40; color:#fff;
}

.cfk-site-header--furea .cfk-corporate-mainbar__actions { gap:8px; }
.cfk-site-header--furea .cfk-corporate-action--quote {
  min-height:48px;
  padding:0 17px;
  border:1px solid #00BF63;
  border-radius:2px;
  background:#00BF63;
  color:#0b2117;
  font-size:12px;
  font-weight:800;
}
.cfk-site-header--furea .cfk-corporate-action--quote:hover { background:#00994F; border-color:#00994F; color:#fff; }
.cfk-site-header--furea .cfk-corporate-action--icon,
.cfk-site-header--furea .cfk-corporate-mainbar__actions button.cfk-mini-cart__toggle {
  width:48px; min-width:48px; height:48px; min-height:48px; padding:0;
  border:1px solid #D8E0DD; border-radius:2px; background:#fff; color:#343A40;
}
.cfk-site-header--furea .cfk-corporate-action--icon:hover,
.cfk-site-header--furea .cfk-corporate-mainbar__actions button.cfk-mini-cart__toggle:hover { background:#F5FBF8; border-color:#00BF63; color:#00994F; }
.cfk-site-header--furea .cfk-corporate-mainbar__actions .cfk-mini-cart__label { display:none; }
.cfk-site-header--furea .cfk-corporate-mainbar__actions .cfk-mini-cart__count { position:absolute; right:-4px; top:-5px; min-width:18px; height:18px; padding:0 4px; background:#00BF63; color:#0b2117; }

.cfk-site-header--furea .cfk-corporate-navband {
  background:#F5F7F6;
  border-bottom:1px solid #D8E0DD;
}
.cfk-site-header--furea .cfk-corporate-navband__inner {
  min-height:54px;
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:22px;
}
.cfk-site-header--furea .cfk-corporate-navband__nav .cfk-primary-nav__list,
.cfk-site-header--furea .cfk-corporate-navband__nav .menu { min-height:54px; gap:2px; align-items:stretch; }
.cfk-site-header--furea .cfk-corporate-navband__nav .cfk-primary-nav__list a,
.cfk-site-header--furea .cfk-corporate-navband__nav .menu a {
  position:relative; min-height:54px; padding:0 16px; display:inline-flex; align-items:center;
  color:#343A40; font-size:13px; font-weight:700; border-radius:0; text-decoration:none;
}
.cfk-site-header--furea .cfk-corporate-navband__nav .cfk-primary-nav__list a:hover,
.cfk-site-header--furea .cfk-corporate-navband__nav .menu a:hover { color:#00994F; background:#ECF9F2; }
.cfk-site-header--furea .cfk-corporate-navband__nav .current-menu-item > a,
.cfk-site-header--furea .cfk-corporate-navband__nav .current_page_item > a { color:#00994F; background:#ECF9F2; }
.cfk-site-header--furea .cfk-corporate-navband__nav .current-menu-item > a::after,
.cfk-site-header--furea .cfk-corporate-navband__nav .current_page_item > a::after {
  content:""; position:absolute; left:16px; right:16px; bottom:0; height:3px; background:#00BF63;
}
.cfk-site-header--furea .cfk-corporate-navband__whatsapp {
  min-height:36px; padding:0 12px; border-left:1px solid #D8E0DD; color:#00994F; font-size:12px; font-weight:800;
}
.cfk-site-header--furea .cfk-corporate-navband__whatsapp svg { width:17px; height:17px; }

.cfk-site-header--furea .cfk-browse-categories__panel {
  top:calc(100% + 8px); border:1px solid #D8E0DD; border-radius:2px; box-shadow:0 18px 35px rgba(32,37,42,.12);
}

@media (max-width:1100px) {
  .cfk-site-header--furea .cfk-corporate-mainbar__inner { grid-template-columns:190px 165px minmax(220px,1fr) auto; gap:12px; }
  .cfk-site-header--furea .cfk-corporate-action--quote { padding-inline:12px; }
  .cfk-site-header--furea .cfk-corporate-navband__nav .cfk-primary-nav__list a,
  .cfk-site-header--furea .cfk-corporate-navband__nav .menu a { padding-inline:11px; }
}
@media (max-width:900px) {
  .cfk-site-header--furea .cfk-site-header__desktop { display:none; }
  .cfk-site-header--furea .cfk-site-header__mobile { display:block; }
}

/* v1.2.7 — header precision pass */
.cfk-site-header--furea .cfk-corporate-topbar__inner {
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:28px;
}
.cfk-site-header--furea .cfk-corporate-topbar__positioning a {
  color:#fff;
  font-size:11px;
  font-weight:700;
  text-decoration:none;
  letter-spacing:.01em;
}
.cfk-site-header--furea .cfk-corporate-topbar__positioning a:hover { color:#83e8b4; }
.cfk-site-header--furea .cfk-corporate-topbar__meta {
  justify-self:end;
  color:#cfd6d3;
  font-size:11px;
  font-weight:500;
}
.cfk-site-header--furea .cfk-corporate-mainbar__inner {
  min-height:86px;
  grid-template-columns:250px 176px minmax(360px,1fr) auto;
  gap:16px;
}
.cfk-site-header--furea .cfk-corporate-mainbar__brand {
  display:flex;
  align-items:center;
  min-width:0;
}
.cfk-site-header--furea .cfk-brand-logo--bundled,
.cfk-site-header--furea .cfk-corporate-mainbar__brand .cfk-brand-logo--image {
  width:238px;
  max-width:238px;
  height:64px;
  display:flex;
  align-items:center;
}
.cfk-site-header--furea .cfk-corporate-mainbar__brand .cfk-brand-logo-image {
  display:block;
  width:100%;
  max-width:238px;
  max-height:64px;
  height:auto;
  object-fit:contain;
  object-position:left center;
}
.cfk-site-header--furea .cfk-corporate-mainbar .cfk-browse-categories__toggle {
  height:46px;
  padding:0 14px;
  border-color:#D8E0DD;
  background:#F8FAF9;
  font-size:12px;
  font-weight:750;
  box-shadow:none;
}
.cfk-site-header--furea .cfk-corporate-mainbar .cfk-browse-categories__toggle > svg:first-child {
  width:18px;
  height:18px;
}
.cfk-site-header--furea .cfk-corporate-mainbar .cfk-browse-categories__chevron {
  position:static !important;
  display:block;
  width:13px !important;
  height:13px !important;
  margin:0 0 0 8px !important;
  transform:none !important;
}
.cfk-site-header--furea .cfk-corporate-mainbar__search .cfk-product-search__field,
.cfk-site-header--furea .cfk-corporate-action--quote,
.cfk-site-header--furea .cfk-corporate-action--icon,
.cfk-site-header--furea .cfk-corporate-mainbar__actions button.cfk-mini-cart__toggle {
  height:46px;
  min-height:46px;
}
.cfk-site-header--furea .cfk-corporate-mainbar__search .cfk-product-search__submit,
.cfk-site-header--furea .cfk-corporate-mainbar__search .cfk-product-search__submit:hover,
.cfk-site-header--furea .cfk-corporate-mainbar__search .cfk-product-search__submit:focus-visible {
  top:3px;
  right:3px;
  width:40px;
  height:40px;
}
.cfk-site-header--furea .cfk-corporate-action--icon,
.cfk-site-header--furea .cfk-corporate-mainbar__actions button.cfk-mini-cart__toggle {
  width:46px;
  min-width:46px;
}
.cfk-site-header--furea .cfk-corporate-navband__inner { min-height:50px; }
.cfk-site-header--furea .cfk-corporate-navband__nav .cfk-primary-nav__list,
.cfk-site-header--furea .cfk-corporate-navband__nav .menu { min-height:50px; }
.cfk-site-header--furea .cfk-corporate-navband__nav .cfk-primary-nav__list a,
.cfk-site-header--furea .cfk-corporate-navband__nav .menu a {
  min-height:50px;
  padding:0 14px;
}
@media (max-width:1200px) {
  .cfk-site-header--furea .cfk-corporate-mainbar__inner {
    grid-template-columns:220px 160px minmax(280px,1fr) auto;
    gap:12px;
  }
  .cfk-site-header--furea .cfk-brand-logo--bundled,
  .cfk-site-header--furea .cfk-corporate-mainbar__brand .cfk-brand-logo--image { width:210px; max-width:210px; }
  .cfk-site-header--furea .cfk-corporate-topbar__meta { display:none; }
  .cfk-site-header--furea .cfk-corporate-topbar__inner { grid-template-columns:1fr auto; }
}

/* v1.2.7 — final desktop header proportions */
.cfk-site-header--furea .cfk-corporate-mainbar__inner {
  min-height:78px;
  grid-template-columns:220px 162px minmax(380px,1fr) auto;
  gap:14px;
}
.cfk-site-header--furea .cfk-brand-logo--bundled,
.cfk-site-header--furea .cfk-corporate-mainbar__brand .cfk-brand-logo--image {
  width:210px;
  max-width:210px;
  height:58px;
}
.cfk-site-header--furea .cfk-corporate-mainbar__brand .cfk-brand-logo-image {
  max-width:210px;
  max-height:58px;
}
.cfk-site-header--furea .cfk-corporate-mainbar .cfk-browse-categories__chevron { display:none!important; }
.cfk-site-header--furea .cfk-corporate-mainbar .cfk-browse-categories__toggle { justify-content:center; padding-inline:12px; }
.cfk-site-header--furea .cfk-corporate-navband__nav .cfk-primary-nav__list,
.cfk-site-header--furea .cfk-corporate-navband__nav .menu { gap:8px; }
.cfk-site-header--furea .cfk-corporate-navband__nav .cfk-primary-nav__list a,
.cfk-site-header--furea .cfk-corporate-navband__nav .menu a { padding-inline:13px; }
@media (max-width:1200px) {
  .cfk-site-header--furea .cfk-corporate-mainbar__inner { grid-template-columns:195px 150px minmax(280px,1fr) auto; }
  .cfk-site-header--furea .cfk-brand-logo--bundled,
  .cfk-site-header--furea .cfk-corporate-mainbar__brand .cfk-brand-logo--image { width:185px; max-width:185px; }
}


/* v1.2.8 — Furea header correction: logo + search + actions, categories in navigation */
@media (min-width:901px) {
  .cfk-site-header--furea .cfk-corporate-topbar { min-height:34px; }
  .cfk-site-header--furea .cfk-corporate-topbar__inner { min-height:34px; }

  .cfk-site-header--furea .cfk-corporate-mainbar__inner {
    min-height:76px;
    grid-template-columns:220px minmax(420px,1fr) auto;
    gap:28px;
  }
  .cfk-site-header--furea .cfk-corporate-mainbar__brand {
    align-self:stretch;
    justify-content:flex-start;
  }
  .cfk-site-header--furea .cfk-brand-logo--bundled,
  .cfk-site-header--furea .cfk-corporate-mainbar__brand .cfk-brand-logo--image {
    width:198px;
    max-width:198px;
    height:58px;
  }
  .cfk-site-header--furea .cfk-corporate-mainbar__brand .cfk-brand-logo-image {
    width:198px;
    max-width:198px;
    max-height:58px;
    object-fit:contain;
    object-position:left center;
  }
  .cfk-site-header--furea .cfk-corporate-mainbar__search { width:100%; }
  .cfk-site-header--furea .cfk-corporate-mainbar__search .cfk-product-search__field { height:48px; min-height:48px; padding-left:22px; }
  .cfk-site-header--furea .cfk-corporate-mainbar__search .cfk-product-search__submit,
  .cfk-site-header--furea .cfk-corporate-mainbar__search .cfk-product-search__submit:hover,
  .cfk-site-header--furea .cfk-corporate-mainbar__search .cfk-product-search__submit:focus-visible { top:3px; right:3px; width:42px; height:42px; }
  .cfk-site-header--furea .cfk-corporate-mainbar__actions { gap:10px; }
  .cfk-site-header--furea .cfk-corporate-action--quote { height:48px; min-height:48px; padding:0 20px; }
  .cfk-site-header--furea .cfk-corporate-action--icon,
  .cfk-site-header--furea .cfk-corporate-mainbar__actions button.cfk-mini-cart__toggle { width:48px; min-width:48px; height:48px; min-height:48px; }

  .cfk-site-header--furea .cfk-corporate-navband { background:#fff; border-top:1px solid #edf1ef; border-bottom:1px solid #dfe6e2; }
  .cfk-site-header--furea .cfk-corporate-navband__inner {
    min-height:52px;
    display:grid;
    grid-template-columns:210px minmax(0,1fr) auto;
    gap:22px;
    align-items:stretch;
  }
  .cfk-site-header--furea .cfk-corporate-navband__categories { position:relative; display:flex; align-items:stretch; }
  .cfk-site-header--furea .cfk-corporate-navband__categories .cfk-browse-categories { width:100%; position:relative; }
  .cfk-site-header--furea .cfk-corporate-navband__categories .cfk-browse-categories__toggle {
    width:100%;
    min-height:52px;
    height:52px;
    padding:0 18px;
    justify-content:flex-start;
    gap:11px;
    border:0;
    border-radius:0;
    background:#00BF63;
    color:#10231a;
    font-size:13px;
    font-weight:800;
    box-shadow:none;
  }
  .cfk-site-header--furea .cfk-corporate-navband__categories .cfk-browse-categories__toggle:hover,
  .cfk-site-header--furea .cfk-corporate-navband__categories .cfk-browse-categories__toggle:focus-visible { background:#00ad59; color:#0b1c14; }
  .cfk-site-header--furea .cfk-corporate-navband__categories .cfk-browse-categories__toggle > svg:first-child { color:currentColor; width:17px; height:17px; }
  .cfk-site-header--furea .cfk-corporate-navband__categories .cfk-browse-categories__chevron { display:block!important; margin-left:auto!important; width:13px!important; height:13px!important; position:static!important; transform:none!important; }
  .cfk-site-header--furea .cfk-corporate-navband__categories .cfk-browse-categories__panel { top:100%; left:0; min-width:260px; }

  .cfk-site-header--furea .cfk-corporate-navband__nav { min-width:0; }
  .cfk-site-header--furea .cfk-corporate-navband__nav .cfk-primary-nav__list,
  .cfk-site-header--furea .cfk-corporate-navband__nav .menu { min-height:52px; height:52px; gap:2px; justify-content:flex-start; }
  .cfk-site-header--furea .cfk-corporate-navband__nav .cfk-primary-nav__list a,
  .cfk-site-header--furea .cfk-corporate-navband__nav .menu a { min-height:52px; height:52px; padding:0 13px; }
}
@media (min-width:901px) and (max-width:1200px) {
  .cfk-site-header--furea .cfk-corporate-mainbar__inner { grid-template-columns:190px minmax(300px,1fr) auto; gap:16px; }
  .cfk-site-header--furea .cfk-brand-logo--bundled,
  .cfk-site-header--furea .cfk-corporate-mainbar__brand .cfk-brand-logo--image,
  .cfk-site-header--furea .cfk-corporate-mainbar__brand .cfk-brand-logo-image { width:180px; max-width:180px; }
  .cfk-site-header--furea .cfk-corporate-navband__inner { grid-template-columns:185px minmax(0,1fr) auto; gap:12px; }
  .cfk-site-header--furea .cfk-corporate-navband__nav .cfk-primary-nav__list a,
  .cfk-site-header--furea .cfk-corporate-navband__nav .menu a { padding-inline:9px; font-size:12px; }
}
