:root {
  --zhl-blue: #3630ff;
  --zhl-blue-soft: #514cff;
  --zhl-pink: #ff4364;
  --zhl-white: #ffffff;
  --zhl-dark: #171727;
}

.zhl-header,
.zhl-header * {
  box-sizing: border-box;
}

.zhl-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  color: var(--zhl-white);
  font-family: inherit;
}

.zhl-main {
  padding-top: 7px;
  background: var(--zhl-blue);
}

.zhl-inner {
  width: min(1820px, calc(100% - 48px));
  margin: 0 auto;
}


/* ==================================================
   TOP ROW
   ================================================== */

.zhl-top {
  display: grid;
  grid-template-columns: 205px minmax(300px, 1fr) auto;
  gap: 24px;
  min-height: 76px;
  align-items: center;
}


/* ==================================================
   LOGO
   ================================================== */

.zhl-logo {
  display: flex;
  min-width: 0;
  align-items: center;
}

.zhl-logo a,
.zhl-logo .custom-logo-link {
  display: flex;
  align-items: center;
}

.zhl-logo img {
  display: block;
  width: auto;
  max-width: 190px;
  max-height: 54px;
}

.zhl-logo-text {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  text-decoration: none;
}


/* ==================================================
   SEARCH
   ================================================== */

.zhl-search {
  position: relative;
  width: 100%;
  margin: 0;
}

.zhl-search input[type="search"] {
  width: 100%;
  height: 35px;
  padding: 0 62px 0 21px;
  border: 0;
  border-radius: 25px;
  outline: 0;
  background: #fff;
  color: #34345a;
  font: inherit;
  font-size: 15px;
  appearance: none;
  -webkit-appearance: none;
}

.zhl-search input[type="search"]::placeholder {
  color: #777892;
  opacity: 1;
}

.zhl-search button {
  position: absolute;
  top: 1px;
  right: 3px;
  display: grid;
  width: 33px;
  height: 33px;
  padding: 0;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  outline: 0;
  background: var(--zhl-pink);
  color: #fff;
  box-shadow: none;
  cursor: pointer;
}

.zhl-search button:hover,
.zhl-search button:focus {
  border-color: #fff;
  background: var(--zhl-pink);
  color: #fff;
  box-shadow: none;
}

.zhl-search svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}


/* ==================================================
   ACCOUNT AND CART
   ================================================== */

.zhl-actions {
  display: flex;
  gap: 25px;
  align-items: center;
}

