.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__brand-group {
  display: flex;
  align-items: center;
  gap: 24px;
}

.vh__icon--search {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.vh__gate {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.vh__gate.is-open {
  display: flex;
}
.vh__gate-mask {
  position: absolute;
  inset: 0;
  background: rgba(42, 39, 34, 0.55);
}
.vh__gate-box {
  position: relative;
  background: var(--vierlot-bg);
  max-width: 420px;
  width: 100%;
  padding: 40px 32px 32px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(42, 39, 34, 0.2);
}
.vh__gate-x {
  position: absolute;
  top: 12px;
  right: 14px;
  background: transparent;
  border: 0;
  font-size: 26px;
  line-height: 1;
  color: var(--vierlot-text-light);
  cursor: pointer;
}
.vh__gate-brand {
  font-size: 20px;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
  color: var(--vierlot-text);
}
.vh__gate-title {
  font-size: 19px;
  font-weight: 500;
  margin: 0 0 12px;
  color: var(--vierlot-text);
}
.vh__gate-text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--vierlot-text-light);
  margin: 0 0 24px;
}
.vh .vh__gate-btn {
  display: block;
  width: 100%;
  padding: 14px;
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border: 1px solid #2A2722;
  color: #2A2722;
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease;
}
.vh .vh__gate-btn--primary {
  background: #2A2722;
  color: #F5F2ED;
}
.vh .vh__gate-btn--primary:hover {
  background: #423d35;
}
.vh__search-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--vierlot-bg);
  border-bottom: 1px solid var(--vierlot-line);
  max-height: 0;
  overflow: hidden;
  padding: 0 40px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  z-index: 60;
}
.vh__search-panel.is-open {
  max-height: 140px;
  padding: 22px 40px;
}
.vh__search-panel-form {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--vierlot-text);
  padding: 0 4px;
}
.vh__search-panel-form input[name="keyword"] {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: var(--vierlot-font);
  font-size: 16px;
  height: 46px;
  color: var(--vierlot-text);
  min-width: 0;
}
.vh__search-panel-form input::placeholder {
  color: var(--vierlot-text-muted);
}
.vh__search-panel-submit,
.vh__search-panel-close {
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--vierlot-text);
  display: inline-flex;
  align-items: center;
  padding: 6px;
}
.vh__search-panel-close {
  font-size: 24px;
  line-height: 1;
}

.vh__search {
  position: relative;
  height: 38px;
  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--inline {
  width: 240px;
}
.vh__search-icon {
  color: var(--vierlot-text);
  flex-shrink: 0;
  margin-right: 10px;
}
.vh__search input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: var(--vierlot-font);
  font-size: 14px;
  color: var(--vierlot-text);
  height: 100%;
  padding: 0;
  min-width: 0;
}
.vh__search input::placeholder {
  color: var(--vierlot-text-muted);
}

.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: flex;
  align-items: flex-start;
  gap: 48px;
  box-sizing: border-box;
}
.vh__dd-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 0 0 auto;
}
.vh__dd-col--brands {
  flex: 1 1 auto;
  min-width: 0;
}
.vh__dd-brands {
  columns: 3;
  column-gap: 32px;
}
.vh__dd-col--brands .vh__dd-link {
  display: block;
  margin-bottom: 10px;
  break-inside: avoid;
}
.vh__nav-item--about {
  position: relative;
}
.vh__dropdown--about {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: 260px;
  padding: 20px 0;
}
.vh__dropdown--about .vh__dropdown-inner {
  padding: 0 24px;
}
.vh__dropdown--about .vh__dd-col {
  gap: 12px;
  width: 100%;
}
.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__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-subtitle {
  font-size: 11px;
  font-weight: 500;
  color: var(--vierlot-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 12px 4px;
}
.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;
}

.vh__cart-count--empty {
  display: none;
}

.vh__cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 90%;
  max-width: 400px;
  height: 100vh;
  background: var(--vierlot-bg);
  z-index: 1101;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
}
.vh__cart-drawer.is-open {
  right: 0;
}
.vh__cart-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__cart-title {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vierlot-text);
}
.vh__cart-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__cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 20px;
}
.vh__cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--vierlot-line);
}
.vh__cart-item-pic {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  background: var(--vierlot-line);
  overflow: hidden;
  display: block;
}
.vh__cart-item-img,
.vh__cart-item-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vh__cart-item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.vh__cart-item-name {
  font-size: 13px;
  line-height: 1.4;
  color: var(--vierlot-text);
  text-decoration: none;
}
.vh__cart-item-condition {
  font-size: 12px;
  color: var(--vierlot-text-muted);
  margin-top: 4px;
}
.vh__cart-item-price {
  font-size: 14px;
  color: var(--vierlot-text);
  margin-top: 6px;
}
.vh__cart-item-remove {
  align-self: flex-start;
  margin-top: auto;
  padding: 4px 0;
  background: transparent;
  border: 0;
  color: var(--vierlot-text-muted);
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
}
.vh__cart-item-remove:hover {
  color: var(--vierlot-text);
}
.vh__cart-empty {
  padding: 64px 20px;
  text-align: center;
}
.vh__cart-empty-text {
  font-size: 14px;
  color: var(--vierlot-text-light);
  margin: 0 0 20px;
}
a.vh__cart-empty-btn,
.vh__cart-drawer a.vh__cart-empty-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--vierlot-text);
  color: var(--vierlot-bg);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
}
.vh__cart-foot {
  flex-shrink: 0;
  padding: 20px;
  border-top: 1px solid var(--vierlot-line);
}
.vh__cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 500;
  color: var(--vierlot-text);
}
.vh__cart-note {
  font-size: 12px;
  color: var(--vierlot-text-muted);
  margin-top: 6px;
}
a.vh__cart-checkout,
.vh__cart-drawer a.vh__cart-checkout {
  display: block;
  margin-top: 16px;
  padding: 15px;
  background: var(--vierlot-text);
  color: var(--vierlot-bg);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
a.vh__cart-viewbag,
.vh__cart-drawer a.vh__cart-viewbag {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--vierlot-text);
  text-align: center;
  text-decoration: underline;
}
.vh__cart-mask {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1100;
}
.vh__cart-mask.is-visible {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .vh__cart-drawer {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .vh__nav {
    gap: 24px;
  }
  .vh__icons {
    gap: 18px;
  }
  .vh__brand-group {
    gap: 16px;
  }
  .vh__search--inline {
    width: 180px;
  }
}

@media (max-width: 768px) {
  .vh__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: auto;
    min-height: 60px;
    padding: 10px 16px;
    gap: 0;
    grid-template-columns: unset;
  }
  .vh__brand-group {
    display: contents;
  }
  .vh__nav {
    display: none;
  }
  .vh__logo {
    font-size: 22px;
    order: 1;
    flex: 0 0 auto;
    margin-right: auto;
  }
  .vh__icons {
    gap: 4px;
    order: 2;
    flex: 0 0 auto;
  }
  .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--inline {
    order: 3;
    flex: 0 0 100%;
    width: 100%;
    margin-top: 10px;
  }
}
