@charset "UTF-8";
/* Header wrapper */
.zr-custom-header {
  display: block;
  width: 100%;
  position: relative;
  z-index: 1000;
}
.zr-custom-header.zr-header-fixed {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.zr-custom-header.zr-header-fixed.zr-header-auto-hide {
  transition: transform 0.3s ease-in-out;
}
.zr-custom-header.zr-header-fixed.zr-header-auto-hide.zr-header-hidden {
  transform: translateY(-100%);
}
.zr-custom-header.zr-header-shadow-small {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.zr-custom-header.zr-header-shadow-medium {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.zr-custom-header.zr-header-shadow-large {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.zr-custom-header.zr-header-horizontal .zr-header-row {
  flex-direction: row;
}
.zr-custom-header.zr-header-vertical .zr-header-row {
  flex-direction: column;
}
.zr-custom-header.zr-header-vertical .zr-header-cell {
  width: 100%;
}

/* Section rows */
.zr-header-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  min-height: 60px;
  transition: background-color 0.3s ease, min-height 0.3s ease;
  position: relative;
  z-index: 1;
}
.zr-header-row:hover {
  z-index: 10;
}
.zr-header-row-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
.zr-header-row-top {
  min-height: var(--zr-top-height, 80px);
}
.zr-header-row-middle {
  min-height: var(--zr-middle-height, 80px);
}
.zr-header-row-bottom {
  min-height: var(--zr-bottom-height, 80px);
}
.zr-header-row--hide-when-scrolled {
  max-height: 500px;
  opacity: 1;
  overflow: visible;
  transition: max-height 0.3s ease, opacity 0.3s ease, min-height 0.3s ease;
}

.zr-custom-header.zr-header-fixed .zr-header-row-top {
  min-height: var(--zr-top-fixed-height, 60px);
}
.zr-custom-header.zr-header-fixed .zr-header-row-middle {
  min-height: var(--zr-middle-fixed-height, 60px);
}
.zr-custom-header.zr-header-fixed .zr-header-row-bottom {
  min-height: var(--zr-bottom-fixed-height, 60px);
}

.zr-custom-header.zr-header-scrolled .zr-header-row--hide-when-scrolled {
  max-height: 0;
  min-height: 0 !important;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Header cells */
.zr-header-cell {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
}
.zr-header-cell-center {
  justify-content: center;
}
.zr-header-cell-left:not(.zr-header-cell-center) {
  justify-content: flex-start;
}
.zr-header-cell-middle:not(.zr-header-cell-center) {
  justify-content: center;
}
.zr-header-cell-right:not(.zr-header-cell-center) {
  justify-content: flex-end;
}
.zr-header-cell-fullwidth {
  flex: 1 1 100%;
}

/* Text and link colors */
.zr-header-row a,
.zr-header-row button,
.zr-header-row .zr-header-element {
  color: var(--zr-text-link-color, #2d2d2d);
  transition: color 0.2s ease;
}

.zr-header-row a:hover,
.zr-header-row button:hover,
.zr-header-row .zr-header-element:hover {
  color: var(--zr-text-link-color-hover, #fc0);
}

/* Responsive - Layout */
@media (max-width: 767px) {
  .zr-header-row {
    flex-direction: column;
  }
  .zr-header-cell {
    justify-content: center;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .zr-header-cell {
    flex: 1 1 50%;
  }
}
/* Elements */
.zr-header-element {
  display: inline-block;
}

.zr-header-element:first-child {
  margin-left: 0;
}

.zr-header-element:last-child {
  margin-right: 0;
}

.zr-header-search {
  display: flex;
  align-items: stretch;
  position: relative;
  padding: 0;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  /* LAYOUT 1: EINFACH (Simple) */
  /* LAYOUT 2: MODERN - Pill shape */
  /* LAYOUT 3: VOLLE BREITE - Full width bar */
}
.zr-header-search__input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  min-width: 80px;
  font-family: inherit;
  transition: color 0.2s ease;
}
.zr-header-search__input::placeholder {
  opacity: 1;
}
.zr-header-search__input::-webkit-search-decoration, .zr-header-search__input::-webkit-search-cancel-button, .zr-header-search__input::-webkit-search-results-button, .zr-header-search__input::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
}
.zr-header-search__btn {
  border: none;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.zr-header-search__btn:hover, .zr-header-search__btn:focus {
  outline: none;
}
.zr-header-search__btn i {
  line-height: 1;
  pointer-events: none;
}
.zr-header-search--einfach {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  min-width: 200px;
  max-width: 320px;
}
.zr-header-search--einfach:hover {
  border-color: #c5c5c5;
}
.zr-header-search--einfach:focus-within {
  border-color: var(--zr-text-link-color-hover, #f0b429);
  box-shadow: 0 0 0 3px rgba(240, 180, 41, 0.12);
}
.zr-header-search--einfach .zr-header-search__input {
  padding: 0.6rem 0.9rem;
  font-size: 0.9rem;
  color: #1a1a1a;
  border-radius: 6px 0 0 6px;
}
.zr-header-search--einfach .zr-header-search__input::placeholder {
  color: #888;
}
.zr-header-search--einfach .zr-header-search__btn {
  padding: 0.6rem 0.9rem;
  color: #555;
  border-radius: 0 6px 6px 0;
  min-width: 42px;
}
.zr-header-search--einfach .zr-header-search__btn:hover {
  color: var(--zr-text-link-color-hover, #f0b429);
}
.zr-header-search--einfach .zr-header-search__btn i {
  font-size: 0.95rem;
}
.zr-header-search--modern {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  min-width: 260px;
  max-width: 420px;
}
.zr-header-search--modern:hover {
  border-color: #d8d8d8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.zr-header-search--modern:focus-within {
  border-color: var(--zr-text-link-color-hover, #f0b429);
  box-shadow: 0 2px 12px rgba(240, 180, 41, 0.18);
}
.zr-header-search--modern .zr-header-search__input {
  padding: 0.7rem 1.2rem 0.7rem 1.35rem;
  font-size: 0.925rem;
  color: #1a1a1a;
  border-radius: 999px 0 0 999px;
}
.zr-header-search--modern .zr-header-search__input::placeholder {
  color: #888;
}
.zr-header-search--modern .zr-header-search__btn {
  padding: 0.7rem 1.2rem 0.7rem 1rem;
  color: #555;
  border-radius: 0 999px 999px 0;
  min-width: 46px;
}
.zr-header-search--modern .zr-header-search__btn:hover {
  color: var(--zr-text-link-color-hover, #f0b429);
}
.zr-header-search--modern .zr-header-search__btn i {
  font-size: 1rem;
}
.zr-header-search--volle-breite {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  width: 100%;
  max-width: 100%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}
.zr-header-search--volle-breite:hover {
  border-color: #d0d0d0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}
.zr-header-search--volle-breite:focus-within {
  border-color: var(--zr-text-link-color-hover, #f0b429);
  box-shadow: 0 2px 12px rgba(240, 180, 41, 0.15);
}
.zr-header-search--volle-breite .zr-header-search__input {
  padding: 0.85rem 1.25rem;
  font-size: 0.95rem;
  color: #1a1a1a;
  border-radius: 8px 0 0 8px;
  width: 100%;
}
.zr-header-search--volle-breite .zr-header-search__input::placeholder {
  color: #888;
}
.zr-header-search--volle-breite .zr-header-search__btn {
  padding: 0.85rem 1.35rem;
  color: #555;
  border-radius: 0 8px 8px 0;
  min-width: 56px;
  background: rgba(0, 0, 0, 0.03);
  border-left: 1px solid #eee;
}
.zr-header-search--volle-breite .zr-header-search__btn:hover {
  color: var(--zr-text-link-color-hover, #f0b429);
  background: rgba(240, 180, 41, 0.08);
}
.zr-header-search--volle-breite .zr-header-search__btn i {
  font-size: 1.05rem;
}

.zr-header-element--search {
  margin: 0;
  padding: 0.25rem 0;
}
.zr-header-element--search .twitter-typeahead {
  width: 100%;
}
.zr-header-element--search-volle-breite {
  width: 100%;
  max-width: 100%;
}
.zr-header-element--search-volle-breite .zr-header-search {
  width: 100%;
}

/* Responsive - Search */
@media (max-width: 767px) {
  .zr-header-search__input {
    min-width: 100px;
  }
  .zr-header-element--search {
    width: 100%;
  }
  .zr-header-search--einfach,
  .zr-header-search--modern {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .zr-header-search--einfach .zr-header-search__input,
  .zr-header-search--modern .zr-header-search__input {
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
  }
  .zr-header-search--einfach .zr-header-search__btn,
  .zr-header-search--modern .zr-header-search__btn {
    padding: 0.65rem 1rem;
    min-width: 44px;
  }
  .zr-header-search--volle-breite .zr-header-search__input {
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
  }
  .zr-header-search--volle-breite .zr-header-search__btn {
    padding: 0.65rem 1rem;
    min-width: 44px;
  }
}
/* Base */
header a:not(.dropdown-item):not(.btn) {
  text-decoration: none;
  color: var(--zr-text-link-color, #2d2d2d);
}
header a:not(.dropdown-item):not(.btn):hover {
  color: var(--zr-text-link-color-hover, #fc0);
}

.zr-header-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--zr-menu-gap, 0.5rem);
  position: relative;
  align-items: center;
  /* Dropdown */
  /* Dropdown & subdropdown links (shared) */
  /* Classic category images: image above text, centered */
  /* Subdropdown */
}
.zr-header-menu li {
  margin: 0;
  position: relative;
}
.zr-header-menu__link {
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--zr-text-link-color, #2d2d2d);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 0;
  transition: all 0.3s 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.zr-header-menu__link:hover {
  text-decoration: none;
  color: var(--zr-text-link-color-hover, #fc0);
  background-color: color-mix(in srgb, var(--zr-text-link-color-hover, #fc0) 8%, transparent);
}
.zr-header-menu__link:hover .zr-header-menu__dropdown-icon {
  opacity: 1;
}
.zr-header-menu__dropdown-icon {
  font-size: 0.7rem;
  opacity: 0.7;
  transition: transform 0.3s 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.zr-header-menu__item--active .zr-header-menu__link {
  color: var(--zr-text-link-color-hover, #fc0);
  background-color: color-mix(in srgb, var(--zr-text-link-color-hover, #fc0) 10%, transparent);
}
.zr-header-menu__item--dropdown {
  position: relative;
}
.zr-header-menu__item--dropdown:hover .zr-header-menu__dropdown,
.zr-header-menu__item--dropdown:hover .zr-header-menu__dropdown::before {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.zr-header-menu__item--dropdown:hover .zr-header-menu__dropdown-icon {
  transform: rotate(180deg);
}
.zr-header-menu__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 240px;
  max-width: 320px;
  padding: 0.5rem;
  margin: 0;
  list-style: none;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.3s 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--zr-section-background-color, #fff);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
}
.zr-header-menu__dropdown::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
  transition: inherit;
}
.zr-header-menu__dropdown-item {
  margin: 0;
  position: relative;
}
.zr-header-menu__dropdown-item--has-children {
  position: relative;
}
.zr-header-menu__dropdown-item--has-children:hover .zr-header-menu__subdropdown,
.zr-header-menu__dropdown-item--has-children:hover .zr-header-menu__subdropdown::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}
.zr-header-menu__dropdown-item--has-children:hover .zr-header-menu__dropdown-icon {
  transform: rotate(-90deg);
}
.zr-header-menu__dropdown-item--active .zr-header-menu__dropdown-link {
  background: linear-gradient(90deg, color-mix(in srgb, var(--zr-text-link-color-hover, #fc0) 12%, transparent) 0%, color-mix(in srgb, var(--zr-text-link-color-hover, #fc0) 6%, transparent) 100%);
  color: var(--zr-text-link-color-hover, #fc0);
  font-weight: 500;
}
.zr-header-menu__dropdown-item--active .zr-header-menu__dropdown-link::before {
  transform: scaleY(1);
}
.zr-header-menu__dropdown-link, .zr-header-menu__subdropdown-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: #333;
  font-size: 0.9rem;
  font-weight: 400;
  border-radius: 0;
  transition: background 0.2s ease, color 0.2s ease;
  position: relative;
  overflow: hidden;
}
.zr-header-menu__dropdown-link::before, .zr-header-menu__subdropdown-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--zr-text-link-color-hover, #fc0);
  transform: scaleY(0);
  transition: transform 0.15s ease;
}
.zr-header-menu__dropdown-link:hover, .zr-header-menu__subdropdown-link:hover {
  background: linear-gradient(90deg, color-mix(in srgb, var(--zr-text-link-color-hover, #fc0) 8%, transparent) 0%, color-mix(in srgb, var(--zr-text-link-color-hover, #fc0) 4%, transparent) 100%);
  color: var(--zr-text-link-color-hover, #fc0);
  text-decoration: none;
}
.zr-header-menu__dropdown-link:hover::before, .zr-header-menu__subdropdown-link:hover::before {
  transform: scaleY(1);
}
.zr-header-menu__dropdown-link .zr-header-menu__dropdown-image, .zr-header-menu__subdropdown-link .zr-header-menu__dropdown-image {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  object-fit: cover;
}
.zr-header-menu__dropdown-link .zr-header-menu__dropdown-link-text, .zr-header-menu__subdropdown-link .zr-header-menu__dropdown-link-text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.zr-header-menu__dropdown-link {
  justify-content: space-between;
}
.zr-header-menu--category-images-classic .zr-header-menu__dropdown-link, .zr-header-menu--category-images-classic .zr-header-menu__subdropdown-link {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
}
.zr-header-menu--category-images-classic .zr-header-menu__dropdown-link::before, .zr-header-menu--category-images-classic .zr-header-menu__subdropdown-link::before {
  display: none;
}
.zr-header-menu--category-images-classic .zr-header-menu__dropdown-link .zr-header-menu__dropdown-image, .zr-header-menu--category-images-classic .zr-header-menu__subdropdown-link .zr-header-menu__dropdown-image {
  width: 80px;
  height: 80px;
  order: -1;
}
.zr-header-menu--category-images-classic .zr-header-menu__dropdown-link .zr-header-menu__dropdown-link-text, .zr-header-menu--category-images-classic .zr-header-menu__subdropdown-link .zr-header-menu__dropdown-link-text {
  flex: none;
  font-weight: 600;
}
.zr-header-menu--category-images-classic .zr-header-menu__dropdown-link .zr-header-menu__dropdown-icon, .zr-header-menu--category-images-classic .zr-header-menu__subdropdown-link .zr-header-menu__dropdown-icon {
  display: none;
}
.zr-header-menu--category-images-classic .zr-header-menu__dropdown-item, .zr-header-menu--category-images-classic .zr-header-menu__subdropdown-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.zr-header-menu--category-images-classic .zr-header-menu__dropdown-item:last-child, .zr-header-menu--category-images-classic .zr-header-menu__subdropdown-item:last-child {
  border-bottom: none;
}
.zr-header-menu__subdropdown {
  position: absolute;
  left: calc(100% + 12px);
  top: 0;
  min-width: 220px;
  max-width: 300px;
  padding: 0.5rem;
  margin: 0;
  list-style: none;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--zr-section-background-color, #fff);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
}
.zr-header-menu__subdropdown::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  bottom: 0;
  width: 12px;
  background: transparent;
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
  transition: inherit;
}
.zr-header-menu__subdropdown:hover {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}
.zr-header-menu__subdropdown:hover::before {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.zr-header-menu__subdropdown-item {
  margin: 0;
}
.zr-header-menu__subdropdown-item--active .zr-header-menu__subdropdown-link {
  background: linear-gradient(90deg, color-mix(in srgb, var(--zr-text-link-color-hover, #fc0) 12%, transparent) 0%, color-mix(in srgb, var(--zr-text-link-color-hover, #fc0) 6%, transparent) 100%);
  color: var(--zr-text-link-color-hover, #fc0);
  font-weight: 500;
}
.zr-header-menu__subdropdown-item--active .zr-header-menu__subdropdown-link::before {
  transform: scaleY(1);
}

.zr-header-menu-dropdown--fullscreen:not(.zr-menu-mobile-active) .zr-header-menu__dropdown {
  position: fixed;
  top: var(--zr-header-total-height, 160px);
  left: 50%;
  z-index: 10000;
  transform: translateX(-50%) translateY(-10px);
  min-width: var(--zr-content-max-width, 1200px);
  width: var(--zr-content-max-width, 1200px);
  max-width: var(--zr-content-max-width, 1200px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15), 0 4px 16px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: repeat(var(--zr-dropdown-columns-desktop, 4), 1fr);
  gap: 0.5rem;
  padding: 1rem;
  /* Invisible bridge from header to dropdown so mouse can reach it without losing hover in case of we have menu on top or something like that */
}
.zr-header-menu-dropdown--fullscreen:not(.zr-menu-mobile-active) .zr-header-menu__dropdown::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--zr-header-total-height, 160px);
  background: transparent;
  pointer-events: auto;
}
.zr-header-menu-dropdown--fullscreen:not(.zr-menu-mobile-active) .zr-header-menu__item--dropdown:hover .zr-header-menu__dropdown {
  transform: translateX(-50%) translateY(0);
}
.zr-header-menu-dropdown--fullscreen:not(.zr-menu-mobile-active) .zr-header-menu__dropdown-item {
  margin: 0;
}
.zr-header-menu-dropdown--fullscreen:not(.zr-menu-mobile-active) .zr-header-menu__dropdown .zr-header-menu__dropdown-icon {
  display: none;
}
.zr-header-menu-dropdown--fullscreen:not(.zr-menu-mobile-active) .zr-header-menu__dropdown-item--has-children:hover .zr-header-menu__subdropdown,
.zr-header-menu-dropdown--fullscreen:not(.zr-menu-mobile-active) .zr-header-menu__subdropdown {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  border: none;
  padding: 0;
  margin: 0;
  background: transparent;
  min-width: auto;
  max-width: none;
}
.zr-header-menu-dropdown--fullscreen:not(.zr-menu-mobile-active) .zr-header-menu__subdropdown::before {
  display: none;
}
.zr-header-menu-dropdown--fullscreen:not(.zr-menu-mobile-active) .zr-header-menu__subdropdown-item {
  margin: 0;
}
.zr-header-menu-dropdown--fullscreen:not(.zr-menu-mobile-active) .zr-header-menu__subdropdown-link {
  font-size: 0.875rem;
}

@media (max-width: 1023px) {
  .zr-header-menu-dropdown--fullscreen:not(.zr-menu-mobile-active) .zr-header-menu__dropdown {
    grid-template-columns: repeat(var(--zr-dropdown-columns-laptop, 3), 1fr);
  }
}
@media (max-width: 767px) {
  .zr-header-menu-dropdown--fullscreen:not(.zr-menu-mobile-active) .zr-header-menu__dropdown {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Mobile toggle */
.zr-header-menu-mobile-toggle {
  --zr-menu-mobile-line: var(--zr-menu-mobile-line-thickness, 3px);
  --zr-menu-mobile-color: var(--zr-text-link-color, #2d2d2d);
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--zr-menu-mobile-color);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s;
}
.zr-header-menu-mobile-toggle:hover {
  opacity: 0.8;
}
.zr-header-menu-mobile-toggle:active {
  transform: scale(0.95);
}
.zr-header-menu-mobile-toggle__inner {
  position: relative;
  width: 1.25rem;
  display: block;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.zr-header-menu-mobile-toggle--classic .zr-header-menu-mobile-toggle__inner {
  height: var(--zr-menu-mobile-line);
  background: currentColor;
  border-radius: 2px;
  box-shadow: 0 calc(var(--zr-menu-mobile-line) + 4px) 0 currentColor, 0 calc((var(--zr-menu-mobile-line) + 4px) * 2) 0 currentColor;
}
.zr-header-menu-mobile-toggle--minimal .zr-header-menu-mobile-toggle__inner {
  height: var(--zr-menu-mobile-line);
  background: currentColor;
  border-radius: 2px;
  box-shadow: 0 calc(var(--zr-menu-mobile-line) + 4px) 0 currentColor;
}
.zr-header-menu-mobile-toggle--arrow .zr-header-menu-mobile-toggle__inner {
  width: 0;
  height: 0;
  border-left: calc(var(--zr-menu-mobile-line) * 2) solid transparent;
  border-right: calc(var(--zr-menu-mobile-line) * 2) solid transparent;
  border-top: calc(var(--zr-menu-mobile-line) * 2.5) solid currentColor;
  margin-top: 0.2rem;
}
.zr-header-menu-mobile-toggle--dots .zr-header-menu-mobile-toggle__inner {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor, 0 12px 0 currentColor;
}

.zr-menu-mobile-active .zr-header-menu-mobile-toggle {
  display: flex;
}

/* Toggle → X when open */
.zr-menu-mobile-open .zr-header-menu-mobile-toggle--classic .zr-header-menu-mobile-toggle__inner,
.zr-menu-mobile-open .zr-header-menu-mobile-toggle--minimal .zr-header-menu-mobile-toggle__inner {
  box-shadow: none;
  transform: rotate(45deg);
}
.zr-menu-mobile-open .zr-header-menu-mobile-toggle--classic .zr-header-menu-mobile-toggle__inner::before,
.zr-menu-mobile-open .zr-header-menu-mobile-toggle--minimal .zr-header-menu-mobile-toggle__inner::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin-top: calc(var(--zr-menu-mobile-line) / -2);
  height: var(--zr-menu-mobile-line);
  background: currentColor;
  border-radius: 2px;
  transform: rotate(-90deg);
}

.zr-menu-mobile-open .zr-header-menu-mobile-toggle--arrow .zr-header-menu-mobile-toggle__inner {
  transform: rotate(180deg);
}

.zr-menu-mobile-open .zr-header-menu-mobile-toggle--dots .zr-header-menu-mobile-toggle__inner {
  box-shadow: none;
  width: 2px;
  height: 14px;
  border-radius: 1px;
  margin: 0;
  transform: rotate(45deg);
}
.zr-menu-mobile-open .zr-header-menu-mobile-toggle--dots .zr-header-menu-mobile-toggle__inner::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 14px;
  margin: -7px 0 0 -1px;
  border-radius: 1px;
  background: currentColor;
  transform: rotate(-90deg);
}

/* Close button */
.zr-header-menu-close {
  display: none;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--zr-text-link-color, var(--zr-menu-mobile-color, #2d2d2d));
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  transition: background-color 0.2s, transform 0.2s;
}
.zr-header-menu-close:hover {
  background: rgba(0, 0, 0, 0.06);
}
.zr-header-menu-close:active {
  transform: scale(0.95);
}
.zr-header-menu-close__icon {
  position: relative;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transform: rotate(45deg);
}
.zr-header-menu-close__icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transform: rotate(-90deg);
}

.zr-menu-mobile-active.zr-menu-mobile-open .zr-header-menu-close {
  display: flex;
}

/* Backdrop */
.zr-header-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.zr-menu-mobile-active.zr-menu-mobile-open .zr-header-menu-backdrop {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

/* Panel */
.zr-header-menu-panel {
  display: contents;
}

.zr-menu-mobile-active .zr-header-menu-panel {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: var(--zr-section-background-color, #fff);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.zr-menu-mobile-active.zr-menu-mobile-open.zr-header-element--menu {
  position: relative;
  z-index: 9999;
}
.zr-menu-mobile-active.zr-menu-mobile-open .zr-header-menu-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}
.zr-menu-mobile-active.zr-menu-mobile-open .zr-header-menu {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 3rem 0;
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 0;
  list-style: none;
}
.zr-menu-mobile-active.zr-menu-mobile-open .zr-header-menu__link {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0;
  transition: background-color 0.2s, color 0.2s;
}
.zr-menu-mobile-active.zr-menu-mobile-open .zr-header-menu__item {
  animation: zr-menu-item-in 0.4s 0.35s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}
.zr-menu-mobile-active.zr-menu-mobile-open .zr-header-menu__item:nth-child(1) {
  animation-delay: 0.05s;
}
.zr-menu-mobile-active.zr-menu-mobile-open .zr-header-menu__item:nth-child(2) {
  animation-delay: 0.08s;
}
.zr-menu-mobile-active.zr-menu-mobile-open .zr-header-menu__item:nth-child(3) {
  animation-delay: 0.11s;
}
.zr-menu-mobile-active.zr-menu-mobile-open .zr-header-menu__item:nth-child(4) {
  animation-delay: 0.14s;
}
.zr-menu-mobile-active.zr-menu-mobile-open .zr-header-menu__item:nth-child(5) {
  animation-delay: 0.17s;
}
.zr-menu-mobile-active.zr-menu-mobile-open .zr-header-menu__item:nth-child(6) {
  animation-delay: 0.2s;
}
.zr-menu-mobile-active.zr-menu-mobile-open .zr-header-menu__item:nth-child(7) {
  animation-delay: 0.23s;
}
.zr-menu-mobile-active.zr-menu-mobile-open .zr-header-menu__item:nth-child(8) {
  animation-delay: 0.26s;
}
.zr-menu-mobile-active.zr-menu-mobile-open .zr-header-menu__item:nth-child(n+9) {
  animation-delay: 0.29s;
}
.zr-menu-mobile-active.zr-menu-mobile-open .zr-header-menu__dropdown {
  display: none;
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  border: none;
  padding: 0;
  margin-top: 0.5rem;
  background: transparent;
}
.zr-menu-mobile-active.zr-menu-mobile-open .zr-header-menu__dropdown::before {
  display: none;
}
.zr-menu-mobile-active.zr-menu-mobile-open .zr-header-menu__item--dropdown.zr-menu-mobile-expanded > .zr-header-menu__dropdown {
  display: block;
}
.zr-menu-mobile-active.zr-menu-mobile-open .zr-header-menu__subdropdown {
  display: none;
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  border: none;
  padding: 0;
  background: transparent;
}
.zr-menu-mobile-active.zr-menu-mobile-open .zr-header-menu__subdropdown::before {
  display: none;
}
.zr-menu-mobile-active.zr-menu-mobile-open .zr-header-menu__dropdown-item--has-children.zr-menu-mobile-expanded > .zr-header-menu__subdropdown {
  display: block;
}

@keyframes zr-menu-item-in {
  from {
    opacity: 0;
    transform: translateX(-12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Mobile active: hide desktop list */
.zr-menu-mobile-active .zr-header-menu {
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 1rem;
  list-style: none;
  overflow-y: auto;
}

/* Layout modifiers */
.zr-header-menu-mobile--layout-fullscreen.zr-menu-mobile-active.zr-menu-mobile-open .zr-header-menu {
  padding: 4rem 2rem 2rem;
}

.zr-header-menu-mobile--layout-panel.zr-menu-mobile-active.zr-menu-mobile-open .zr-header-menu-panel {
  right: auto;
  width: min(20rem, 85vw);
}

.zr-header-menu-mobile--layout-dropdown.zr-menu-mobile-active .zr-header-menu-panel {
  top: 4rem;
  left: 1rem;
  right: 1rem;
  bottom: auto;
  width: auto;
  min-width: 16rem;
  max-height: calc(100vh - 5rem);
  transform: translateY(-10px);
}

.zr-header-menu-mobile--layout-dropdown.zr-menu-mobile-active.zr-menu-mobile-open .zr-header-menu-panel {
  transform: translateY(0);
}

.zr-header-menu-mobile--align-left.zr-menu-mobile-active .zr-header-menu {
  text-align: left;
  align-items: stretch;
}

.zr-header-menu-mobile--align-center.zr-menu-mobile-active .zr-header-menu {
  text-align: center;
  align-items: center;
}

.zr-header-menu-mobile--align-right.zr-menu-mobile-active .zr-header-menu {
  text-align: right;
  align-items: flex-end;
}

.zr-header-menu-mobile--align-none.zr-menu-mobile-active .zr-header-menu {
  align-items: stretch;
}

/* Responsive fallback (no JS) */
@media (max-width: 767px) {
  .zr-header-element--menu:not(.zr-menu-mobile-active) .zr-header-menu {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .zr-header-element--menu:not(.zr-menu-mobile-active) .zr-header-menu__link {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
  }
  .zr-header-element--menu:not(.zr-menu-mobile-active) .zr-header-menu__link:hover {
    background-color: color-mix(in srgb, var(--zr-text-link-color-hover, #fc0) 8%, transparent);
  }
  .zr-header-element--menu:not(.zr-menu-mobile-active) .zr-header-menu__dropdown, .zr-header-element--menu:not(.zr-menu-mobile-active) .zr-header-menu__subdropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    display: block;
    box-shadow: none;
    border: none;
    padding: 0;
    margin-left: 1rem;
    margin-top: 0.5rem;
    border-left: 3px solid color-mix(in srgb, var(--zr-text-link-color-hover, #fc0) 30%, transparent);
    background: transparent;
    backdrop-filter: none;
    min-width: auto;
    max-width: none;
  }
  .zr-header-element--menu:not(.zr-menu-mobile-active) .zr-header-menu__dropdown::before, .zr-header-element--menu:not(.zr-menu-mobile-active) .zr-header-menu__subdropdown::before {
    display: none;
  }
  .zr-header-element--menu:not(.zr-menu-mobile-active) .zr-header-menu__dropdown-link, .zr-header-element--menu:not(.zr-menu-mobile-active) .zr-header-menu__subdropdown-link {
    padding: 0.875rem 1rem;
    border-radius: 0;
  }
  .zr-header-element--menu:not(.zr-menu-mobile-active) .zr-header-menu__dropdown-link::before, .zr-header-element--menu:not(.zr-menu-mobile-active) .zr-header-menu__subdropdown-link::before {
    display: none;
  }
  .zr-header-element--menu:not(.zr-menu-mobile-active) .zr-header-menu__dropdown-link:hover, .zr-header-element--menu:not(.zr-menu-mobile-active) .zr-header-menu__subdropdown-link:hover {
    transform: none;
  }
}
/* Logo element: uses --zr-logo-size-* and --zr-logo-fixed-size-* from element inline styles */
.zr-header-logo {
  --zr-logo-size: var(--zr-logo-size-default, 60px);
  --zr-logo-fixed-size: var(--zr-logo-fixed-size-default, 35px);
  display: inline-block;
}
.zr-header-logo__link {
  display: block;
}
.zr-header-logo__inner {
  display: block;
  position: relative;
  width: fit-content;
  max-height: var(--zr-logo-size);
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.zr-header-logo__img {
  display: block;
  max-height: var(--zr-logo-size);
  width: auto;
  height: var(--zr-logo-size);
  object-fit: contain;
  object-position: left center;
  vertical-align: middle;
  transition: height 0.3s ease, max-height 0.3s ease, opacity 0.35s ease;
}
.zr-header-logo__img--default {
  position: relative;
  z-index: 1;
}
.zr-header-logo__img--fixed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: var(--zr-logo-fixed-size);
  object-fit: contain;
  object-position: left center;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}
.zr-header-logo__fallback {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  line-height: var(--zr-logo-size);
  max-height: var(--zr-logo-size);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1199px) {
  .zr-header-logo {
    --zr-logo-size: var(--zr-logo-size-laptops, var(--zr-logo-size-default, 52px));
    --zr-logo-fixed-size: var(--zr-logo-fixed-size-laptops, var(--zr-logo-fixed-size-default, 30px));
  }
}
@media (max-width: 1023px) {
  .zr-header-logo {
    --zr-logo-size: var(--zr-logo-size-tablets, var(--zr-logo-size-default, 44px));
    --zr-logo-fixed-size: var(--zr-logo-fixed-size-tablets, var(--zr-logo-fixed-size-default, 25px));
  }
}
@media (max-width: 767px) {
  .zr-header-logo {
    --zr-logo-size: var(--zr-logo-size-mobiles, var(--zr-logo-size-default, 36px));
    --zr-logo-fixed-size: var(--zr-logo-fixed-size-mobiles, var(--zr-logo-fixed-size-default, 20px));
  }
}
.zr-custom-header.zr-header-scrolled .zr-header-logo__inner {
  max-height: var(--zr-logo-fixed-size);
}
.zr-custom-header.zr-header-scrolled .zr-header-logo__img {
  max-height: var(--zr-logo-fixed-size);
  height: var(--zr-logo-fixed-size);
}
.zr-custom-header.zr-header-scrolled .zr-header-logo__img--default {
  opacity: 0;
  pointer-events: none;
}
.zr-custom-header.zr-header-scrolled .zr-header-logo__img--fixed {
  opacity: 1;
  pointer-events: auto;
}
.zr-custom-header.zr-header-scrolled .zr-header-logo__fallback {
  line-height: var(--zr-logo-fixed-size);
  max-height: var(--zr-logo-fixed-size);
}

.zr-header-picture {
  position: relative;
  display: inline-block;
  --zr-picture-size: var(--zr-picture-size-default, 80px);
  --zr-picture-fixed-size: var(--zr-picture-fixed-size-default, 35px);
}
.zr-header-picture__link {
  display: block;
  position: relative;
}
.zr-header-picture__inner {
  display: block;
  position: relative;
  width: fit-content;
  max-width: 100%;
  max-height: var(--zr-picture-size);
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.zr-header-picture__img {
  display: block;
  max-height: var(--zr-picture-size);
  width: auto;
  height: var(--zr-picture-size);
  vertical-align: middle;
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.35s ease, max-height 0.3s ease, height 0.3s ease;
}
.zr-header-picture__img--default {
  position: relative;
  z-index: 1;
}
.zr-header-picture__img--fixed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: var(--zr-picture-fixed-size);
  object-fit: contain;
  object-position: left center;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1199px) {
  .zr-header-picture {
    --zr-picture-size: var(--zr-picture-size-laptops, var(--zr-picture-size-default, 72px));
    --zr-picture-fixed-size: var(--zr-picture-fixed-size-laptops, var(--zr-picture-fixed-size-default, 30px));
  }
}
@media (max-width: 1023px) {
  .zr-header-picture {
    --zr-picture-size: var(--zr-picture-size-tablets, var(--zr-picture-size-default, 64px));
    --zr-picture-fixed-size: var(--zr-picture-fixed-size-tablets, var(--zr-picture-fixed-size-default, 25px));
  }
}
@media (max-width: 767px) {
  .zr-header-picture {
    --zr-picture-size: var(--zr-picture-size-mobiles, var(--zr-picture-size-default, 56px));
    --zr-picture-fixed-size: var(--zr-picture-fixed-size-mobiles, var(--zr-picture-fixed-size-default, 20px));
  }
}
.zr-custom-header.zr-header-scrolled .zr-header-picture__inner {
  max-height: var(--zr-picture-fixed-size);
}
.zr-custom-header.zr-header-scrolled .zr-header-picture__img--default {
  max-height: var(--zr-picture-fixed-size);
  height: var(--zr-picture-fixed-size);
  opacity: 0;
  pointer-events: none;
}
.zr-custom-header.zr-header-scrolled .zr-header-picture__img--fixed {
  opacity: 1;
  pointer-events: auto;
}

.zr-header-social {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.zr-header-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}
.zr-header-social__link:hover {
  color: var(--zr-text-link-color-hover, #fc0);
}
.zr-header-social__link i {
  font-size: 1.5rem;
}

.zr-header-account,
.zr-header-cart,
.zr-header-wishlist,
.zr-header-compare {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 0.5rem;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  cursor: pointer;
  font: inherit;
}

.zr-header-account:focus,
.zr-header-cart:focus,
.zr-header-wishlist:focus {
  outline: none;
}

.zr-header-cart__badge {
  position: relative;
}

.zr-header-cart__count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #fc0;
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
}

.zr-header-cart__price {
  margin-left: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Cart Dropdown */
.zr-header-cart-wrapper {
  position: relative;
}

.zr-header-cart__toggle {
  cursor: pointer;
  transition: color 0.2s ease;
  position: relative;
}

.zr-header-cart__toggle:hover {
  color: var(--zr-text-link-color-hover, #fc0);
}

.zr-header-cart__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 380px;
  max-width: 450px;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  max-height: 80vh;
  display: flex;
  flex-direction: column;
}

.zr-header-cart-wrapper.zr-dropdown-open .zr-header-cart__dropdown,
.zr-header-cart-wrapper.zr-dropdown-open .zr-header-cart__dropdown::before {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Bridge area between toggle and dropdown */
.zr-header-cart__dropdown::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Cart Items */
.zr-header-cart__items {
  flex: 1;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.zr-header-cart__items-scroll {
  max-height: 400px;
  overflow-y: auto;
  padding: 1rem;
}

.zr-header-cart__table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.zr-header-cart__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.zr-header-cart__item:last-child {
  border-bottom: none;
}

.zr-header-cart__item-image {
  padding: 0.75rem 0.75rem 0.75rem 0;
  width: 60px;
  vertical-align: top;
}

.zr-header-cart__item-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  display: block;
}

.zr-header-cart__item-details {
  padding: 0.75rem;
  vertical-align: top;
}

.zr-header-cart__item-quantity {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0.25rem;
}

.zr-header-cart__item-name {
  font-size: 0.9rem;
  color: #333;
  text-decoration: none;
  display: block;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.zr-header-cart__item-name:hover {
  color: var(--zr-text-link-color-hover, #fc0);
}

.zr-header-cart__item-price {
  padding: 0.75rem 0 0.75rem 0.75rem;
  text-align: right;
  vertical-align: top;
  white-space: nowrap;
  font-weight: 500;
  color: #333;
  font-size: 0.9rem;
}

/* Overflow Notice */
.zr-header-cart__overflow-notice {
  padding: 1rem;
  background: #f8f9fa;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.875rem;
  color: #666;
  text-align: center;
}

/* Cart Summary */
.zr-header-cart__summary {
  padding: 1.5rem;
  background: #fff;
}

.zr-header-cart__totals {
  margin-bottom: 1.5rem;
}

.zr-header-cart__total-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: #666;
}

.zr-header-cart__total-item--final {
  font-weight: 600;
  font-size: 1rem;
  color: #333;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 0.75rem;
  margin-top: 0.5rem;
}

.zr-header-cart__total-price {
  font-weight: 500;
  color: #333;
}

.zr-header-cart__shipping-hint {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.875rem;
}

.zr-header-cart__shipping-hint a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.zr-header-cart__shipping-hint a:hover {
  color: var(--zr-text-link-color-hover, #fc0);
}

.zr-header-cart__shipping-text {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Cart Buttons */
.zr-header-cart__buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.zr-header-cart__button {
  flex: 1;
  padding: 0.75rem 1rem;
  text-align: center;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 0;
  transition: all 0.2s ease;
  display: block;
}

.zr-header-cart__button--checkout {
  background: var(--zr-text-link-color-hover, #fc0);
  color: #fff;
}

.zr-header-cart__button--checkout:hover {
  background: #e6b800;
  color: #fff;
  transform: translateY(-1px);
}

.zr-header-cart__button--cart {
  background: transparent;
  color: var(--zr-text-link-color, #2d2d2d);
  border: 1px solid #ddd;
}

.zr-header-cart__button--cart:hover {
  background: #f8f9fa;
  border-color: var(--zr-text-link-color-hover, #fc0);
  color: var(--zr-text-link-color-hover, #fc0);
}

/* Empty Cart */
.zr-header-cart__empty {
  padding: 3rem 1.5rem;
  text-align: center;
}

.zr-header-cart__empty i {
  font-size: 3rem;
  color: #ddd;
  margin-bottom: 1rem;
  display: block;
}

.zr-header-cart__empty p {
  margin: 0 0 1.5rem 0;
  color: #666;
  font-size: 0.9rem;
}

/* Responsive - Cart (mobile: drop from top) */
@media (max-width: 767px) {
  .zr-header-cart__dropdown {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-width: auto;
    max-width: none;
    transform: translateY(-100%);
    max-height: 90vh;
  }
  .zr-header-cart-wrapper.zr-dropdown-open .zr-header-cart__dropdown {
    transform: translateY(0);
  }
  .zr-header-cart__dropdown::before {
    display: none;
  }
  .zr-header-cart__buttons {
    flex-direction: column;
  }
}
/* Wishlist Dropdown */
.zr-header-wishlist-wrapper {
  position: relative;
}

.zr-header-wishlist__toggle {
  cursor: pointer;
  transition: color 0.2s ease;
  position: relative;
}

.zr-header-wishlist__toggle:hover {
  color: var(--zr-text-link-color-hover, #fc0);
}

.zr-header-wishlist__count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #fc0;
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
}

.zr-header-wishlist__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 320px;
  max-width: 400px;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  max-height: 80vh;
  display: flex;
  flex-direction: column;
}

.zr-header-wishlist-wrapper.zr-dropdown-open .zr-header-wishlist__dropdown,
.zr-header-wishlist-wrapper.zr-dropdown-open .zr-header-wishlist__dropdown::before {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Bridge area between toggle and dropdown */
.zr-header-wishlist__dropdown::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Wishlist Items */
.zr-header-wishlist__items {
  flex: 1;
  overflow: hidden;
}

.zr-header-wishlist__items-scroll {
  max-height: 400px;
  overflow-y: auto;
  padding: 1rem;
}

.zr-header-wishlist__table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.zr-header-wishlist__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.zr-header-wishlist__item:hover {
  background-color: rgba(252, 192, 0, 0.05);
}

.zr-header-wishlist__item:last-child {
  border-bottom: none;
}

.zr-header-wishlist__item-details {
  padding: 0.875rem 0.75rem 0.875rem 0;
  vertical-align: top;
}

.zr-header-wishlist__item-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.zr-header-wishlist__item-link:hover {
  text-decoration: none;
}

.zr-header-wishlist__item-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.25rem;
  transition: color 0.2s ease;
}

.zr-header-wishlist__item:hover .zr-header-wishlist__item-name {
  color: var(--zr-text-link-color-hover, #fc0);
}

.zr-header-wishlist__item-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.zr-header-wishlist__item-badge {
  font-size: 0.75rem;
  padding: 0.125rem 0.5rem;
  border-radius: 0;
  font-weight: 500;
}

.zr-header-wishlist__item-badge--public {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
}

.zr-header-wishlist__item-badge--private {
  background: rgba(108, 117, 125, 0.1);
  color: #6c757d;
}

.zr-header-wishlist__item-count {
  padding: 0.875rem 0 0.875rem 0.75rem;
  text-align: right;
  vertical-align: top;
  white-space: nowrap;
  font-size: 0.875rem;
  color: #666;
}

/* Footer */
.zr-header-wishlist__footer {
  padding: 1rem 1.5rem;
  background: #f8f9fa;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.zr-header-wishlist__button {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--zr-text-link-color-hover, #fc0);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 0;
  transition: all 0.2s ease;
  display: block;
}

.zr-header-wishlist__button:hover {
  background: #e6b800;
  color: #fff;
  transform: translateY(-1px);
}

.zr-header-wishlist__button:active {
  transform: translateY(0);
}

/* Empty Wishlist */
.zr-header-wishlist__empty {
  padding: 3rem 1.5rem;
  text-align: center;
}

.zr-header-wishlist__empty i {
  font-size: 3rem;
  color: #ddd;
  margin-bottom: 1rem;
  display: block;
}

.zr-header-wishlist__empty p {
  margin: 0 0 1.5rem 0;
  color: #666;
  font-size: 0.9rem;
}

/* Responsive - Wishlist (mobile: drop from top) */
@media (max-width: 767px) {
  .zr-header-wishlist__dropdown {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-width: auto;
    max-width: none;
    transform: translateY(-100%);
    max-height: 90vh;
  }
  .zr-header-wishlist-wrapper.zr-dropdown-open .zr-header-wishlist__dropdown {
    transform: translateY(0);
  }
  .zr-header-wishlist__dropdown::before {
    display: none;
  }
}
/* Account Dropdown */
.zr-header-account-wrapper {
  position: relative;
}

.zr-header-account__toggle {
  cursor: pointer;
  transition: color 0.2s ease;
}

.zr-header-account__toggle:hover {
  color: var(--zr-text-link-color-hover, #fc0);
}

.zr-header-account__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 320px;
  max-width: 400px;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
}

.zr-header-account-wrapper.zr-dropdown-open .zr-header-account__dropdown,
.zr-header-account-wrapper.zr-dropdown-open .zr-header-account__dropdown::before {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Bridge area between toggle and dropdown */
.zr-header-account__dropdown::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dropdown Body */
.zr-header-account__dropdown-body {
  padding: 1.5rem;
}

/* Login Form */
.zr-header-account__login-form {
  margin: 0;
}

.zr-header-account__form-group {
  margin-bottom: 1rem;
}

.zr-header-account__form-group:last-of-type {
  margin-bottom: 1.5rem;
}

.zr-header-account__label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
}

.zr-header-account__input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 0;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  background: #fff;
}

.zr-header-account__input:focus {
  outline: none;
  border-color: var(--zr-text-link-color-hover, #fc0);
  box-shadow: 0 0 0 2px rgba(252, 192, 0, 0.1);
}

.zr-header-account__input::placeholder {
  color: #999;
}

.zr-header-account__submit {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: var(--zr-text-link-color-hover, #fc0);
  color: #fff;
  border: none;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.zr-header-account__submit:hover {
  background: #e6b800;
  transform: translateY(-1px);
}

.zr-header-account__submit:active {
  transform: translateY(0);
}

.zr-header-account__forgot-password {
  margin-top: 1rem;
  text-align: center;
}

.zr-header-account__forgot-password a {
  font-size: 0.875rem;
  color: var(--zr-text-link-color, #2d2d2d);
  text-decoration: none;
  transition: color 0.2s ease;
}

.zr-header-account__forgot-password a:hover {
  color: var(--zr-text-link-color-hover, #fc0);
  text-decoration: underline;
}

/* Dropdown Footer */
.zr-header-account__dropdown-footer {
  padding: 1rem 1.5rem;
  background: #f8f9fa;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  font-size: 0.875rem;
}

.zr-header-account__dropdown-footer span {
  color: #666;
  margin-right: 0.5rem;
}

.zr-header-account__dropdown-footer a {
  color: var(--zr-text-link-color-hover, #fc0);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.zr-header-account__dropdown-footer a:hover {
  color: #e6b800;
  text-decoration: underline;
}

/* Account Menu (Logged In) */
.zr-header-account__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.zr-header-account__menu-item {
  margin: 0;
}

.zr-header-account__menu-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  text-decoration: none;
  color: #333;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.zr-header-account__menu-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--zr-text-link-color-hover, #fc0);
  transform: scaleY(0);
  transition: transform 0.2s ease;
}

.zr-header-account__menu-link:hover {
  background: linear-gradient(90deg, rgba(252, 192, 0, 0.08) 0%, rgba(252, 192, 0, 0.04) 100%);
  color: var(--zr-text-link-color-hover, #fc0);
  transform: translateX(4px);
}

.zr-header-account__menu-link:hover::before {
  transform: scaleY(1);
}

.zr-header-account__menu-link i {
  width: 18px;
  text-align: center;
  font-size: 0.9rem;
}

.zr-header-account__menu-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: 0.5rem 0;
}

.zr-header-account__menu-link--logout {
  color: #dc3545;
}

.zr-header-account__menu-link--logout:hover {
  background: linear-gradient(90deg, rgba(220, 53, 69, 0.08) 0%, rgba(220, 53, 69, 0.04) 100%);
  color: #c82333;
}

.zr-header-account__menu-link--logout::before {
  background: #dc3545;
}

/* Shared dropdown backdrop & close button - mobile only */
.zr-header-dropdown-backdrop {
  display: none;
}

@media (max-width: 767px) {
  .zr-header-dropdown-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .zr-header-account-wrapper.zr-dropdown-open .zr-header-dropdown-backdrop,
  .zr-header-cart-wrapper.zr-dropdown-open .zr-header-dropdown-backdrop,
  .zr-header-wishlist-wrapper.zr-dropdown-open .zr-header-dropdown-backdrop,
  .zr-header-langswitch-wrapper.zr-dropdown-open .zr-header-dropdown-backdrop {
    display: block;
    opacity: 1;
  }
  .zr-dropdown-open .zr-header-account__dropdown,
  .zr-dropdown-open .zr-header-cart__dropdown,
  .zr-dropdown-open .zr-header-wishlist__dropdown,
  .zr-dropdown-open .zr-header-langswitch__dropdown {
    z-index: 9999;
  }
}
.zr-header-dropdown__close {
  display: none;
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--zr-text-link-color, #2d2d2d);
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  transition: background-color 0.2s, transform 0.2s;
}

.zr-header-dropdown__close:hover {
  background: rgba(0, 0, 0, 0.06);
}

.zr-header-dropdown__close:active {
  transform: scale(0.95);
}

.zr-header-dropdown__close-icon {
  position: relative;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transform: rotate(45deg);
}

.zr-header-dropdown__close-icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transform: rotate(-90deg);
}

/* Mobile: show close button and add top padding for it */
@media (max-width: 767px) {
  .zr-header-account__dropdown .zr-header-dropdown__close,
  .zr-header-cart__dropdown .zr-header-dropdown__close,
  .zr-header-wishlist__dropdown .zr-header-dropdown__close,
  .zr-header-langswitch__dropdown .zr-header-dropdown__close {
    display: flex;
  }
  .zr-header-account__dropdown,
  .zr-header-cart__dropdown,
  .zr-header-wishlist__dropdown,
  .zr-header-langswitch__dropdown {
    padding-top: 3rem;
  }
}
/* Responsive - Account (mobile: drop from top) */
@media (max-width: 767px) {
  .zr-header-account__dropdown {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-width: auto;
    max-width: none;
    transform: translateY(-100%);
  }
  .zr-header-account-wrapper.zr-dropdown-open .zr-header-account__dropdown {
    transform: translateY(0);
  }
  .zr-header-account__dropdown::before {
    display: none;
  }
}
/* Language switch dropdown */
.zr-header-langswitch-wrapper {
  position: relative;
}

.zr-header-langswitch__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
}

.zr-header-langswitch__toggle:hover {
  color: var(--zr-text-link-color-hover, #fc0);
}

.zr-header-langswitch__toggle:focus {
  outline: none;
}

.zr-header-langswitch__label {
  font-size: 0.9rem;
  font-weight: 500;
}

.zr-header-langswitch__flag {
  width: 24px;
  height: 16px;
  object-fit: cover;
  flex-shrink: 0;
}

.zr-header-langswitch__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 160px;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.zr-header-langswitch__dropdown::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.zr-header-langswitch-wrapper.zr-dropdown-open .zr-header-langswitch__dropdown,
.zr-header-langswitch-wrapper.zr-dropdown-open .zr-header-langswitch__dropdown::before {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.zr-header-langswitch__list {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
}

.zr-header-langswitch__item {
  margin: 0;
}

.zr-header-langswitch__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #333;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.zr-header-langswitch__link:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--zr-text-link-color-hover, #fc0);
}

.zr-header-langswitch__link--active {
  font-weight: 600;
  color: var(--zr-text-link-color-hover, #fc0);
}

/* Language switch mobile */
@media (max-width: 767px) {
  .zr-header-langswitch__dropdown {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-width: auto;
    max-width: none;
    transform: translateY(-100%);
  }
  .zr-header-langswitch-wrapper.zr-dropdown-open .zr-header-langswitch__dropdown {
    transform: translateY(0);
  }
  .zr-header-langswitch__dropdown::before {
    display: none;
  }
}