.zhl-action {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.zhl-action:hover,
.zhl-action:focus {
  color: #fff;
  opacity: 0.85;
}

.zhl-action svg {
  display: block;
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.zhl-cart-icon {
  position: relative;
  display: inline-flex;
}

.zhl-cart-count {
  position: absolute;
  top: -9px;
  right: -10px;
  display: grid;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  place-items: center;
  border-radius: 10px;
  background: var(--zhl-pink);
  color: #fff;
  font-size: 11px;
  line-height: 1;
}


/* ==================================================
   NAVIGATION ROW
   ================================================== */

.zhl-nav-row {
  display: flex;
  gap: 11px;
  padding: 4px 0 12px;
  align-items: center;
}


/* ==================================================
   BASE MENU BUTTON
   ================================================== */

.zhl-menu-toggle {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 8px;
  align-items: center;
  justify-content: center;
  outline: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}


/* Desktop menu button */

.zhl-menu-toggle--desktop {
  width: auto;
  height: 46px;
  padding: 0 24px;
  border: 1px solid #fff;
  border-radius: 25px;
  background: transparent;
  color: #fff;
}

.zhl-menu-toggle--desktop:hover,
.zhl-menu-toggle--desktop:focus,
.zhl-menu-toggle--desktop:active {
  border: 1px solid #fff;
  background: rgb(255 255 255 / 10%);
  color: #fff;
  box-shadow: none;
}


/* ==================================================
   BURGER ICON
   ================================================== */

.zhl-burger {
  position: relative;
  display: block;
  width: 27px;
  height: 20px;
  flex: 0 0 27px;
  color: currentColor;
}

.zhl-burger > span {
  position: absolute;
  left: 0;
  display: block;
  width: 27px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transform-origin: center;
  transition:
    top 180ms ease,
    transform 180ms ease,
    opacity 180ms ease;
}

.zhl-burger > span:first-child {
  top: 5px;
}

.zhl-burger > span:last-child {
  top: 14px;
}

.zhl-menu-toggle.is-open .zhl-burger > span:first-child {
  top: 9px;
  transform: rotate(45deg);
}

.zhl-menu-toggle.is-open .zhl-burger > span:last-child {
  top: 9px;
  transform: rotate(-45deg);
}


/* ==================================================
   QUICK LINKS
   ================================================== */

.zhl-quick-nav {
  min-width: 0;
  overflow: hidden;
}

.zhl-quick-menu {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  list-style: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.zhl-quick-menu::-webkit-scrollbar {
  display: none;
}

.zhl-quick-menu li {
  flex: 0 0 auto;
  margin: 0;
}

.zhl-quick-menu a {
  display: flex;
  height: 38px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: var(--zhl-blue-soft);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.zhl-quick-menu .current-menu-item > a,
.zhl-quick-menu a:hover,
.zhl-quick-menu a:focus {
  outline: 1px solid #fff;
  color: #fff;
}


/* ==================================================
   PROMO BAR
   ================================================== */

.zhl-promo {
  min-height: 47px;
  padding: 11px 24px;
  background: var(--zhl-pink);
  color: #fff;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
}

.zhl-promo a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
}


/* ==================================================
   OPENED MENU
   ================================================== */

.zhl-menu[hidden] {
  display: none !important;
}

.zhl-menu {
  position: fixed;
  top: var(--zhl-menu-top, 0);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9998;
  overflow: hidden;
  background: #fff;
  color: var(--zhl-dark);
}

.zhl-menu-panel {
  width: 100%;
  height: 100%;
  padding: 34px 20px 55px;
  overflow-x: hidden;
  overflow-y: auto;
  background: #fff;
  animation: zhl-menu-open 240ms ease both;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

@keyframes zhl-menu-open {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.zhl-navigation {
  width: min(600px, 100%);
  margin: 0 auto;
}


/* ==================================================
   PRIMARY MENU
   ================================================== */

.zhl-primary-menu,
.zhl-primary-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.zhl-primary-menu li {
  margin: 0;
  border: 0;
}

.zhl-primary-menu > li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  align-items: center;
  border-bottom: 1px solid #e7e7e7;
}

.zhl-primary-menu > li:not(.menu-item-has-children) {
  display: block;
}

.zhl-primary-menu li > a {
  display: flex;
  min-height: 57px;
  padding: 11px 5px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  color: var(--zhl-dark);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.zhl-primary-menu li > a:hover,
.zhl-primary-menu li > a:focus,
.zhl-primary-menu li.current-menu-item > a {
  color: var(--zhl-dark);
  opacity: 0.55;
}


/* ==================================================
   WORDPRESS MENU ICONS
   ================================================== */

.zhl-primary-menu .menu-item-icon {
  display: inline-flex !important;
  width: 25px;
  height: 25px;
  margin: 0;
  align-items: center;
  justify-content: center;
  flex: 0 0 25px;
  color: #cbd6e7;
  font-size: 21px;
  line-height: 1;
}

.zhl-primary-menu .menu-item-icon i {
  display: inline-block !important;
  margin: 0;
  font-size: inherit;
  line-height: 1;
}

.zhl-primary-menu .menu-item-icon img {
  display: block !important;
  width: 25px !important;
  height: 25px !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: contain;
}

.zhl-primary-menu .menu-item-icon svg {
  display: block !important;
  width: 23px;
  height: 23px;
  fill: currentColor;
}

/* Mbështetje për plugin-a të tjerë të ikonave */

.zhl-primary-menu li > a > i,
.zhl-primary-menu li > a > .icon,
.zhl-primary-menu li > a > .menu-icon,
.zhl-primary-menu li > a > [class*="icon-"],
.zhl-primary-menu li > a > [class*="fa-"] {
  display: inline-flex !important;
  width: 25px;
  height: 25px;
  margin: 0;
  align-items: center;
  justify-content: center;
  flex: 0 0 25px;
  color: #cbd6e7;
  font-size: 21px;
  line-height: 1;
}

.zhl-primary-menu li > a > img,
.zhl-primary-menu li > a > .menu-image {
  display: block !important;
  width: 25px !important;
  height: 25px !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: 0 0 25px;
  object-fit: contain;
}

.zhl-primary-menu .menu-image-title {
  display: inline !important;
  padding: 0 !important;
}


/* ==================================================
   SUBMENU BUTTON
   ================================================== */

.zhl-submenu-toggle {
  display: grid;
  width: 42px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--zhl-dark);
  box-shadow: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.zhl-submenu-toggle:hover,
.zhl-submenu-toggle:focus,
.zhl-submenu-toggle:active {
  border: 0;
  background: transparent;
  color: var(--zhl-dark);
  box-shadow: none;
}

.zhl-submenu-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.zhl-primary-menu
  .menu-item-has-children.is-open
  > .zhl-submenu-toggle svg {
  transform: rotate(180deg);
}


/* ==================================================
   SUBMENUS
   ================================================== */

.zhl-primary-menu .sub-menu {
  display: grid;
  grid-column: 1 / -1;
  width: 100%;
  padding: 2px 0 14px;
}

.zhl-primary-menu .sub-menu[hidden] {
  display: none !important;
}

.zhl-primary-menu .sub-menu li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
}

.zhl-primary-menu .sub-menu li:not(.menu-item-has-children) {
  display: block;
}

.zhl-primary-menu .sub-menu a {
  min-height: 41px;
  padding: 8px 5px;
  color: rgb(23 23 39 / 72%);
  font-size: 13px;
  letter-spacing: 0.08em;
}

body.zhl-menu-open {
  overflow: hidden;
}


/* ==================================================
   DESKTOP
   ================================================== */

@media (min-width: 992px) {
  .zhl-menu-toggle--mobile {
    display: none !important;
  }

  .zhl-menu-toggle--desktop {
    display: inline-flex;
  }
}


/* ==================================================
   MOBILE
   ================================================== */

@media (max-width: 991px) {
  .zhl-main {
    padding-top: 4px;
  }

  .zhl-inner {
    width: calc(100% - 32px);
  }

  .zhl-top {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    grid-template-rows: 58px auto;
    gap: 0 9px;
    min-height: 0;
  }

  /* Mobile burger: pa border dhe pa background */

  .zhl-header button.zhl-menu-toggle--mobile {
    position: relative;
    z-index: 3;
    display: flex;
    grid-column: 1;
    grid-row: 1;
    width: 42px;
    height: 44px;
    padding: 0 !important;
    align-items: center;
    justify-content: flex-start;
    border: 0 !important;
    border-radius: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    color: #111 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
  }

  .zhl-header button.zhl-menu-toggle--mobile:hover,
  .zhl-header button.zhl-menu-toggle--mobile:focus,
  .zhl-header button.zhl-menu-toggle--mobile:active {
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
  }

  .zhl-menu-toggle--mobile .zhl-burger,
  .zhl-menu-toggle--mobile .zhl-burger > span {
    color: #ffffff !important;
  }

  .zhl-menu-toggle--mobile .zhl-burger > span {
    background-color: #ffffff !important;
  }

  /* Logo */

  .zhl-logo {
    position: absolute;
    top: 33px;
    left: 50%;
    z-index: 1;
    max-width: 165px;
    transform: translate(-50%, -50%);
  }

  .zhl-logo img {
    max-width: 165px;
    max-height: 45px;
  }

  /* Account and cart */

  .zhl-actions {
    position: relative;
    z-index: 3;
    display: flex;
    grid-column: 3;
    grid-row: 1;
    gap: 13px;
  }

  .zhl-action > span:last-child,
  .zhl-cart-label {
    display: none;
  }

  .zhl-action svg {
    width: 26px;
    height: 26px;
  }

  /* Search */

  .zhl-search {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-bottom: 10px;
  }

  /* Quick links */

  .zhl-nav-row {
    display: block;
    width: 100%;
    padding: 0 0 11px;
  }

  .zhl-menu-toggle--desktop {
    display: none !important;
  }

  .zhl-quick-nav {
    display: block;
    width: 100%;
  }

  .zhl-quick-menu {
    display: flex;
    gap: 10px;
    width: 100%;
  }

  .zhl-quick-menu a {
    height: 29px;
    padding: 0 21px;
    font-size: 13px;
  }

  /* Promo */

  .zhl-promo {
    min-height: 50px;
    padding: 10px 12px;
    font-size: 13px;
  }

  /* Open menu */

  .zhl-menu-panel {
    padding: 27px 18px 48px;
  }

  .zhl-navigation {
    width: min(440px, 100%);
  }

  .zhl-primary-menu li > a {
    min-height: 53px;
    gap: 11px;
    font-size: 15px;
  }
}


/* ==================================================
   SMALL MOBILE
   ================================================== */

@media (max-width: 380px) {
  .zhl-inner {
    width: calc(100% - 20px);
  }

  .zhl-top {
    grid-template-columns: 37px minmax(0, 1fr) auto;
    gap: 0 7px;
  }

  .zhl-header button.zhl-menu-toggle--mobile {
    width: 37px;
  }

  .zhl-burger,
  .zhl-burger > span {
    width: 24px;
  }

  .zhl-logo {
    max-width: 138px;
  }

  .zhl-logo img {
    max-width: 138px;
    max-height: 41px;
  }

  .zhl-actions {
    gap: 9px;
  }

  .zhl-action svg {
    width: 23px;
    height: 23px;
  }

  .zhl-primary-menu li > a {
    font-size: 14px;
  }
}


/* ==================================================
   REDUCED MOTION
   ================================================== */

@media (prefers-reduced-motion: reduce) {
  .zhl-menu-panel,
  .zhl-burger > span,
  .zhl-submenu-toggle svg {
    animation: none;
    transition: none;
  }
}