/** Shopify CDN: Minification failed

Line 46:16 Expected identifier but found whitespace
Line 46:18 Unexpected "{"
Line 46:27 Expected ":"
Line 46:80 Expected ":"

**/
.list-menu--right {
  right: 0;
}

.list-menu--disclosure {
  position: absolute;
  min-width: 100%;
  width: 20rem;
  border: 1px solid rgba(var(--color-foreground), 0.2);
}

.list-menu--disclosure:focus {
  outline: none;
}

.list-menu__item--active {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.list-menu__item--active:hover {
  text-decoration-thickness: 0.2rem;
}

.list-menu--disclosure.localization-selector {
  max-height: 18rem;
  overflow: auto;
  width: 10rem;
  padding: 0.5rem;
}

/* 粘性导航栏容器：全屏宽度，确保粘性生效 */
.section-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  margin-bottom: {{ section.settings.margin_bottom | times: 0.75 | round: 0 }}px;
}
.scrolled-past-header {
  background-color: #000 !important; 
}

.scrolled-past-header .header-wrapper {
  background-color: transparent !important;
}


.scrolled-past-header .header button,
.scrolled-past-header .header .header__icon { 
  color: #fff !important;
}


/* 精确针对导航菜单项和其内部的span */
.scrolled-past-header .header__inline-menu .header__menu-item,
.scrolled-past-header .header__inline-menu .header__menu-item span,
.scrolled-past-header .header__inline-menu .list-menu__item,
.scrolled-past-header .header__inline-menu .list-menu__item span {
  color: #fff !important;
}


/* 确保下拉表单保持原有样式 */
.scrolled-past-header .disclosure__list,
.scrolled-past-header .disclosure__list *,
.scrolled-past-header .search-modal,
.scrolled-past-header .search-modal * {
  color: var(--color-foreground) !important;
  background-color: var(--color-background) !important;
}

/* 确保下拉表单的悬停效果不变 */
.scrolled-past-header .disclosure__link:hover {
  background-color: var(--color-background-hover) !important;
  color: var(--color-foreground) !important;
}

.scrolled-past-header .header__icon--cart .cart-count-bubble {
  background-color: #fff !important; /* 计数器背景变白 */
  color: #000 !important; /* 计数器文字变黑 */
  border: 1px solid #000 !important; /* 可选：加黑色边框，增强视觉 */
}

@media screen and (max-width: 750px) {
.scrolled-past-header .header button, .scrolled-past-header .header  {
    color: #000 !important;
}
}
