/* ============================================================
   MA LITERIE FRANÇAISE — Category page (PrestaShop integration)
   Prefix: .cat-*  |  Extends: custom_beaulieu.css custom props
   ============================================================ */

/* ---------- Hide default warehouse category elements ---------- */
body.page-category #wrapper .breadcrumb { display: none; }
body.page-category #content > .page-title { display: none; }
body.page-category #content > .category-description { display: none; }
body.page-category #content > .category-image { display: none; }
body.page-category .products-top { display: none; }
body.page-category #facets_search_center,
body.page-category #facets_search_center_dropdown { display: none; }
body.page-category #wrapper { padding: 0; max-width: 100%; }
body.page-category #content { padding: 0; }
body.page-category #main { max-width: 100%; padding: 0; }

/* ---------- Category hero ---------- */
.cat-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 80px;
}

.cat-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform-origin: center;
  transition: transform 12s linear;
}

.cat-hero:hover .cat-hero__bg {
  transform: scale(1.03);
}

.cat-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 30%,
    rgba(33, 47, 55, 0.35) 65%,
    rgba(33, 47, 55, 0.55) 100%
  );
}

.cat-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 32px 28px 52px;
  display: grid;
  grid-template-areas:
    "breadcrumb breadcrumb"
    "copy       stat";
  grid-template-rows: 1fr auto;
  align-items: end;
  min-height: calc(80vh - 80px);
}

.cat-hero__breadcrumb {
  grid-area: breadcrumb;
  align-self: start;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .70);
}

.cat-hero__breadcrumb a {
  color: inherit;
  transition: color .2s;
}

.cat-hero__breadcrumb a:hover {
  color: #fff;
}

.cat-hero__copy {
  grid-area: copy;
}

.cat-hero__eyebrow {
  display: block;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, .70);
  margin: 0 0 10px;
  letter-spacing: .01em;
}

.cat-hero__title {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(80px, 14vw, 200px);
  line-height: .9;
  color: #fff;
  margin: 0 0 18px;
  letter-spacing: -.02em;
}

.cat-hero__subtitle {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 24px;
  font-weight: 400;
  color: rgba(255, 255, 255, .85);
  margin: 0;
  line-height: 1.3;
}

.cat-hero__stat {
  grid-area: stat;
  align-self: end;
  text-align: right;
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .80);
  letter-spacing: .06em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.cat-hero__stat-dot {
  display: none;
}

/* ---------- Filter bar ---------- */
.cat-filter {
  position: sticky;
  top: 0;
  z-index: 90;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.cat-filter__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 56px;
}

.cat-filter__pills {
  display: flex;
  gap: 8px;
  flex: 1;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.cat-filter__pills::-webkit-scrollbar {
  display: none;
}

.cat-filter__pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  background: transparent;
  white-space: nowrap;
  transition: border-color .25s var(--ease), color .25s var(--ease);
  position: relative;
}

.cat-filter__pill::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: transform .3s var(--ease);
}

.cat-filter__pill:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.cat-filter__pill:hover {
  color: var(--red);
  border-color: var(--red);
}

.cat-filter__pill.has-filter {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.cat-filter__pill-wrap {
  position: relative;
  flex-shrink: 0;
}

.cat-filter__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 12px;
  z-index: 100;
  max-height: 320px;
  overflow-y: auto;
}

.cat-filter__dropdown.is-open {
  display: block;
}

.cat-filter__opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  border-radius: 6px;
  transition: background .15s;
}

.cat-filter__opt:hover {
  background: var(--cream-2);
}

.cat-filter__opt input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--navy);
  flex-shrink: 0;
}

.cat-filter__active {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  padding-top: 4px;
}

.cat-filter__tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 11.5px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background .2s;
}

.cat-filter__tag:hover {
  background: var(--red);
}

.cat-filter__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.cat-filter__count {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}

.cat-filter__sort {
  position: relative;
}

.cat-filter__sort select {
  appearance: none;
  background: transparent;
  border: none;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  padding-right: 18px;
  cursor: pointer;
}

.cat-filter__sort::after {
  content: '▾';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: var(--navy);
  pointer-events: none;
}


/* ---------- PM Advanced Search listing widget ---------- */
.cat-advanced-search {
  background: #fff;
  padding: 40px 28px 0;
}

.cat-advanced-search > * {
  max-width: var(--container);
  margin-right: auto;
  margin-left: auto;
}

/* ---------- Product grid ---------- */
.cat-grid-section {
  padding: 60px 0 80px;
  background: #fff;
}

.cat-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}

.cat-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-radius: var(--rad-lg);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cat-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-2);
}

.cat-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.cat-card:hover .cat-card__media img {
  transform: scale(1.05);
}

.cat-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  pointer-events: none;
}

.cat-card__badge--blue  { background: var(--blue); }
.cat-card__badge--navy  { background: var(--navy); }
.cat-card__badge--red   { background: var(--red);  }


.cat-card__body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.cat-card__eyebrow {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

.cat-card__brand-logo {
  align-items: center;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(33, 47, 55, .08);
  border-radius: 6px;
  bottom: 14px;
  box-shadow: 0 10px 26px rgba(24, 40, 50, .10);
  display: flex;
  height: 42px;
  justify-content: center;
  left: 14px;
  max-width: 142px;
  min-width: 58px;
  padding: 6px 10px;
  position: absolute;
  z-index: 4;
}

.cat-card__brand-logo img {
  display: block;
  height: auto;
  max-height: 30px;
  max-width: 122px;
  object-fit: contain;
  width: auto;
}

.cat-card__name {
  line-height: 1.1;
  color: var(--navy);
  margin: 0;
}

.cat-card__name a {
  color: inherit;
  text-decoration: none;
}

.cat-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cat-card__chip {
  display: inline-flex;
  padding: 3px 9px;
  border: 1px solid rgba(33, 47, 55, .22);
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: .03em;
}

.cat-card__foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 4px;
  border-top: 1px solid var(--line);
}

.cat-card__rating {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--navy);
}

.cat-card__avis {
  font-weight: 400;
  color: var(--muted);
}

.cat-card__price {
  color: var(--navy);
  white-space: nowrap;
}

/* ---------- Editorial guide ---------- */
.cat-guide {
  background: #fff;
  padding: 120px 0;
}

.cat-guide__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.cat-guide__head {
  text-align: center;
  margin-bottom: 64px;
}

.cat-guide__title {
  font-family: var(--ff-display);
  font-size: 60px;
  font-weight: 400;
  line-height: 1.05;
  color: var(--navy);
  margin: 16px 0 0;
}

.cat-guide__title em {
  font-style: italic;
}

.cat-guide__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}

.cat-guide__img-wrap {
  aspect-ratio: 5 / 6;
  overflow: hidden;
  border-radius: var(--rad-lg);
  margin-bottom: 24px;
}

.cat-guide__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.cat-guide__col:hover .cat-guide__img-wrap img {
  transform: scale(1.04);
}

.cat-guide__label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cat-guide__label--navy { color: var(--navy); }
.cat-guide__label--blue { color: var(--blue); }
.cat-guide__label--red  { color: var(--red);  }

.cat-guide__col-title {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  color: var(--navy);
  margin: 0 0 12px;
}

.cat-guide__col-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 16px;
}

.cat-guide__link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity .25s, letter-spacing .3s var(--ease);
}

.cat-guide__link:hover {
  letter-spacing: .06em;
}

/* ---------- Atelier strip ---------- */
.cat-atelier {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cat-atelier__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cat-atelier__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(33, 47, 55, .88) 0%,
    rgba(33, 47, 55, .60) 55%,
    rgba(33, 47, 55, .15) 100%
  );
}

