/* Shared line icons: drawn with CSS so phones never substitute emoji glyphs. */
.icon-button {
  position: relative;
  box-sizing: border-box;
  width: 32px;
  height: 32px;
  min-width: 32px;
  padding: 0 !important;
  margin: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
  line-height: 0;
  vertical-align: middle;
}

.header-tools {
  align-items: center;
}

.site-header,
.site-header a,
.site-header button,
.product-header,
.product-header a,
.product-header button {
  color: #000;
}

.search-icon {
  background-image: url("assets/search-icon.svg") !important;
  background-position: center !important;
  background-size: 28px 28px !important;
  background-repeat: no-repeat !important;
}

.search-icon::before {
  content: none;
}

.search-icon::after {
  content: none;
}

.bag-icon::before {
  content: none;
}

.bag-icon::after {
  content: none;
}

.bag-icon {
  background-image:url("assets/bag-icon.svg") !important;
  background-position:center !important;
  background-size:28px 28px !important;
  background-repeat:no-repeat !important;
}

.bag-icon .cart-count {
  position:absolute;
  top:-3px;
  right:-7px;
  display:grid;
  place-items:center;
  min-width:17px;
  height:17px;
  padding:0 4px;
  border-radius:9px;
  background:#111;
  color:#fff;
  font:9px/1 Arial,sans-serif;
  letter-spacing:0;
  pointer-events:none;
}

.bag-icon .cart-count:empty,.bag-icon .cart-count[data-empty="true"]{display:none}

.footer-arrow {
  display: inline-block;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 20L20 4M9 4H20V15' fill='none' stroke='%23111' stroke-width='2' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E");
}

.footer-arrow::before {
  content: none;
}

.footer-arrow::after {
  content: none;
}

.footer-arrow-small {
  width: 14px;
  height: 14px;
  margin-left: 3px;
  vertical-align: -2px;
}

.footer-arrow-small::before {
  content: none;
}

.footer-arrow-small::after {
  content: none;
}

@media (max-width: 850px) {
  .site-header {
    background:#fff !important;
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
    box-shadow:0 -120px 0 #fff;
    isolation:isolate;
  }
  .site-header::before{
    content:"";
    position:absolute;
    z-index:0;
    left:0;
    right:0;
    top:-140px;
    height:140px;
    background:#fff;
  }

  .site-header .header-tools {
    height: 32px;
    display: flex;
    align-items: center;
  }

  .site-header .search-trigger,
  .site-header .cart-trigger,
  .site-header .mobile-menu {
    width: 32px;
    height: 32px;
    min-width: 32px;
    align-self: center;
  }

  .site-header .mobile-menu {
    flex-direction: column;
    gap: 5px;
  }

  .site-header .mobile-menu span {
    display: block;
    width: 24px;
    height: 1px;
    background: #000;
  }
}

