.woocommerce-products-header {
  position: relative;
}

.papillon-subcategory-nav {
  position: absolute;
  top: 50%;
  right: clamp(16px, 4vw, 64px);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  max-width: 52%;
  transform: translateY(-50%);
  font-family: "Lato", Arial, sans-serif;
}

.papillon-subcategory-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 24px;
  border: 1px solid transparent;
  border-radius: 0 !important;
  background: #f3e8e4;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: none;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.papillon-subcategory-nav__link:hover,
.papillon-subcategory-nav__link:focus-visible {
  border-color: #e2007a;
  background: #e2007a;
  color: #fff;
}

.papillon-subcategory-nav__link.is-active {
  border-color: #e2007a;
  background: #e2007a;
  color: #fff;
  box-shadow: none;
}

@media (max-width: 1024px) {
  .papillon-subcategory-nav {
    position: static;
    justify-content: flex-start;
    max-width: none;
    margin-top: 18px;
    overflow-x: auto;
    padding-bottom: 3px;
    transform: none;
    scrollbar-width: none;
  }

  .papillon-subcategory-nav::-webkit-scrollbar { display: none; }
}

@media (max-width: 600px) {
  .papillon-subcategory-nav { gap: 8px; margin-top: 14px; }
  .papillon-subcategory-nav__link { min-height: 40px; padding: 9px 18px; font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .papillon-subcategory-nav__link { transition: none; }
}