.cat-atelier__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 28px;
}

.cat-atelier__eyebrow {
  display: block;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 28px;
}

.cat-atelier__quote {
  margin: 0;
}

.cat-atelier__quote p {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.12;
  color: #fff;
  margin: 0 0 28px;
  letter-spacing: -.01em;
}

.cat-atelier__quote em {
  font-style: italic;
}

.cat-atelier__quote footer {
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .65);
  letter-spacing: .06em;
}

/* ---------- Engagements ---------- */
.cat-engagements {
  background: #fff;
  padding: 80px 0;
  border-top: 1px solid var(--line);
}

.cat-engagements__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px;
}

.cat-engage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.cat-engage__icon {
  color: var(--navy);
  opacity: .85;
  flex-shrink: 0;
}

.cat-engage__title {
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
}

.cat-engage__sub {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

/* ---------- FAQ ---------- */
.cat-faq {
  position: relative;
  background: var(--grey-50);
  padding: 120px 0;
  overflow: hidden;
}

.cat-faq__texture {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .05;
  pointer-events: none;
}

.cat-faq__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.cat-faq__head {
  text-align: center;
  margin-bottom: 64px;
}

.cat-faq__title {
  font-family: var(--ff-display);
  font-size: 52px;
  font-weight: 400;
  color: var(--navy);
  margin: 16px 0 0;
}

.cat-faq__title em {
  font-style: italic;
}

.cat-faq__list {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cat-faq__item {
  border-bottom: 1px solid var(--line);
}

.cat-faq__item:first-child {
  border-top: 1px solid var(--line);
}

.cat-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  transition: color .25s;
}

.cat-faq__q::-webkit-details-marker { display: none; }
.cat-faq__q::marker { display: none; }

.cat-faq__q:hover {
  color: var(--ink);
}

.cat-faq__icon {
  font-size: 20px;
  font-family: var(--ff-sans);
  font-style: normal;
  font-weight: 300;
  color: var(--navy);
  flex-shrink: 0;
  transition: transform .35s var(--ease);
  display: inline-block;
}

details[open] .cat-faq__icon {
  transform: rotate(45deg);
}

.cat-faq__a {
  padding: 0 0 24px;
  font-family: var(--ff-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
  max-width: 640px;
}

/* ---------- CTA band ---------- */
.cat-cta {
  background: var(--navy);
  padding: 100px 0;
  text-align: center;
}

.cat-cta__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cat-cta__title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  margin: 0;
}

.cat-cta__title em {
  font-style: italic;
}

.cat-cta__sub {
  font-size: 17px;
  color: rgba(255, 255, 255, .75);
  margin: 0;
}

.cat-cta__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.cat-cta__btn-ghost2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .03em;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, .75);
  border: 1px solid rgba(255, 255, 255, .28);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.cat-cta__btn-ghost2:hover {
  background: rgba(255, 255, 255, .10);
  color: #fff;
  border-color: rgba(255, 255, 255, .55);
}

/* ============================================================
   RESPONSIVE — 1100px
   ============================================================ */
@media (max-width: 1100px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-guide__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 20px;
  }

  .cat-engagements__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* ============================================================
   RESPONSIVE — 640px
   ============================================================ */
@media (max-width: 640px) {
  .cat-hero {
    min-height: 90svh;
  }

  .cat-hero__inner {
    grid-template-areas:
      "breadcrumb"
      "copy"
      "stat";
    grid-template-columns: 1fr;
    padding: 24px 20px 40px;
  }

  .cat-hero__stat {
    align-items: flex-start;
    text-align: left;
    flex-direction: row;
    gap: 8px;
    margin-top: 16px;
  }

  .cat-hero__stat-dot {
    display: inline;
  }

  .cat-filter {
    position: relative;
  }

  .cat-filter__inner {
    flex-wrap: wrap;
    padding: 12px 12px;
    gap: 10px;
    height: auto;
  }

  .cat-filter__pills {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .cat-filter__right {
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }

  .cat-filter__count {
    display: block;
    font-size: 11px;
    color: var(--muted);
  }

  .cat-filter__sort {
    margin-left: auto;
  }

  .cat-filter__sort select {
    font-size: 12px;
    padding: 6px 10px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--paper);
  }

  .cat-filter__sort::after {
    right: 12px;
  }

  .cat-filter__view {
    display: none;
  }

  .cat-filter__dropdown {
    left: 0;
    right: auto;
    min-width: 0;
    width: calc(100vw - 24px);
    max-width: 340px;
  }

  .cat-filter__pill-wrap:last-child .cat-filter__dropdown {
    left: auto;
    right: 0;
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
    padding: 0 12px;
  }

  .cat-grid-section {
    padding: 32px 0 60px;
  }

  .cat-card__body {
    padding: 14px 12px 16px;
    gap: 6px;
  }

  .cat-card__name {
  }

  .cat-card__eyebrow {
    font-size: 9px;
  }

  .cat-card__chip {
    font-size: 9px;
    padding: 2px 6px;
  }

  .cat-card__price {
  }

  .cat-card__rating {
    font-size: 11px;
  }

  .cat-card__foot {
    gap: 4px;
  }

  .cat-card__media {
    aspect-ratio: 3 / 4;
  }

  .cat-guide {
    padding: 72px 0;
  }

  .cat-guide__title {
    font-size: 38px;
  }

  .cat-guide__grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .cat-guide__img-wrap {
    aspect-ratio: 3 / 2;
  }

  .cat-atelier__inner {
    padding: 60px 20px;
  }

  .cat-engagements__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px 20px;
    padding: 0 20px;
  }

  .cat-faq {
    padding: 72px 0;
  }

  .cat-faq__title {
    font-size: 36px;
  }

  .cat-faq__q {
    font-size: 18px;
    padding: 18px 0;
  }

  .cat-cta {
    padding: 72px 0;
  }

  .cat-cta__btns {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .cat-cta__btns .btn,
  .cat-cta__btn-ghost2 {
    justify-content: center;
  }
}


/* MLF polish: stable product-list cards and occasional featured card. */
.cat-grid {
  align-items: stretch;
  grid-auto-flow: dense;
}

.cat-card {
  background: #fff;
  border: 1px solid rgba(33, 47, 55, .08);
  box-shadow: 0 1px 0 rgba(33, 47, 55, .03);
  min-height: 100%;
}

.cat-card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  align-items: stretch;
  min-height: 520px;
  border-color: rgba(229, 26, 38, .16);
  box-shadow: 0 18px 55px rgba(33, 47, 55, .08);
}

.cat-card--featured .cat-card__media {
  aspect-ratio: auto;
  min-height: 100%;
}

.cat-card--featured .cat-card__body {
  padding: clamp(28px, 3vw, 42px);
  justify-content: center;
}

.cat-card--featured .cat-card__name {
  line-height: .98;
}

.cat-card--featured .cat-card__price {
}

/* ---- BEST SELLER CORNER RIBBON (desktop only) ---- */
.cat-card--best-seller {
  position: relative;
  overflow: hidden;
  border-color: rgba(229, 26, 38, .22);
  box-shadow: 0 22px 70px rgba(33, 47, 55, .10), inset 0 0 0 1px rgba(229, 26, 38, .08);
}

.cat-card--best-seller .cat-card__eyebrow {
  color: #737373;
}


.cat-card--best-seller > .cat-card__badge--best {
  position: absolute;
  top: 24px;
  right: -46px;
  left: auto;
  z-index: 10;
  width: 184px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  text-align: center;
  white-space: nowrap;
  border-radius: 0;
  background: #171717;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  line-height: 30px;
  letter-spacing: .16em;
  text-indent: .16em;
  text-transform: uppercase;
  box-shadow: 0 7px 18px rgba(20, 20, 20, .28);
  text-shadow: 0 1px 0 rgba(0, 0, 0, .3);
  transform: rotate(45deg);
  pointer-events: none;
}

