/* ============================================================
   Archive-only catalog styles.
   Shared product-card, pagination, empty states, and focus styles
   live in product-card-shared.css.
   ============================================================ */

.steed-product-archive {
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-sidebar: 400;
  --z-modal: 500;
  --z-tooltip: 600;
  --z-filter-overlay: 1000;
  --z-filter-sidebar: 1010;
  max-width: 100%;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  .steed-product-archive {
    overflow-x: clip;
  }
}

.steed-product-archive #shop-results-content {
  min-height: 400px;
  position: relative;
  max-width: 100%;
  min-width: 0;
}

.steed-product-archive > .container,
.steed-product-archive .catalog-hero > .container {
  width: 100%;
  max-width: var(--container-max, 1280px);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-4, 16px);
  padding-right: var(--space-4, 16px);
  box-sizing: border-box;
}

.steed-product-archive .catalog-hero,
.steed-product-archive .page-layout,
.steed-product-archive .page-main,
.steed-product-archive .shop-toolbar {
  max-width: 100%;
}

.steed-product-archive .catalog-page-shell {
  padding-top: var(--space-5, 24px);
  padding-bottom: var(--space-10, 48px);
}

.steed-product-archive #shop-results-content.is-loading {
  pointer-events: none;
  opacity: 0.96;
  transition: opacity 0.12s ease;
}

