.vh {
  background: var(--vierlot-bg);
  border-bottom: 1px solid var(--vierlot-line);
  position: sticky;
  top: 0;
  z-index: 99;
  font-family: var(--vierlot-font);
  color: var(--vierlot-text);
}
div.section:has(> .vh) {
  position: sticky;
  top: 0;
  z-index: 99;
}

.vh__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  height: 70px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  box-sizing: border-box;
}

.vh__search {
  position: relative;
  height: 44px;
  border: 0;
  border-bottom: 1px solid var(--vierlot-line);
  display: flex;
  align-items: center;
  padding: 0 4px;
  background: transparent;
  box-sizing: border-box;
}
.vh__search-icon {
  color: var(--vierlot-text);
  flex-shrink: 0;
  margin-right: 12px;
}
.vh__search input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: var(--vierlot-font);
  font-size: 16px;
  color: var(--vierlot-text);
  height: 100%;
  padding: 0;
  min-width: 0;
}
.vh__search input::placeholder {
  color: var(--vierlot-text-muted);
}
.vh__search-close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: var(--vierlot-text);
  cursor: pointer;
  margin-right: -8px;
}
.vh__search-close:hover {
  opacity: 0.65;
}

.vh__logo {
  font-family: var(--vierlot-font);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--vierlot-text);
  white-space: nowrap;
  text-decoration: none;
}

.vh__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
}
.vh__nav-link {
  font-family: var(--vierlot-font);
  font-size: 15px;
  font-weight: 400;
  color: var(--vierlot-text);
  text-decoration: none;
  white-space: nowrap;
  line-height: 70px;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s ease;
}
.vh__nav-link:hover {
  opacity: 0.65;
}

.vh__nav-item {
  position: static;
}
.vh__nav-item .vh__nav-link {
  cursor: pointer;
}

.vh__dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--vierlot-bg);
  border-top: 1px solid var(--vierlot-line);
  border-bottom: 1px solid var(--vierlot-line);
  padding: 36px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 100;
}
.vh__nav-item.is-open .vh__dropdown {
  opacity: 1;
  visibility: visible;
}
.vh__dropdown-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  box-sizing: border-box;
}
.vh__dd-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vh__dd-col-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--vierlot-text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.vh__dd-shop-all {
  font-size: 16px;
  font-weight: 500;
  color: var(--vierlot-text);
  text-decoration: none;
  border-bottom: 1px solid var(--vierlot-text);
  padding-bottom: 4px;
  align-self: flex-start;
}
.vh__dd-shop-all:hover {
  opacity: 0.65;
}
.vh__dd-link {
  font-size: 14px;
  font-weight: 400;
  color: var(--vierlot-text);
  text-decoration: none;
  line-height: 1.4;
  transition: opacity 0.2s ease;
}
.vh__dd-link:hover {
  opacity: 0.65;
}

.vh__icons {
  display: flex;
  align-items: center;
  gap: 25px;
}
.vh__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--vierlot-text);
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  margin: 0 -10px;
}
.vh__icon:hover {
  opacity: 0.65;
}
.vh__icon svg {
  width: 24px;
  height: 24px;
}
.vh__icon--cart {
  position: relative;
}
.vh__cart-count {
  position: absolute;
  top: 6px;
  right: 4px;
  background: var(--vierlot-text);
  color: var(--vierlot-bg);
  font-size: 11px;
  font-weight: 500;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-sizing: border-box;
}

.vh__hamburger {
  display: none;
}

.vh__search-panel {
  display: none;
  border-bottom: 1px solid var(--vierlot-line);
  background: var(--vierlot-bg);
}
.vh__search-panel.is-open {
  display: block;
}
.vh__search-panel .vh__inner {
  height: auto;
  padding: 18px 30px;
  grid-template-columns: 1fr;
  gap: 0;
}
.vh__search--panel {
  width: 100%;
}

.vh__drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--vierlot-bg);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  overflow-y: auto;
}
.vh__drawer.is-open {
  right: 0;
}
.vh__drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 20px;
  border-bottom: 1px solid var(--vierlot-line);
  flex-shrink: 0;
}
.vh__drawer-brand {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--vierlot-text);
}
.vh__drawer-close {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  color: var(--vierlot-text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: -10px;
}
.vh__drawer-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 8px 20px;
}
.vh__drawer-link,
.vh__drawer-toggle {
  font-family: var(--vierlot-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--vierlot-text);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--vierlot-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  width: 100%;
  cursor: pointer;
  text-align: left;
}
.vh__drawer-toggle svg {
  transition: transform 0.25s ease;
  flex-shrink: 0;
  color: var(--vierlot-text);
}
.vh__drawer-group.is-open .vh__drawer-toggle svg {
  transform: rotate(180deg);
}
.vh__drawer-sub {
  display: none;
  flex-direction: column;
  padding: 4px 0 8px 0;
}
.vh__drawer-group.is-open .vh__drawer-sub {
  display: flex;
}
.vh__drawer-sublink {
  font-size: 14px;
  font-weight: 400;
  color: var(--vierlot-text-light);
  text-decoration: none;
  padding: 10px 12px;
}
.vh__drawer-foot {
  padding: 20px;
  border-top: 1px solid var(--vierlot-line);
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}
.vh__drawer-foot-link {
  font-size: 14px;
  color: var(--vierlot-text);
  text-decoration: none;
}

.vh__drawer-mask {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}
.vh__drawer-mask.is-visible {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1024px) {
  .vh__nav {
    gap: 24px;
  }
  .vh__icons {
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .vh__inner {
    height: 60px;
    padding: 0 16px;
    gap: 0;
    grid-template-columns: auto 1fr auto;
  }
  .vh__nav {
    display: none;
  }
  .vh__logo {
    font-size: 22px;
  }
  .vh__icons {
    gap: 4px;
  }
  .vh__hamburger {
    display: inline-flex;
  }
  .vh__icon {
    width: 44px;
    height: 44px;
    margin: 0;
  }
  .vh__hamburger {
    width: 44px;
    height: 44px;
    background: transparent;
    border: 0;
    color: var(--vierlot-text);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-right: -10px;
  }
  .vh__icon--cart {
    position: relative;
  }
  .vh__nav-item.is-open .vh__dropdown {
    opacity: 0;
    visibility: hidden;
  }
  .vh__search-panel .vh__inner {
    padding: 12px 16px;
  }
}