.cat-card--best-seller > .cat-card__badge--best::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  border-width: 5px 0 0 5px;
  border-style: solid;
  border-color: #080808 transparent transparent transparent;
}

.cat-card--best-seller > .cat-card__badge--best::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-width: 5px 5px 0 0;
  border-style: solid;
  border-color: #080808 transparent transparent transparent;
}

.cat-card--best-seller .cat-card__media {
  overflow: hidden;
}

.cat-card--best-seller .cat-card__badge:not(.cat-card__badge--best) {
  top: 14px;
}

.cat-card__media {
  background: #fff;
  border: 10px solid #fff;
}

.cat-card__media a {
  display: block;
  height: 100%;
}

.cat-card__media img {
  background: #fff;
  border-radius: 2px;
  object-fit: contain;
  padding: 10px;
}

.cat-card__badge {
  box-shadow: 0 8px 18px rgba(229, 26, 38, .16);
}


.cat-card__body {
  min-height: 0;
}

.cat-card__name {
  min-height: 2.2em;
}

.cat-card__specs {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 2px 0 0;
  padding: 0;
}

.cat-card__spec {
  align-items: flex-start;
  color: #4b5358;
  display: flex;
  font-size: 13.5px;
  font-weight: 500;
  gap: 9px;
  line-height: 1.3;
}

.cat-card__spec-icon {
  align-items: center;
  color: #27584e;
  display: inline-flex;
  flex: 0 0 auto;
  height: 18px;
  justify-content: center;
  margin-top: .05em;
  width: 18px;
}

.cat-card__spec-icon svg {
  display: block;
  fill: none;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 18px;
}

.cat-card__spec-label {
  min-width: 0;
}

.cat-card__spec-label strong {
  color: #29363d;
  font-weight: 650;
}

.cat-card__chips,
.cat-card__chip {
  display: none !important;
}

.cat-card__foot {
  margin-top: auto;
  padding-top: 16px;
}

.cat-card__rating {
  display: none;
}

.cat-card__price {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-start;
  margin-left: auto;
  text-align: right;
}

.cat-card__price > span[style] {
  color: #a7a7a7 !important;
  margin-right: 2px !important;
}

@media (max-width: 1100px) {
  .cat-card--featured {
    grid-column: span 2;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .cat-card--featured .cat-card__media {
    aspect-ratio: 16 / 10;
  }

  .cat-card--featured .cat-card__body {
    padding: 24px;
  }

}

@media (max-width: 640px) {
  .cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px 10px;
    padding: 0 10px;
  }

  .cat-card--featured {
    grid-column: auto;
    display: flex;
  }


  .cat-card--best-seller {
    border-color: rgba(33, 47, 55, .08);
    box-shadow: 0 1px 0 rgba(33, 47, 55, .03);
  }

  .cat-card--best-seller .cat-card__badge--best {
    display: none;
  }

  .cat-card--featured .cat-card__media,
  .cat-card__media {
    aspect-ratio: 1.05 / 1;
    border-width: 8px;
  }

  .cat-card__media img {
    padding: 8px;
  }

  .cat-card__body,
  .cat-card--featured .cat-card__body {
    padding: 18px 18px 20px;
    gap: 9px;
  }

  .cat-card__name,
  .cat-card--featured .cat-card__name {
    min-height: 0;
  }

  .cat-card__spec {
    font-size: 13px;
  }

  .cat-card__foot {
    align-items: flex-start;
  }

  .cat-card__price {
    justify-content: flex-start;
    margin-left: 0;
    text-align: left;
  }
}


/* Category filters polish */
.cat-filter {
  background: rgba(255,255,255,.98);
  box-shadow: 0 1px 0 rgba(33,47,55,.06);
}

.cat-filter__inner {
  min-height: 48px;
  height: auto;
  justify-content: space-between;
  padding: 6px 28px;
}

.cat-filter__pills {
  display: none;
}

.cat-filter__right {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-left: auto;
  width: 100%;
}

.cat-filter__count {
  color: #737780;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
}

.cat-filter__sort {
  align-items: center;
  display: inline-flex;
  min-height: 36px;
  min-width: 0;
}

.cat-filter__sort select {
  background: #fff;
  border: 1px solid rgba(33,47,55,.12);
  border-radius: 999px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  height: 36px;
  letter-spacing: .01em;
  padding: 0 36px 0 16px;
  width: auto;
}

.cat-filter__sort::after {
  right: 14px;
  font-size: 9px;
}

.cat-advanced-search {
  background: #fff;
  padding: 24px 28px 18px;
}

.cat-advanced-search > * {
  max-width: var(--container);
}

.cat-advanced-search #PM_ASBlockOutput_1,
.cat-advanced-search .PM_ASBlockOutput {
  margin: 0 auto !important;
}

.cat-advanced-search #PM_ASBlock_1.card {
  background: #fff;
  border: 1px solid rgba(33,47,55,.08);
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(33,47,55,.04);
  overflow: hidden;
}

.cat-advanced-search #PM_ASBlock_1 .card-block {
  padding: clamp(16px, 1.6vw, 24px) !important;
}

.cat-advanced-search .PM_ASSelectionsResults {
  padding: 10px 18px;
}

.cat-advanced-search .PM_ASSelectionsResults ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cat-advanced-search .PM_ASSelectionsResults ul li {
  margin: 0;
}

.cat-advanced-search .PM_ASResetSearch {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  margin: 0 0 12px;
  border-radius: 999px;
  background: rgba(33,47,55,.06);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
}

.cat-advanced-search .PM_ASResetSearch:hover {
  background: rgba(33,47,55,.10);
}

.cat-advanced-search .PM_ASCriterionsGroupList.row {
  align-items: stretch;
  display: flex !important;
  flex-wrap: wrap;
  margin: 0 !important;
  row-gap: 16px;
}

.cat-advanced-search .PM_ASCriterionsGroup {
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.cat-advanced-search .PM_ASCriterions,
.cat-advanced-search .PM_ASCriterionsOutput {
  height: 100%;
}

.cat-advanced-search .PM_ASCriterions {
  background: #fff;
  border: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(33,47,55,.06);
}

.cat-advanced-search .PM_ASCriterionsGroupTitle {
  color: var(--navy);
  font-family: var(--ff-sans);
  font-size: clamp(15px, 1.3vw, 20px) !important;
  font-weight: 800 !important;
  letter-spacing: -.01em;
  line-height: 1.1;
  margin: 0 !important;
}

.cat-advanced-search .PM_ASCriterionsGroupOuter {
  margin: 0 !important;
  overflow: visible !important;
}

.cat-advanced-search .PM_ASCriterionStepEnable {
  align-items: center;
  display: flex;
  min-height: 38px;
}

.cat-advanced-search .PM_ASCriterionNoChoice {
  align-items: center;
  color: #3d4248;
  display: flex;
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.35;
  margin: 0 !important;
  min-height: 38px;
}

.cat-advanced-search .PM_ASCriterionGroupSelect.form-control,
.cat-advanced-search select.PM_ASCriterionGroupSelect {
  appearance: none;
  background-color: #fff;
  border: 1px solid rgba(33,47,55,.12) !important;
  border-radius: 10px;
  color: #555b62;
  font-size: 13px;
  font-weight: 500;
  height: 38px !important;
  line-height: 38px !important;
  padding: 0 36px 0 14px !important;
  width: 100% !important;
}

.cat-grid-section {
  padding-top: 28px;
}

@media (max-width: 900px) {
  .cat-filter__inner {
    align-items: stretch;
    padding: 8px 16px;
  }

  .cat-filter__right {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
  }

  .cat-filter__count {
    flex: 1 0 100%;
    font-size: 12px;
  }

  .cat-filter__sort {
    flex: 1 1 180px;
    min-width: 0;
  }

  .cat-filter__sort select {
    height: 34px;
    font-size: 12px;
    padding: 0 30px 0 14px;
  }

  .cat-advanced-search {
    padding: 18px 16px 14px;
  }

  .cat-advanced-search .PM_ASCriterionsGroupList.row {
    grid-template-columns: 1fr;
  }

  .cat-advanced-search #PM_ASBlock_1.card {
    border-radius: 14px;
  }
    border-radius: 22px;
  }
}

