.current-product-category-page .catalog-results-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin: 14px 0 18px;
}

.current-product-category-page .catalog-results-navigation[hidden] {
  display: none;
}

.current-product-category-page .catalog-results-navigation button {
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid rgba(23, 75, 105, 0.22);
  border-radius: 999px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
}

.current-product-category-page .catalog-results-navigation-primary {
  border-color: #0f6470;
  background: #0f6470;
  color: #fff;
  box-shadow: 0 8px 22px rgba(15, 100, 112, 0.15);
}

.current-product-category-page .catalog-results-navigation-back {
  background: #fff;
  color: #174b69;
}

.current-product-category-page .catalog-results-navigation button:hover {
  border-color: #176f8c;
  box-shadow: 0 9px 24px rgba(23, 75, 105, 0.14);
}

.current-product-category-page .catalog-results-navigation button:focus-visible {
  outline: 3px solid #176f8c;
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(23, 111, 140, 0.13);
}

.current-product-category-page #product-list :is(
  .catalog-card,
  .product-card,
  .product-family-card,
  .collection-card,
  .language-card
) {
  scroll-margin-top: 18px;
}

.current-product-category-page #product-list :is(
  .catalog-card,
  .product-card,
  .product-family-card,
  .collection-card,
  .language-card
):focus-within,
.current-product-category-page #product-list :is(
  .catalog-card,
  .product-card,
  .product-family-card,
  .collection-card,
  .language-card
)[data-catalog-focus-target="true"] {
  border-color: rgba(23, 111, 140, 0.72);
  outline: 3px solid rgba(23, 111, 140, 0.9);
  outline-offset: 3px;
  box-shadow: 0 18px 38px rgba(15, 74, 96, 0.16);
}

@media (max-width: 720px) {
  .current-product-category-page .catalog-results-navigation {
    position: fixed;
    top: 8px;
    left: 50%;
    z-index: 9;
    width: min(520px, calc(100vw - 24px));
    justify-content: stretch;
    gap: 8px;
    margin: 0;
    padding: 7px;
    border: 1px solid rgba(23, 75, 105, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 28px rgba(15, 74, 96, 0.11);
    backdrop-filter: blur(12px);
    transform: translateX(-50%);
  }

  .current-product-category-page .catalog-results-navigation button {
    flex: 1 1 0;
    min-width: 0;
    min-height: 44px;
    padding-inline: 10px;
    font-size: 0.84rem;
  }

  .current-product-category-page #product-list :is(
    .catalog-card,
    .product-card,
    .product-family-card,
    .collection-card,
    .language-card
  ) {
    scroll-margin-top: 76px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .current-product-category-page .catalog-results-navigation button {
    transition: none;
  }
}
