/* Mobile storefront navigation; original controls remain available on larger screens. */
.home-mobile-section-nav,
.home-mobile-category-hint {
  display: none;
}

@media (max-width: 639.98px) {
  .home-mobile-nav-section > .home-mobile-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    margin: 0 0 14px;
    padding-inline: 3%;
    box-sizing: border-box;
  }

  .home-mobile-section-heading > .products-title,
  .home-mobile-section-heading > .section-title {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 20px !important;
    line-height: 1.5;
    text-align: start;
    overflow-wrap: anywhere;
  }

  .home-mobile-section-heading > .home-mobile-section-nav {
    display: flex;
    flex: 0 0 88px;
    align-items: center;
    direction: ltr;
    gap: 0;
  }

  .home-mobile-section-heading > .home-mobile-section-nav[hidden] {
    display: none;
  }

  .home-mobile-section-nav > .home-mobile-nav-button {
    position: relative;
    display: grid;
    place-items: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    box-shadow: none;
    appearance: none;
    cursor: pointer;
    touch-action: manipulation;
  }

  .home-mobile-nav-button::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #872838;
    transition: background-color 150ms ease;
  }

  .home-mobile-nav-button > i {
    position: relative;
    z-index: 1;
    font-size: 13px;
    line-height: 1;
    color: inherit;
  }

  .home-mobile-section-nav > .home-mobile-nav-button:disabled {
    color: #a58d98;
    cursor: default;
  }

  .home-mobile-nav-button:disabled::before {
    background: #443139;
  }

  .home-mobile-nav-button:focus-visible,
  .home-mobile-category-hint:focus-visible {
    outline: 2px solid #f3c3d0;
    outline-offset: -3px;
    border-radius: 9px;
  }

  .home-mobile-nav-section > .swiper > .custom-navigation {
    display: none !important;
  }

  .home-page .icon-slider.home-mobile-category-ready > .swiper-button-prev,
  .home-page .icon-slider.home-mobile-category-ready > .swiper-button-next {
    display: none !important;
  }

  .home-page .icon-slider > .home-mobile-category-hint {
    position: absolute;
    left: 0;
    right: auto;
    top: 10px;
    z-index: 20;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    box-shadow: none;
    opacity: .58;
    transition: opacity 300ms ease;
    cursor: pointer;
    touch-action: manipulation;
  }

  .home-mobile-category-hint > span {
    display: grid;
    place-items: center;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: rgba(23, 10, 16, .25);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
  }

  .home-mobile-category-hint i {
    font-size: 13px;
    color: inherit;
    line-height: 1;
  }

  .home-page .icon-slider > .home-mobile-category-hint.is-fading {
    opacity: 0;
    pointer-events: none;
  }

  .home-page .icon-slider > .home-mobile-category-hint[hidden] {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-mobile-nav-button::before,
  .home-page .icon-slider > .home-mobile-category-hint {
    transition: none;
  }
}