/* --- MLF product card polish (category + reused cards) --------------------
   Keeps card content stable: titles clamp to two lines, specs never overlap,
   and prices align at the bottom across each row. */
.cat-grid {
  align-items: stretch;
}
.cat-card {
  display: flex !important;
  flex-direction: column !important;
  min-width: 0;
  height: 100%;
  overflow: hidden;
}
.cat-card__media {
  aspect-ratio: 1 / .84 !important;
  min-height: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #fff 0%, #fbfaf7 100%);
}
.cat-card__media a {
  display: block;
  width: 100%;
  height: 100%;
}
.cat-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  padding: clamp(18px, 2.1vw, 30px);
}
.cat-card__body {
  flex: 1 1 auto;
  min-height: 0;
  display: flex !important;
  flex-direction: column !important;
  padding: clamp(22px, 2.2vw, 30px) clamp(22px, 2.4vw, 34px) !important;
}
.cat-card__name {
  min-height: 2.08em !important;
  margin: 0 0 18px !important;
  line-height: 1.04 !important;
  letter-spacing: -0.035em !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cat-card__specs {
  min-height: 108px;
  display: grid;
  align-content: start;
  gap: 9px !important;
  margin: 0 0 18px !important;
  padding: 0 !important;
}
.cat-card__spec {
  min-width: 0;
}
.cat-card__spec-label {
  min-width: 0;
  overflow-wrap: anywhere;
}
.cat-card__foot {
  margin-top: auto !important;
  padding-top: 18px !important;
  align-items: flex-end !important;
}
.cat-card__price {
  margin-left: auto;
  white-space: nowrap;
  line-height: 1.1 !important;
}
@media (max-width: 767px) {
  .cat-card__media,
  .cat-card--featured .cat-card__media {
    aspect-ratio: 1 / 1;
  }

  .cat-card__media img {
    padding: 10px !important;
  }

  .cat-card__body,
  .cat-card--featured .cat-card__body {
    padding: 12px 10px 14px !important;
    gap: 6px !important;
  }

  .cat-card__name,
  .cat-card--featured .cat-card__name {
    line-height: 1.1 !important;
    margin: 0 0 8px !important;
    min-height: 2.2em !important;
  }

  .cat-card__specs { min-height: 0; gap: 5px !important; margin-bottom: 10px !important; }
  .cat-card__spec { font-size: 11px !important; gap: 5px !important; line-height: 1.25 !important; }
  .cat-card__spec-icon { width: 13px !important; height: 13px !important; }
  .cat-card__spec-icon svg { width: 13px !important; height: 13px !important; }
  .cat-card__foot { padding-top: 8px !important; }
  .cat-card__price { white-space: normal; margin-left: 0; }
}

/* MLF edge-to-edge category images - 2026-05-06 */
body.page-category .cat-card__media {
  border: 0 !important;
  background: #fff !important;
  overflow: hidden !important;
}

body.page-category .cat-card__media a {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

body.page-category .cat-card__media img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  border-radius: 0 !important;
  object-fit: cover !important;
}
/* /MLF edge-to-edge category images */

/* Cat hero height cap - 2026-05-09 */
body.page-category .cat-hero,
.cat-hero {
  height: 380px !important;
  min-height: 0 !important;
  max-height: 380px !important;
}

body.page-category .cat-hero__inner,
.cat-hero__inner {
  height: 100% !important;
  min-height: 0 !important;
}

/* MLF category filter bar - screenshot match - 2026-05-09 */
body.page-category .cat-filter {
  position: relative !important;
  top: auto !important;
  z-index: 20 !important;
  width: 100% !important;
  background: #fbfaf7 !important;
  border-top: 1px solid rgba(24, 40, 50, .10) !important;
  border-bottom: 1px solid rgba(24, 40, 50, .10) !important;
  box-shadow: none !important;
}

body.page-category .cat-filter__inner {
  width: 100% !important;
  max-width: none !important;
  min-height: 112px !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 24px !important;
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 28px !important;
}

body.page-category .cat-filter__label {
  display: inline-flex !important;
  align-items: center !important;
  height: 50px !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  letter-spacing: .16em !important;
  text-transform: uppercase !important;
  color: #182832 !important;
  white-space: nowrap !important;
}

body.page-category .cat-filter__pills {
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  flex: none !important;
  width: auto !important;
  min-width: 0 !important;
  overflow: visible !important;
  padding: 0 !important;
}

body.page-category .cat-filter__pill-wrap {
  position: relative !important;
  flex: 0 0 auto !important;
}

body.page-category .cat-filter__pill {
  height: 50px !important;
  min-width: 120px !important;
  padding: 0 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  border: 1px solid rgba(24, 40, 50, .16) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  color: #182832 !important;
  text-transform: none !important;
  white-space: nowrap !important;
}

body.page-category .cat-filter__pill::after {
  display: none !important;
}

body.page-category .cat-filter__pill:hover,
body.page-category .cat-filter__pill.has-filter {
  border-color: #182832 !important;
  background: #182832 !important;
  color: #fbfaf7 !important;
}

body.page-category .cat-filter__pill span[aria-hidden="true"] {
  font-size: 16px !important;
  line-height: 1 !important;
  transform: translateY(-1px) !important;
}

body.page-category .cat-filter__pill-count {
  font-size: 15px !important;
  font-weight: 500 !important;
  color: rgba(24, 40, 50, .55) !important;
}

body.page-category .cat-filter__pill.has-filter .cat-filter__pill-count,
body.page-category .cat-filter__pill:hover .cat-filter__pill-count {
  color: rgba(251, 250, 247, .72) !important;
}

body.page-category .cat-filter__right {
  width: auto !important;
  margin-left: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 0 !important;
}

body.page-category .cat-filter__reset {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 50px !important;
  padding: 0 !important;
  border: 0 !important;
  border-bottom: 1px solid currentColor !important;
  border-radius: 0 !important;
  background: transparent !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  color: rgba(24, 40, 50, .72) !important;
  cursor: pointer !important;
  white-space: nowrap !important;
}

body.page-category .cat-filter__reset:hover {
  color: #182832 !important;
}

body.page-category .cat-filter__count,
body.page-category .cat-filter__sort {
  display: none !important;
}

body.page-category .cat-filter__active {
  grid-column: 2 / 4 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  min-height: 0 !important;
  margin: -22px 0 14px !important;
}

body.page-category .cat-filter__dropdown {
  top: calc(100% + 10px) !important;
  min-width: 260px !important;
  max-width: min(360px, calc(100vw - 48px)) !important;
  padding: 10px !important;
  border: 1px solid rgba(24, 40, 50, .12) !important;
  border-radius: 0 !important;
  background: #fbfaf7 !important;
  box-shadow: 0 18px 36px rgba(24, 40, 50, .12) !important;
}

body.page-category .cat-filter__opt {
  min-height: 42px !important;
  padding: 10px 12px !important;
  border-radius: 0 !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #182832 !important;
}

@media (max-width: 900px) {
  body.page-category .cat-filter__inner {
    min-height: 100px !important;
    padding: 14px 16px !important;
    grid-template-columns: 1fr auto !important;
    gap: 12px !important;
  }

  body.page-category .cat-filter__label {
    height: auto !important;
    font-size: 14px !important;
    letter-spacing: .14em !important;
  }

  body.page-category .cat-filter__pills {
    grid-column: 1 / -1 !important;
    order: 3 !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
    gap: 10px !important;
    padding-bottom: 2px !important;
  }

  body.page-category .cat-filter__pills::-webkit-scrollbar {
    display: none !important;
  }

  body.page-category .cat-filter__pill {
    height: 44px !important;
    min-width: auto !important;
    padding: 0 16px !important;
    font-size: 14px !important;
  }

  body.page-category .cat-filter__right {
    grid-column: 2 !important;
  }

  body.page-category .cat-filter__reset {
    height: auto !important;
    font-size: 13px !important;
  }

  body.page-category .cat-filter__active {
    grid-column: 1 / -1 !important;
    margin: 0 !important;
  }
}

/* Hide legacy advanced search under new category filter bar - 2026-05-09 */
body.page-category .cat-advanced-search { display: none !important; }

/* MLF category filter spacing refinement - 2026-05-10 */
body.page-category .cat-filter {
  background: #fcfbf8 !important;
}

body.page-category .cat-filter__inner {
  min-height: 76px !important;
  padding: 0 24px !important;
  gap: 22px !important;
}

body.page-category .cat-filter__label {
  height: 44px !important;
  font-size: 18px !important;
  letter-spacing: .17em !important;
}

body.page-category .cat-filter__pills {
  gap: 16px !important;
}

body.page-category .cat-filter__pill {
  height: 44px !important;
  min-width: 116px !important;
  padding: 0 22px !important;
  border-color: rgba(24, 40, 50, .14) !important;
  font-size: 17px !important;
  box-shadow: inset 0 0 0 1px rgba(24, 40, 50, .015) !important;
}

body.page-category .cat-filter__pill-count {
  margin-left: -2px !important;
  font-size: 14px !important;
}

body.page-category .cat-filter__reset {
  height: 36px !important;
  font-size: 16px !important;
  padding-top: 1px !important;
  color: rgba(24, 40, 50, .68) !important;
}

body.page-category .cat-filter__active {
  margin: -8px 0 10px !important;
}

body.page-category .cat-filter__dropdown {
  top: calc(100% + 8px) !important;
}

body.page-category .cat-grid-section {
  padding-top: 36px !important;
}

@media (min-width: 1600px) {
  body.page-category .cat-filter__inner {
    padding-left: 26px !important;
    padding-right: 26px !important;
  }
}

@media (max-width: 900px) {
  body.page-category .cat-filter__inner {
    min-height: 92px !important;
    padding: 12px 14px !important;
    gap: 10px !important;
  }

  body.page-category .cat-filter__pills {
    gap: 8px !important;
  }

  body.page-category .cat-filter__pill {
    height: 40px !important;
    padding: 0 14px !important;
    font-size: 13px !important;
  }

  body.page-category .cat-filter__reset {
    height: 28px !important;
    font-size: 12px !important;
  }

  body.page-category .cat-grid-section {
    padding-top: 26px !important;
  }
}

/* MLF category filter vertical balance - 2026-05-10 */
body.page-category .cat-filter__inner {
  min-height: 76px !important;
  align-items: center !important;
}

body.page-category .cat-filter__active:empty {
  display: none !important;
  margin: 0 !important;
  min-height: 0 !important;
}

body.page-category .cat-filter__active:not(:empty) {
  grid-column: 1 / -1 !important;
  margin: 0 0 14px !important;
  padding-left: 112px !important;
}

@media (max-width: 900px) {
  body.page-category .cat-filter__active:not(:empty) {
    padding-left: 0 !important;
    margin-top: 2px !important;
  }
}

/* MLF active category filter spacing - 2026-05-10 */
body.page-category .cat-filter:has(.cat-filter__active:not(:empty)) .cat-filter__inner {
  min-height: 126px !important;
  padding-top: 14px !important;
  padding-bottom: 14px !important;
  row-gap: 12px !important;
  align-content: center !important;
}

body.page-category .cat-filter:has(.cat-filter__active:not(:empty)) .cat-filter__label,
body.page-category .cat-filter:has(.cat-filter__active:not(:empty)) .cat-filter__pills,
body.page-category .cat-filter:has(.cat-filter__active:not(:empty)) .cat-filter__right {
  align-self: center !important;
}

body.page-category .cat-filter__active:not(:empty) {
  grid-column: 1 / -1 !important;
  margin: 0 !important;
  padding-left: 136px !important;
  padding-top: 0 !important;
}

body.page-category .cat-filter__tag {
  min-height: 30px !important;
  padding: 0 14px !important;
  display: inline-flex !important;
  align-items: center !important;
}

@media (max-width: 900px) {
  body.page-category .cat-filter:has(.cat-filter__active:not(:empty)) .cat-filter__inner {
    min-height: 140px !important;
    padding-top: 12px !important;
    padding-bottom: 14px !important;
    row-gap: 10px !important;
  }

  body.page-category .cat-filter__active:not(:empty) {
    padding-left: 0 !important;
  }
}

/* MLF active category filter grows downward - 2026-05-10 */
body.page-category .cat-filter:has(.cat-filter__active:not(:empty)) .cat-filter__inner {
  padding-top: 10px !important;
  padding-bottom: 18px !important;
}

/* MLF category filter compact pass - 2026-05-10 */
body.page-category .cat-filter__inner {
  min-height: 68px !important;
  padding-left: 22px !important;
  padding-right: 22px !important;
  gap: 20px !important;
}

body.page-category .cat-filter__label {
  height: 40px !important;
  font-size: 16px !important;
}

body.page-category .cat-filter__pills {
  gap: 14px !important;
}

body.page-category .cat-filter__pill {
  height: 40px !important;
  min-width: 104px !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  font-size: 15px !important;
}

body.page-category .cat-filter__reset {
  height: 32px !important;
  font-size: 14px !important;
}

body.page-category .cat-grid-section {
  padding-top: 32px !important;
}

body.page-category .cat-filter:has(.cat-filter__active:not(:empty)) .cat-filter__inner {
  min-height: 114px !important;
  padding-top: 9px !important;
  padding-bottom: 16px !important;
  row-gap: 11px !important;
}

body.page-category .cat-filter__active:not(:empty) {
  padding-left: 122px !important;
}

body.page-category .cat-filter__tag {
  min-height: 27px !important;
  padding-left: 13px !important;
  padding-right: 13px !important;
}

@media (max-width: 900px) {
  body.page-category .cat-filter__inner {
    min-height: 83px !important;
    padding: 11px 13px !important;
    gap: 9px !important;
  }

  body.page-category .cat-filter__pill {
    height: 36px !important;
    padding-left: 13px !important;
    padding-right: 13px !important;
    font-size: 12px !important;
  }

  body.page-category .cat-filter:has(.cat-filter__active:not(:empty)) .cat-filter__inner {
    min-height: 126px !important;
    padding-top: 11px !important;
    padding-bottom: 13px !important;
    row-gap: 9px !important;
  }

  body.page-category .cat-filter__active:not(:empty) {
    padding-left: 0 !important;
  }
}

/* MLF category reference layout - 2026-05-10 */
body.page-category .cat-hero {
  min-height: 252px !important;
  height: auto !important;
  max-height: none !important;
  padding-top: 0 !important;
  align-items: stretch !important;
  background: #fdfcf9 !important;
  border-top: 1px solid rgba(24, 40, 50, .10) !important;
  overflow: visible !important;
}

body.page-category .cat-hero__bg,
body.page-category .cat-hero__overlay,
body.page-category .cat-hero__eyebrow,
body.page-category .cat-hero__subtitle,
body.page-category .cat-hero__stat {
  display: none !important;
}

body.page-category .cat-hero__inner {
  max-width: 1540px !important;
  min-height: 252px !important;
  padding: 28px 40px 54px !important;
  display: grid !important;
  grid-template-areas:
    "breadcrumb"
    "title" !important;
  grid-template-rows: auto 1fr !important;
  align-items: center !important;
}

body.page-category .cat-hero__breadcrumb {
  grid-area: breadcrumb !important;
  align-self: start !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: #161616 !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

body.page-category .cat-hero__breadcrumb a {
  color: inherit !important;
  text-decoration: none !important;
}

body.page-category .cat-hero__copy {
  grid-area: title !important;
  justify-self: center !important;
  align-self: center !important;
  text-align: center !important;
}

body.page-category .cat-hero__title {
  margin: 0 !important;
  color: #050505 !important;
  font-family: 'Fraunces', serif !important;
  font-style: normal !important;
  font-weight: 500 !important;
  font-size: clamp(42px, 4.1vw, 72px) !important;
  line-height: .92 !important;
  letter-spacing: -.02em !important;
}

body.page-category .cat-filter {
  position: static !important;
  top: auto !important;
  z-index: 40 !important;
  background: #fdfcf9 !important;
  border-top: 0 !important;
  border-bottom: 1px solid rgba(24, 40, 50, .10) !important;
}

body.page-category .cat-filter__inner {
  max-width: 1540px !important;
  min-height: 86px !important;
  height: auto !important;
  padding: 0 40px 34px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 18px 24px !important;
  align-items: center !important;
}

body.page-category .cat-filter__label {
  display: none !important;
}

body.page-category .cat-filter__pills {
  min-width: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 25px !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  padding: 0 !important;
}

body.page-category .cat-filter__pill-wrap {
  position: relative !important;
}

body.page-category .cat-filter__pill,
body.page-category .cat-filter__sort--inline select {
  height: auto !important;
  min-width: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  color: #151515 !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

body.page-category .cat-filter__pill {
  gap: 8px !important;
}

body.page-category .cat-filter__pill small {
  color: rgba(21, 21, 21, .48) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
}

body.page-category .cat-filter__pill::after {
  display: none !important;
}

body.page-category .cat-filter__pill:hover,
body.page-category .cat-filter__sort--inline:hover select {
  color: #050505 !important;
}

body.page-category .cat-filter__pill.has-filter {
  background: transparent !important;
  color: #050505 !important;
  border-color: transparent !important;
  font-weight: 600 !important;
}

body.page-category .cat-filter__sort {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  flex-shrink: 0 !important;
}

body.page-category .cat-filter__sort .sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body.page-category .cat-filter__sort--inline select {
  appearance: none !important;
  width: 62px !important;
  cursor: pointer !important;
}

body.page-category .cat-filter__sort--inline::after {
  content: '⌄' !important;
  position: static !important;
  transform: none !important;
  margin-left: 6px !important;
  color: #151515 !important;
  font-size: 15px !important;
  pointer-events: none !important;
}

body.page-category .cat-filter__all {
  flex-shrink: 0 !important;
  height: 46px !important;
  padding: 0 18px !important;
  border: 1px solid rgba(21, 21, 21, .13) !important;
  border-radius: 6px !important;
  background: #fdfcf9 !important;
  color: #151515 !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  box-shadow: 0 1px 2px rgba(24, 40, 50, .04) !important;
}

body.page-category .cat-filter__all:hover {
  border-color: rgba(21, 21, 21, .26) !important;
}

body.page-category .cat-filter__right {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 18px !important;
}

body.page-category .cat-filter__count {
  color: rgba(21, 21, 21, .52) !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  white-space: nowrap !important;
}

body.page-category .cat-filter__reset {
  display: none !important;
  height: auto !important;
  padding: 0 0 2px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(21, 21, 21, .52) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(21, 21, 21, .62) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
}

body.page-category .cat-filter:has(.cat-filter__active:not(:empty)) .cat-filter__reset {
  display: inline-flex !important;
}

body.page-category .cat-filter:has(.cat-filter__active:not(:empty)) .cat-filter__inner {
  min-height: 122px !important;
  padding-top: 0 !important;
  padding-bottom: 26px !important;
  row-gap: 14px !important;
  align-content: start !important;
}

body.page-category .cat-filter__active:not(:empty) {
  grid-column: 1 / -1 !important;
  display: flex !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
  padding-left: 62px !important;
}

body.page-category .cat-filter__tag {
  min-height: 28px !important;
  padding: 0 12px !important;
  border-radius: 999px !important;
  background: #172734 !important;
  color: #fdfcf9 !important;
  font-size: 12px !important;
  font-weight: 500 !important;
}

body.page-category .cat-filter__dropdown {
  top: calc(100% + 14px) !important;
  min-width: 240px !important;
  border-radius: 6px !important;
  background: #fdfcf9 !important;
  border-color: rgba(21, 21, 21, .12) !important;
  box-shadow: 0 18px 40px rgba(24, 40, 50, .12) !important;
}

body.page-category .cat-grid-section {
  padding-top: 50px !important;
}

@media (max-width: 900px) {
  body.page-category .cat-hero {
    min-height: 190px !important;
  }

  body.page-category .cat-hero__inner {
    min-height: 190px !important;
    padding: 22px 20px 34px !important;
  }

  body.page-category .cat-hero__breadcrumb {
    font-size: 12px !important;
  }

  body.page-category .cat-hero__title {
    font-size: clamp(38px, 13vw, 56px) !important;
  }

  body.page-category .cat-filter__inner {
    min-height: 112px !important;
    padding: 0 20px 24px !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  body.page-category .cat-filter__pills {
    gap: 18px !important;
  }

  body.page-category .cat-filter__pill,
  body.page-category .cat-filter__sort--inline select {
    font-size: 14px !important;
  }

  body.page-category .cat-filter__all {
    height: 40px !important;
    padding: 0 14px !important;
    font-size: 14px !important;
  }

  body.page-category .cat-filter__right {
    justify-content: space-between !important;
  }

  body.page-category .cat-filter__active:not(:empty) {
    padding-left: 0 !important;
  }
}

/* MLF category reference with description - 2026-05-10 */
body.page-category .cat-hero {
  min-height: 410px !important;
}

body.page-category .cat-hero__inner {
  min-height: 410px !important;
  padding-top: 28px !important;
  padding-bottom: 38px !important;
  grid-template-rows: auto 1fr !important;
}

body.page-category .cat-hero__copy {
  width: min(100%, 1060px) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 42px !important;
}

body.page-category .cat-hero__title {
  margin-top: 22px !important;
}

body.page-category .cat-hero__description {
  max-width: 1010px !important;
  margin: 0 auto !important;
  color: #151515 !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: clamp(17px, 1.14vw, 21px) !important;
  font-weight: 400 !important;
  line-height: 1.48 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
}

body.page-category .cat-hero__description p {
  margin: 0 !important;
}

body.page-category .cat-hero__description * {
  color: inherit !important;
  font: inherit !important;
  line-height: inherit !important;
  text-align: inherit !important;
}

body.page-category .cat-filter__inner {
  min-height: 72px !important;
  padding-top: 0 !important;
  padding-bottom: 24px !important;
}

body.page-category .cat-grid-section {
  padding-top: 32px !important;
}

body.page-category .cat-grid {
  gap: 28px 28px !important;
}

@media (max-width: 900px) {
  body.page-category .cat-hero {
    min-height: 340px !important;
  }

  body.page-category .cat-hero__inner {
    min-height: 340px !important;
    padding-top: 20px !important;
    padding-bottom: 28px !important;
  }

  body.page-category .cat-hero__copy {
    gap: 24px !important;
  }

  body.page-category .cat-hero__title {
    margin-top: 14px !important;
  }

  body.page-category .cat-hero__description {
    font-size: 15px !important;
    line-height: 1.48 !important;
    max-width: 92vw !important;
  }

  body.page-category .cat-filter__inner {
    min-height: 104px !important;
    padding-bottom: 22px !important;
  }
}

/* MLF category compact white pass - 2026-05-10 */
body.page-category,
body.page-category #wrapper,
body.page-category #content,
body.page-category #main,
body.page-category .cat-hero,
body.page-category .cat-filter,
body.page-category .cat-grid-section {
  background: #fff !important;
}

body.page-category .cat-hero {
  min-height: 340px !important;
  border-top-color: rgba(24, 40, 50, .08) !important;
}

body.page-category .cat-hero__inner {
  min-height: 340px !important;
  padding-top: 24px !important;
  padding-bottom: 26px !important;
}

body.page-category .cat-hero__copy {
  gap: 28px !important;
}

body.page-category .cat-hero__title {
  margin-top: 10px !important;
  font-size: clamp(38px, 3.55vw, 62px) !important;
}

body.page-category .cat-hero__description {
  max-width: 920px !important;
  font-size: clamp(15px, .98vw, 18px) !important;
  line-height: 1.45 !important;
}

body.page-category .cat-filter__inner {
  min-height: 62px !important;
  padding-bottom: 18px !important;
}

body.page-category .cat-filter__pills {
  gap: 22px !important;
  overflow: visible !important;
}

body.page-category .cat-filter__pill,
body.page-category .cat-filter__sort--inline select {
  font-size: 15px !important;
}

body.page-category .cat-filter__all {
  height: 42px !important;
  background: #fff !important;
}

body.page-category .cat-grid-section {
  padding-top: 24px !important;
}

body.page-category .cat-filter:has(.cat-filter__active:not(:empty)) .cat-filter__inner {
  min-height: 106px !important;
  padding-bottom: 20px !important;
  row-gap: 12px !important;
}

/* MLF Chrome-visible dropdown + tighter category header - 2026-05-10 */
body.page-category .cat-hero {
  min-height: 285px !important;
}

body.page-category .cat-hero__inner {
  min-height: 285px !important;
  padding-top: 20px !important;
  padding-bottom: 18px !important;
}

body.page-category .cat-hero__copy {
  gap: 18px !important;
}

body.page-category .cat-hero__title {
  margin-top: 4px !important;
  font-size: clamp(34px, 3.15vw, 54px) !important;
}

body.page-category .cat-hero__description {
  max-width: 860px !important;
  font-size: clamp(14px, .9vw, 16px) !important;
  line-height: 1.42 !important;
}

body.page-category .cat-filter {
  overflow: visible !important;
}

body.page-category .cat-filter__inner {
  min-height: 56px !important;
  padding-bottom: 14px !important;
  overflow: visible !important;
}

body.page-category .cat-filter__pills,
body.page-category .cat-filter__pill-wrap {
  overflow: visible !important;
  z-index: 60 !important;
}

body.page-category .cat-filter__dropdown {
  z-index: 999 !important;
  top: calc(100% + 10px) !important;
}

body.page-category .cat-grid-section {
  padding-top: 20px !important;
}

/* Fix: filter dropdowns not opening due to !important override - 2026-06-17 */
body.page-category .cat-filter__dropdown.is-open { display: block !important; }

body.page-category .cat-filter:has(.cat-filter__active:not(:empty)) .cat-filter__inner {
  min-height: 92px !important;
  padding-bottom: 16px !important;
}

/* MLF filter alignment and focus cleanup - 2026-05-10 */
body.page-category .cat-filter__pills {
  align-items: center !important;
  gap: 28px !important;
}

body.page-category .cat-filter__pill-wrap,
body.page-category .cat-filter__sort {
  height: 34px !important;
  display: inline-flex !important;
  align-items: center !important;
}

body.page-category .cat-filter__pill,
body.page-category .cat-filter__sort--inline select {
  height: 34px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 34px !important;
  padding: 0 !important;
  background: transparent !important;
  color: #151515 !important;
  outline: 0 !important;
  box-shadow: none !important;
  user-select: none !important;
  -webkit-user-select: none !important;
}

body.page-category .cat-filter__sort--inline {
  gap: 8px !important;
}

body.page-category .cat-filter__sort--inline select {
  width: auto !important;
  min-width: 43px !important;
}

body.page-category .cat-filter__pill {
  gap: 7px !important;
}

body.page-category .cat-filter__pill:hover,
body.page-category .cat-filter__pill:focus,
body.page-category .cat-filter__pill:focus-visible,
body.page-category .cat-filter__pill:active,
body.page-category .cat-filter__pill.has-filter,
body.page-category .cat-filter__pill-wrap:has(.cat-filter__dropdown.is-open) .cat-filter__pill,
body.page-category .cat-filter__sort--inline select:hover,
body.page-category .cat-filter__sort--inline select:focus,
body.page-category .cat-filter__sort--inline select:active {
  background: transparent !important;
  color: #151515 !important;
  border-color: transparent !important;
  outline: 0 !important;
  box-shadow: none !important;
}

body.page-category .cat-filter__pill:focus-visible {
  text-decoration: underline !important;
  text-underline-offset: 5px !important;
}

body.page-category .cat-filter__pill::selection,
body.page-category .cat-filter__pill *::selection,
body.page-category .cat-filter__sort--inline select::selection {
  background: transparent !important;
  color: #151515 !important;
}

body.page-category .cat-filter__pill-count {
  line-height: 1 !important;
}

/* MLF filter count contrast cleanup - 2026-05-10 */
body.page-category .cat-filter__pill .cat-filter__pill-count,
body.page-category .cat-filter__pill:hover .cat-filter__pill-count,
body.page-category .cat-filter__pill:focus .cat-filter__pill-count,
body.page-category .cat-filter__pill:active .cat-filter__pill-count,
body.page-category .cat-filter__pill.has-filter .cat-filter__pill-count,
body.page-category .cat-filter__pill-wrap:has(.cat-filter__dropdown.is-open) .cat-filter__pill-count {
  color: rgba(21, 21, 21, .56) !important;
  opacity: 1 !important;
}

/* MLF align filter rail with breadcrumb - 2026-05-10 */
body.page-category .cat-filter__inner {
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* MLF category card price position - 2026-05-10 */
body.page-category .cat-card__body {
  display: flex !important;
  flex-direction: column !important;
}

body.page-category .cat-card__eyebrow {
  order: 1 !important;
}

body.page-category .cat-card__name {
  order: 2 !important;
  min-height: 2.18em !important;
  margin-bottom: 20px !important;
}

body.page-category .cat-card__foot {
  order: 3 !important;
  margin-top: 0 !important;
  margin-bottom: 18px !important;
  padding-top: 18px !important;
  border-top: 1px dashed rgba(33, 47, 55, .16) !important;
  display: flex !important;
  align-items: baseline !important;
  justify-content: flex-start !important;
}

body.page-category .cat-card__price {
  margin-left: 0 !important;
  text-align: left !important;
  justify-content: flex-start !important;
  color: #17242c !important;
  letter-spacing: .01em !important;
  line-height: 1 !important;
}

body.page-category .cat-card__specs {
  order: 4 !important;
  margin-top: 0 !important;
}

/* MLF category pagination cleanup - 2026-05-10 */
body.page-category .pagination,
body.page-category .pagination ul,
body.page-category .pagination .page-list {
  border: 0 !important;
  box-shadow: none !important;
}

body.page-category .pagination li,
body.page-category .pagination .page-item {
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

body.page-category .pagination a,
body.page-category .pagination span,
body.page-category .pagination .page-link,
body.page-category .pagination .current a,
body.page-category .pagination .current span,
body.page-category .pagination .active a,
body.page-category .pagination .active span {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

/* MLF category card compact bottom - 2026-05-10 */
body.page-category .cat-card__body {
  padding-bottom: 22px !important;
}

body.page-category .cat-card__foot {
  margin-bottom: 14px !important;
}

body.page-category .cat-card__specs {
  min-height: 0 !important;
  margin-bottom: 0 !important;
}

/* MLF category grid controlled by IqitThemeEditor - 2026-05-21 */
body.page-category .cat-grid {
  grid-template-columns: repeat(var(--mlf-cat-grid-d, 4), minmax(0, 1fr)) !important;
}

@media (min-width: 1400px) {
  body.page-category .cat-grid {
    grid-template-columns: repeat(var(--mlf-cat-grid-ld, var(--mlf-cat-grid-d, 4)), minmax(0, 1fr)) !important;
  }
}

@media (max-width: 1023.98px) {
  body.page-category .cat-grid {
    grid-template-columns: repeat(var(--mlf-cat-grid-t, 3), minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  body.page-category .cat-grid {
    grid-template-columns: repeat(var(--mlf-cat-grid-p, 2), minmax(0, 1fr)) !important;
  }
}

@media (min-width: 1024px) {
  body.page-category .cat-card__body {
    padding: 20px 20px 22px !important;
  }

  body.page-category .cat-card__name {
    line-height: 1.08 !important;
    letter-spacing: 0 !important;
    min-height: 2.16em !important;
    margin-bottom: 16px !important;
  }
}

/* MLF compact category header - 2026-05-21 */
body.page-category .cat-hero {
  min-height: 150px !important;
  padding: 18px 24px 16px !important;
}

body.page-category .cat-hero__inner {
  min-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  grid-template-rows: auto auto !important;
}

body.page-category .cat-hero__breadcrumb {
  margin-bottom: 14px !important;
}

body.page-category .cat-hero__copy {
  gap: 8px !important;
}

body.page-category .cat-hero__title {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  font-size: clamp(32px, 2.55vw, 46px) !important;
  line-height: .94 !important;
}

body.page-category .cat-hero__description {
  max-width: 980px !important;
  font-size: clamp(13px, .82vw, 15px) !important;
  line-height: 1.28 !important;
  max-height: 2.56em !important;
  overflow: hidden !important;
}

body.page-category .cat-hero__description.is-expanded {
  max-height: none !important;
}

body.page-category .cat-hero__readmore {
  display: none;
  margin: 2px auto 0;
  border: 0;
  background: transparent;
  color: #212f37;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

body.page-category .cat-hero__readmore.is-visible {
  display: inline-flex;
}

body.page-category .cat-filter__inner {
  width: min(1320px, calc(100% - 56px)) !important;
  max-width: min(1320px, calc(100% - 56px)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  min-height: 42px !important;
  padding: 0 40px 8px !important;
  row-gap: 8px !important;
}

body.page-category .cat-filter__pills {
  gap: 14px !important;
}

body.page-category .cat-filter__pill,
body.page-category .cat-filter__sort--inline select {
  font-size: 13px !important;
}

body.page-category .cat-grid-section {
  padding-top: 14px !important;
}

/* MLF listing product title emphasis - 2026-05-21 */
body.page-category .cat-card__name,
body.page-category .cat-card__name a,
body.page-category .product-miniature-grid .product-title {
  font-weight: 700 !important;
}

body.page-category .cat-card__name {
  order: 2 !important;
}

@media (max-width: 900px) {
  body.page-category .cat-hero {
    min-height: 170px !important;
    padding-top: 18px !important;
    padding-bottom: 16px !important;
  }

  body.page-category .cat-hero__breadcrumb {
    margin-bottom: 14px !important;
  }

  body.page-category .cat-hero__copy {
    gap: 10px !important;
  }

  body.page-category .cat-hero__title {
    font-size: clamp(32px, 9vw, 44px) !important;
  }

  body.page-category .cat-hero__description {
    font-size: 13px !important;
    line-height: 1.35 !important;
  }

  body.page-category .cat-filter__inner {
    min-height: 64px !important;
    padding-bottom: 12px !important;
  }
}

@media (max-width: 900px) {
  body.page-category .cat-hero {
    min-height: 270px !important;
  }

  body.page-category .cat-hero__inner {
    min-height: 270px !important;
    padding-top: 18px !important;
    padding-bottom: 22px !important;
  }

  body.page-category .cat-hero__copy {
    gap: 18px !important;
  }

  body.page-category .cat-hero__title {
    margin-top: 8px !important;
    font-size: clamp(34px, 11vw, 50px) !important;
  }

  body.page-category .cat-hero__description {
    font-size: 14px !important;
    line-height: 1.42 !important;
  }

  body.page-category .cat-filter__inner {
    min-height: 86px !important;
    padding-bottom: 16px !important;
  }

  body.page-category .cat-filter__pills {
    overflow-x: auto !important;
    overflow-y: visible !important;
  }
}

/* ============================================
   Category cards: prix promo comme PDP — 2 lignes
     ligne 1 : (i)  prix public           (colles, vers la gauche)
     ligne 2 : Notre tarif : prix remise  (colles, vers la gauche)
   2026-05-28
   ============================================ */
body.page-category .cat-card__price--specific {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 3px !important;
  line-height: 1.05 !important;
  white-space: nowrap !important;
}
/* Match homepage showcase price block (.mlf-omnibus / .mtss-card__price) */
body.page-category .cat-card__price-line {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
}
body.page-category .cat-card__price-info {
  flex: 0 0 auto !important;
  width: 18px !important;
  height: 18px !important;
  border: 1.6px solid #9aa3ad !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #6b7480 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  font-family: Inter, system-ui, sans-serif !important;
  line-height: 1 !important;
  cursor: pointer !important;
  background: none !important;
  padding: 0 !important;
}
body.page-category .cat-card__regular-price {
  color: #1a2332 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}
body.page-category .cat-card__specific-label {
  color: #212f37 !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
}
body.page-category .cat-card__specific-price {
  color: #cc1f43 !important;
  font-size: 21px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}
@media (max-width: 767px) {
  body.page-category .cat-card__regular-price { font-size: 13px !important; }
  body.page-category .cat-card__specific-label { font-size: 0.78rem !important; }
  body.page-category .cat-card__specific-price { font-size: 19px !important; }
}

/* MLF 2026-06-24: page recherche jolisearch — titres produits identiques aux pages categorie (etaient en .h2 = 28px) */
body#module-ambjolisearch-jolisearch .cat-card__name,
body#module-ambjolisearch-jolisearch .cat-card__name a,
body#module-ambjolisearch-jolisearch .product-miniature-grid .product-title,
body#module-ambjolisearch-jolisearch .product-miniature-grid .product-title a {
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  letter-spacing: normal !important;
  color: #1a1a1a !important;
  margin: 0 0 16px !important;
  min-height: 2.16em !important;
}