.steed-product-archive #shop-results-content.is-loading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 20;
  background: linear-gradient(90deg, transparent, var(--color-primary, #1a56db), transparent);
  background-size: 200% 100%;
  animation: steed-loading-bar 0.55s linear infinite;
}

@keyframes steed-loading-bar {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.steed-product-archive .shop-toolbar.is-loading {
  pointer-events: none;
  opacity: 0.82;
  transition: opacity 0.12s ease;
}

.steed-product-archive .shop-breadcrumb {
  margin-bottom: 8px;
}

.steed-product-archive .shop-breadcrumb__list {
  font-size: 13px;
}

.steed-product-archive .shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border-light, #f1f5f9);
  position: relative;
  z-index: 80;
  overflow: visible;
}

.steed-product-archive .shop-toolbar__count {
  font-size: 13px;
  color: var(--color-text-muted, #64748b);
  white-space: nowrap;
}

.steed-product-archive .shop-toolbar__controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.steed-product-archive .shop-toolbar__sort {
  margin-left: auto;
  position: relative;
  z-index: 90;
}

.steed-product-archive .shop-per-page,
.steed-product-archive .shop-layout {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  background: var(--color-bg-tertiary, #f1f5f9);
  border-radius: 7px;
  padding: 3px;
}

.steed-product-archive .shop-per-page__btn,
.steed-product-archive .shop-layout__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 28px;
  padding: 0 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-primary, #1e293b);
  border: none;
  border-radius: 5px;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.15s, color 0.15s, box-shadow 0.15s;
}

.steed-product-archive .shop-per-page__btn:hover,
.steed-product-archive .shop-layout__btn:hover {
  color: var(--color-text-primary, #1e293b);
}

.steed-product-archive .shop-per-page__btn.active,
.steed-product-archive .shop-layout__btn.active {
  background: #fff;
  color: var(--color-primary-dark, #1e40af);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
}

.steed-product-archive .shop-per-page__btn,
.steed-product-archive .shop-layout__btn,
.steed-product-archive .filter-mobile-toggle {
  touch-action: manipulation;
}

.steed-product-archive .shop-layout__btn {
  min-width: 30px;
  width: 30px;
  padding: 0;
}

.steed-product-archive .shop-layout__btn svg {
  pointer-events: none;
}

.steed-product-archive .filter-mobile-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 14px;
  background: var(--color-bg-primary, #fff);
  border: 1px solid var(--color-border, #e2e8f0);
  border-radius: var(--radius-md, 8px);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-primary, #1e293b);
  cursor: pointer;
  margin-bottom: 12px;
}

.steed-product-archive .filter-mobile-toggle__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background: var(--color-primary, #1a56db);
  color: #fff;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
}

.steed-product-archive .filter-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  z-index: var(--z-filter-overlay, 880);
}

.steed-product-archive .page-sidebar__header {
  display: none;
}

.steed-product-archive .page-sidebar__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-primary, #1e293b);
}

.steed-product-archive .page-sidebar__close {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: -8px -8px -8px auto;
  padding: 0;
  color: var(--color-text-secondary, #475569);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.steed-product-archive .page-sidebar__close:hover {
  color: var(--color-text-primary, #1e293b);
  background: var(--color-bg-secondary, #f8fafc);
}

.steed-product-archive .filter-block {
  margin-bottom: 0;
  border-bottom: 1px solid var(--color-border-light, #f1f5f9);
}

.steed-product-archive .filter-block__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 0;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-secondary, #475569);
  background: none;
  border: none;
  cursor: pointer;
  user-select: none;
  -webkit-appearance: none;
}

.steed-product-archive .filter-block__title:hover {
  color: var(--color-text-primary, #1e293b);
}

.steed-product-archive .filter-block__title::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat center;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.steed-product-archive .filter-block__title:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231a56db' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}

.steed-product-archive .filter-block__title[aria-expanded="false"]::after {
  transform: rotate(-90deg);
}

.steed-product-archive .filter-block__body {
  overflow: hidden;
  transition: max-height 0.25s ease, opacity 0.2s ease;
  max-height: 600px;
  opacity: 1;
}

.steed-product-archive .filter-block__title[aria-expanded="false"] + .filter-block__body {
  max-height: 0;
  opacity: 0;
}

.steed-product-archive .filter-block__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 12px;
}

.steed-product-archive .filter-block .checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--color-text-secondary, #475569);
  padding: 8px;
  border-radius: var(--radius-sm, 6px);
  transition: color 0.12s, background 0.12s;
  min-height: 44px;
}

.steed-product-archive .filter-block .checkbox-group__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-width: 0;
}

.steed-product-archive .filter-block .checkbox-group__label {
  min-width: 0;
  color: inherit;
  line-height: 1.45;
}

.steed-product-archive .filter-block .checkbox-group__meta {
  flex: 0 0 auto;
  color: var(--color-text-muted, #64748b);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  padding: 3px 6px;
  border: 1px solid var(--color-border-light, #f1f5f9);
  border-radius: 999px;
  background: var(--color-bg-secondary, #f8fafc);
}

.steed-product-archive .filter-block .checkbox-group:hover .checkbox-group__meta {
  color: var(--color-primary, #1a56db);
  border-color: rgba(26, 86, 219, 0.16);
  background: rgba(239, 246, 255, 0.72);
}

.steed-product-archive .filter-block .checkbox-group:hover {
  color: var(--color-primary, #1a56db);
  background: var(--color-primary-light, #eff6ff);
}

.steed-product-archive .filter-block .checkbox-group input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  border: 1.5px solid var(--color-border-dark, #cbd5e1);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: background-color 0.12s, border-color 0.12s;
}

.steed-product-archive .filter-block .checkbox-group:hover input[type="checkbox"] {
  border-color: var(--color-primary, #1a56db);
  background: var(--color-primary-light, #eff6ff);
}

.steed-product-archive .filter-block .checkbox-group:hover input[type="checkbox"]::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid var(--color-primary, #1a56db);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.steed-product-archive .filter-block .checkbox-group input[type="checkbox"]:checked {
  background: var(--color-primary, #1a56db);
  border-color: var(--color-primary, #1a56db);
}

.steed-product-archive .filter-block .checkbox-group input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.steed-product-archive .filter-price-row {
  display: flex;
  gap: 6px;
  align-items: center;
}

.steed-product-archive .filter-price-row input {
  padding: 6px 8px;
  font-size: 16px;
}

.steed-product-archive .filter-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.steed-product-archive .supei-sort {
  position: relative;
  display: inline-flex;
  z-index: 90;
}

.steed-product-archive .supei-sort__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  min-height: 36px;
  border: 1px solid var(--color-border, #e2e8f0);
  border-radius: var(--radius-sm, 6px);
  background: var(--color-bg-primary, #fff);
  cursor: pointer;
  font-size: 13px;
  color: var(--color-text-primary, #1e293b);
  transition: border-color 0.12s ease;
  touch-action: manipulation;
}

.steed-product-archive .supei-sort__toggle:hover {
  border-color: var(--color-primary, #1a56db);
}

.steed-product-archive .supei-sort__label {
  color: var(--color-text-muted, #64748b);
  font-size: 12px;
}

.steed-product-archive .supei-sort__current {
  font-weight: 500;
}

.steed-product-archive .supei-sort__chevron {
  margin-left: 2px;
  transition: transform 0.2s;
}

.steed-product-archive .supei-sort.is-open .supei-sort__chevron {
  transform: rotate(180deg);
}

.steed-product-archive .supei-sort__menu {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  min-width: 200px;
  max-width: calc(100vw - 32px);
  margin: 0;
  padding: 4px;
  list-style: none;
  background: var(--color-bg-primary, #fff);
  border: 1px solid var(--color-border, #e2e8f0);
  border-radius: var(--radius-md, 8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  z-index: 400;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.15s, transform 0.15s, visibility 0s 0.15s;
}

.steed-product-archive .supei-sort.is-open .supei-sort__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.15s, transform 0.15s, visibility 0s 0s;
}

.steed-product-archive .supei-sort__item a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 16px;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--color-text-secondary, #475569);
  border-radius: var(--radius-sm, 6px);
  text-decoration: none;
  transition: background 0.1s, color 0.1s;
  touch-action: manipulation;
}

.steed-product-archive .supei-sort__item a:hover {
  background: var(--color-bg-tertiary, #f1f5f9);
  color: var(--color-text-primary, #1e293b);
}

.steed-product-archive .supei-sort__item.is-active a {
  color: var(--color-primary, #1a56db);
  font-weight: 500;
  background: var(--color-primary-light, #eff6ff);
}

.steed-product-archive .supei-sort__item.is-active a::after {
  content: "";
  justify-self: end;
  width: 6px;
  height: 10px;
  border: solid currentColor;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.steed-product-archive .page-layout {
  display: flex;
  gap: var(--space-6, 24px);
}

.steed-product-archive .page-sidebar {
  width: 240px;
  flex-shrink: 0;
}

.steed-product-archive .page-main {
  flex: 1;
  min-width: 0;
  overflow-x: clip;
}

.steed-product-archive .breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 0;
  font-size: 13px;
  color: var(--color-text-muted, #64748b);
}

.steed-product-archive .breadcrumb a {
  color: var(--color-text-muted, #64748b);
  text-decoration: none;
}

.steed-product-archive .breadcrumb a:hover {
  color: var(--color-primary, #1a56db);
}

.steed-product-archive .breadcrumb .separator {
  color: var(--color-border-dark, #cbd5e1);
  user-select: none;
}

.steed-product-archive .breadcrumb .current {
  color: var(--color-text-primary, #1e293b);
  font-weight: 500;
}

.steed-product-archive .btn-sm {
  padding: 5px 12px;
  font-size: 13px;
}

.steed-product-archive .btn-ghost {
  background: transparent;
  color: var(--color-text-secondary, #475569);
  border-color: transparent;
}

.steed-product-archive .btn-ghost:hover,
.steed-product-archive .btn-ghost:focus-visible {
  background: var(--color-bg-tertiary, #f1f5f9);
  color: var(--color-text-primary, #1e293b);
}

.steed-product-archive .form-input {
  width: 100%;
  padding: 8px 12px;
  font-size: 15px;
  color: var(--color-text-primary, #1e293b);
  background: #fff;
  border: 1px solid var(--color-border, #e2e8f0);
  border-radius: var(--radius-sm, 6px);
  outline: 0;
  transition: border-color 0.12s ease, box-shadow 0.12s ease;
}

.steed-product-archive .form-input:focus {
  border-color: var(--color-primary, #1a56db);
  box-shadow: 0 0 0 3px rgba(219, 234, 254, 0.95);
}

.steed-product-archive .form-input::placeholder {
  color: var(--color-text-muted, #64748b);
}

.steed-product-archive .moq-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-primary, #1a56db);
  background: var(--color-primary-light, #eff6ff);
  border-radius: 999px;
}

.steed-product-archive #product-list-view {
  overflow-x: auto;
}

.steed-product-archive .data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.steed-product-archive .data-table thead {
  background: var(--color-bg-table-header, #f8fafc);
  border-bottom: 2px solid var(--color-border, #e2e8f0);
}

.steed-product-archive .data-table th {
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  color: var(--color-text-secondary, #475569);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.steed-product-archive .data-table td {
  padding: 10px 14px;
  vertical-align: middle;
  border-bottom: 1px solid var(--color-border-light, #f1f5f9);
}

.steed-product-archive .data-table tbody tr:nth-child(2n) {
  background: var(--color-bg-table-stripe, #fafbfc);
}

.steed-product-archive .data-table tbody tr:hover,
.steed-product-archive .data-table tbody tr:nth-child(2n):hover {
  background: var(--color-primary-50, #eff6ff);
}

.steed-product-archive .data-table .col-sku {
  font-size: 13px;
  color: var(--color-text-muted, #64748b);
}

.steed-product-archive .data-table .col-price {
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}

.steed-product-archive .data-table .btn-sm {
  white-space: nowrap;
}

.steed-product-archive .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.steed-product-archive .catalog-hero {
  position: relative;
  background-color: #f8fafc;
  border-bottom: 1px solid var(--color-border, #e2e8f0);
  z-index: 110;
  isolation: isolate;
}

.steed-product-archive .catalog-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 230px;
  padding: 41px 0 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.steed-product-archive .catalog-hero__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 29px;
  width: 100%;
}

.steed-product-archive .catalog-hero__heading h1 {
  margin: 0;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.05;
  color: #20242a;
  letter-spacing: 0;
}

.steed-product-archive .catalog-hero__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  color: #1f2937;
  border-radius: var(--radius-full, 999px);
  transition: color 0.16s ease, background 0.16s ease, transform 0.16s ease;
}

.steed-product-archive .catalog-hero__back:hover {
  color: var(--color-primary, #1a56db);
  background: rgba(255, 255, 255, 0.72);
  transform: translateX(-2px);
}

.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav {
  width: min(100%, 1160px);
  height: auto;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 320;
  list-style: none;
  padding: 0;
}

.steed-product-archive .catalog-hero .slp-category-nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav > li,
.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav > .slp-category-nav__list > li {
  height: auto;
  position: relative;
  padding-bottom: 18px;
  margin-bottom: -18px;
}

.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav > li::after,
.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav > .slp-category-nav__list > li::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 18px;
  pointer-events: none;
}

.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav > li > a,
.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav > .slp-category-nav__list > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 6px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
  position: relative;
}

.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav > li > a::after,
.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav > .slp-category-nav__list > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #1a56db;
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav > li > a:hover,
.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav > .slp-category-nav__list > li > a:hover {
  color: #1a56db;
}

.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav > li > a:hover::after,
.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav > .slp-category-nav__list > li > a:hover::after {
  transform: scaleX(1);
}

.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav > li.current-menu-item > a,
.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav > li.current-menu-ancestor > a,
.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav > li.is-active > a,
.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav > .slp-category-nav__list > li.current-menu-item > a,
.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav > .slp-category-nav__list > li.current-menu-ancestor > a,
.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav > .slp-category-nav__list > li.is-active > a {
  color: #1a56db;
}

.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav > li.current-menu-item > a::after,
.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav > li.current-menu-ancestor > a::after,
.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav > .slp-category-nav__list > li.current-menu-item > a::after,
.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav > .slp-category-nav__list > li.current-menu-ancestor > a::after {
  transform: scaleX(1);
}

.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav > li.menu-item-has-children > a::before,
.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav > .slp-category-nav__list > li.menu-item-has-children > a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  margin-left: 4px;
  transition: transform 0.2s ease;
  order: 1;
}

.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav > li.menu-item-has-children:hover > a::before,
.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav > li.menu-item-has-children.is-open > a::before,
.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav > .slp-category-nav__list > li.menu-item-has-children:hover > a::before,
.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav > .slp-category-nav__list > li.menu-item-has-children.is-open > a::before {
  transform: rotate(225deg) translateY(1px);
}

.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav .sub-menu {
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  transform: translateY(2px);
  min-width: 200px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 600;
  text-align: left;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0s 0.15s;
}

.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav .sub-menu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav li:hover > .sub-menu,
.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav li.menu-item-has-children.is-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.2s ease 0.12s, transform 0.2s ease 0.12s, visibility 0s 0s;
}

.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav .sub-menu > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 10px 14px;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.15s ease;
}

.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav .sub-menu > li > a:hover {
  color: #1a56db;
  background: #eff6ff;
  padding-left: 18px;
}

.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav .sub-menu li {
  position: relative;
}

.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav .sub-menu li.menu-item-has-children {
  padding-right: 14px;
  margin-right: -14px;
}

.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav .sub-menu li.menu-item-has-children::after {
  content: "";
  position: absolute;
  top: 4px;
  right: -14px;
  bottom: 4px;
  width: 18px;
}

.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav .sub-menu li.menu-item-has-children > a::after {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  margin-left: auto;
  border-top: 1.8px solid currentColor;
  border-right: 1.8px solid currentColor;
  transform: rotate(45deg);
}

.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav .sub-menu .sub-menu {
  top: -8px;
  left: calc(100% - 6px);
  transform: translateX(10px);
}

.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav .sub-menu .sub-menu::before {
  top: 0;
  bottom: 0;
  left: -18px;
  right: auto;
  width: 18px;
  height: auto;
}

.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav .sub-menu li:hover > .sub-menu,
.steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav .sub-menu li.menu-item-has-children.is-open > .sub-menu {
  transform: translateX(0);
}

.steed-product-archive .custom-product-archive__seo {
  max-width: 800px;
  margin: 40px auto 0;
  padding: 24px 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-secondary, #475569);
  border-top: 1px solid var(--color-border-light, #f1f5f9);
}

.steed-product-archive .custom-product-archive__seo-title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary, #1e293b);
}

.steed-product-archive .custom-product-archive__seo-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.steed-product-archive .custom-product-archive__seo-links li {
  margin: 0;
}

.steed-product-archive .custom-product-archive__seo-links a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 0;
}

@media (max-width: 1180px) and (min-width: 769px) {
  .steed-product-archive .shop-toolbar__controls {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .steed-product-archive .catalog-page-shell,
  .steed-product-archive .page-main {
    background: var(--color-bg-primary, #fff);
  }

  .steed-product-archive .catalog-page-shell {
    padding-top: 10px;
    padding-bottom: 32px;
  }

  .steed-product-archive .catalog-hero {
    overflow-x: hidden;
  }

  .steed-product-archive .shop-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(132px, 1fr);
    align-items: center;
    width: calc(100% - 18px);
    margin-left: auto;
    margin-right: auto;
    gap: 6px;
    margin-bottom: 8px;
    padding-bottom: 6px;
  }

  .steed-product-archive .shop-toolbar__count {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    font-size: 12px;
  }

  .steed-product-archive .shop-toolbar__controls {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    justify-content: flex-start;
    gap: 6px;
  }

  .steed-product-archive .shop-toolbar__sort {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    margin-left: 0;
  }

  .steed-product-archive .supei-sort {
    display: flex;
    width: 100%;
  }

  .steed-product-archive .supei-sort__toggle {
    width: 100%;
    min-height: 36px;
    padding: 6px 10px;
    font-size: 12px;
    justify-content: space-between;
  }

  .steed-product-archive .supei-sort__label {
    display: none;
  }

  .steed-product-archive .supei-sort__current {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .steed-product-archive .supei-sort__menu {
    left: 0;
    right: auto;
    width: 100%;
    min-width: 100%;
  }

  .steed-product-archive .shop-per-page,
  .steed-product-archive .shop-layout {
    flex: 1 1 0;
    justify-content: space-between;
    max-width: 100%;
    min-width: 0;
    padding: 2px;
    border-radius: 8px;
  }

  .steed-product-archive .shop-layout__btn[data-layout="grid-3"],
  .steed-product-archive .shop-layout__btn[data-layout="grid-4"] {
    display: none;
  }

  .steed-product-archive .shop-per-page__btn {
    flex: 1 1 0;
    min-width: 28px;
    height: 28px;
    padding: 0 4px;
    font-size: 11px;
  }

  .steed-product-archive .shop-layout__btn {
    flex: 1 1 0;
    min-width: 28px;
    width: auto;
    height: 28px;
  }

  .steed-product-archive .shop-layout__btn svg {
    width: 13px;
    height: 13px;
  }

  .steed-product-archive .data-table {
    min-width: 600px;
    font-size: 12px;
  }

  .steed-product-archive .data-table th:nth-child(4),
  .steed-product-archive .data-table td:nth-child(4),
  .steed-product-archive .data-table th:nth-child(6),
  .steed-product-archive .data-table td:nth-child(6),
  .steed-product-archive .data-table th:nth-child(7),
  .steed-product-archive .data-table td:nth-child(7) {
    display: none;
  }

  .steed-product-archive .data-table td,
  .steed-product-archive .data-table th {
    padding: 6px 4px;
  }

  .steed-product-archive .filter-mobile-toggle {
    display: flex;
    width: calc(100% - 18px);
    min-height: 42px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    padding: 8px 12px;
    border-radius: 10px;
  }

  .steed-product-archive .filter-mobile-toggle svg {
    width: 16px;
    height: 16px;
  }

  .steed-product-archive .shop-breadcrumb {
    width: calc(100% - 18px);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2px;
  }

  .steed-product-archive .breadcrumb {
    padding: 4px 0;
    gap: 6px;
    font-size: 12px;
  }

  .steed-product-archive .page-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    max-width: 85vw;
    z-index: var(--z-filter-sidebar, 890);
    background: var(--color-bg-primary, #fff);
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
    padding: 16px;
    box-shadow: 2px 0 16px rgba(0, 0, 0, 0.12);
  }

  .steed-product-archive .page-sidebar__header {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border-light, #f1f5f9);
  }

  .steed-product-archive .page-sidebar__close {
    display: inline-flex;
  }

  .steed-product-archive .page-sidebar.is-open {
    transform: translateX(0);
  }

  .steed-product-archive .filter-mobile-overlay.is-visible {
    display: block;
  }

  .steed-product-archive #shop-filters {
    padding-bottom: 80px;
  }

  .steed-product-archive .page-layout {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .steed-product-archive .shop-toolbar__count {
    width: auto;
  }
}

@media (hover: none) and (min-width: 769px) {
  .steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav li:hover > .sub-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(2px);
  }

  .steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav li.menu-item-has-children.is-open > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav .sub-menu li.menu-item-has-children.is-open > .sub-menu {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .steed-product-archive .catalog-hero .slp-category-nav.supei-hf-nav .sub-menu {
    transition: none;
  }
}

@media print {
  .steed-product-archive .catalog-hero,
  .steed-product-archive .filter-mobile-toggle,
  .steed-product-archive .page-sidebar,
  .steed-product-archive .filter-mobile-overlay,
  .steed-product-archive .shop-toolbar__controls,
  .steed-product-archive .shop-toolbar__sort,
  .steed-product-archive .shop-toolbar,
  .steed-product-archive .shop-breadcrumb,
  .steed-product-archive .pagination,
  .steed-product-archive .woocommerce-pagination {
    display: none !important;
  }

  .steed-product-archive .product-grid {
    display: block !important;
  }

  .steed-product-archive .product-card {
    break-inside: avoid;
    page-break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
    margin-bottom: 12px;
  }

  .steed-product-archive .container {
    max-width: 100%;
    padding: 0;
  }

  .steed-product-archive .page-layout {
    display: block;
  }

  .steed-product-archive .page-main {
    width: 100%;
  }
}
