.mous-product-sticky-bar {
  position: fixed;
  top: var(--header-visible-height);
  width: 100%;
  z-index: 3;
  background-color: #F5F5F7;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s;
}
@media only screen and (max-width: 991.98px) {
  .mous-product-sticky-bar {
    display: none;
  }
}
.mous-product-sticky-bar.visible {
  transform: translateY(0);
  opacity: 1;
}
.mous-product-sticky-bar__inner {
  height: 70px;
  gap: 33px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mous-product-sticky-bar__inner h4 {
  font-family: var(--font-heading-family);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 18px;
}
.mous-product-sticky-bar__inner h4 > * {
  font-family: var(--font-heading-family);
  font-size: inherit;
}
@media only screen and (min-width: 1440px) {
  .mous-product-sticky-bar__inner h4 {
    font-size: 20px;
  }
}
.mous-product-sticky-bar__wrapper-right {
  display: flex;
  gap: 30px;
}
.mous-product-sticky-bar__navigation {
  display: flex;
  gap: 33px;
  align-items: center;
  justify-content: center;
}
.mous-product-sticky-bar__navigation-link {
  font-family: var(--font-heading-family);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 15px;
}
.mous-product-sticky-bar__navigation-link > * {
  font-family: var(--font-heading-family);
  font-size: inherit;
}
.mous-product-sticky-bar__product-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  padding: 10px 0;
}
.mous-product-sticky-bar__product-info-title {
  display: none;
  max-width: 400px;
  flex-direction: column;
}
.mous-product-sticky-bar__product-info-title .heading-sm {
  line-height: 1.1;
}
@media only screen and (min-width: 992px) {
  .mous-product-sticky-bar__product-info-title {
    display: flex;
  }
}
.mous-product-sticky-bar__price-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: start;
  flex-direction: row-reverse;
  gap: 10px;
}
.mous-product-sticky-bar__price-wrapper.product-price-hidden {
  display: none;
}
.mous-product-sticky-bar__price-range, .mous-product-sticky-bar__price-range-sale {
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}
.mous-product-sticky-bar__price-range-sale {
  opacity: 0.5;
}
.mous-product-sticky-bar__product-info-button button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
  gap: 5px;
}
.mous-product-sticky-bar__product-info-button button[disabled] {
  cursor: not-allowed;
  pointer-events: none;
  background: var(--accent-1-color-transparent);
  border-color: revert;
  color: var(--text-main-color);
  opacity: 1;
}
.mous-product-sticky-bar__product-info-button button span {
  font-size: inherit;
}

.mous-sticky-bar-anchor {
  transform: translateY(calc(-1 * (var(--header-height) + 70px + 38px)));
}
