
/* NOA-O CATALOG 0.3.0 */

body#category #wrapper,
body#product #wrapper {
  background: #fff;
}

body#category .breadcrumb,
body#product .breadcrumb {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 22px;
  padding-bottom: 18px;
}

.noao-category-hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 370px;
  margin: 0 0 44px;
  background: #0b1117;
  color: #fff;
}

.noao-category-hero__content {
  padding: 66px 64px;
}

.noao-category-hero h1 {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(44px, 5vw, 72px);
  line-height: .98;
  letter-spacing: -.055em;
}

.noao-category-hero__description {
  max-width: 650px;
  color: rgba(255,255,255,.68);
  font-size: 16px;
  line-height: 1.7;
}

.noao-category-hero__description * {
  color: inherit;
}

.noao-category-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(88,144,177,.26);
  color: rgba(255,255,255,.55);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.noao-category-hero__visual {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 36px;
  background:
    linear-gradient(rgba(88,144,177,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88,144,177,.09) 1px, transparent 1px),
    #101922;
  background-size: 42px 42px;
}

.noao-category-hero__visual > div {
  position: absolute;
  width: 300px;
  height: 300px;
  right: -40px;
  top: 24px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, #e53c29, #d63636 28%, #bb2b4b 54%, #a8235a 68%, #5890b1 100%);
  opacity: .9;
}

.noao-category-hero__visual > span {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 900;
}

.noao-subcategories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  margin: 0 0 55px;
  border-top: 1px solid var(--n-border);
  border-left: 1px solid var(--n-border);
}

.noao-subcategory {
  min-height: 126px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--n-text);
  text-decoration: none;
  border-right: 1px solid var(--n-border);
  border-bottom: 1px solid var(--n-border);
  background: #fff;
}

.noao-subcategory:hover {
  color: var(--n-brand-dark);
  background: #f4f7f9;
}

.noao-subcategory span {
  font-size: 17px;
  font-weight: 900;
}

.noao-subcategory strong {
  font-size: 12px;
}

#products .products,
.featured-products .products,
.product-accessories .products {
  gap: 18px 0;
}

.noao-product-card {
  height: 100%;
  border: 1px solid var(--n-border);
  background: #fff;
  transition: transform .18s ease, box-shadow .18s ease;
}

.noao-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(23,34,44,.09);
}

.noao-product-card__image {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f4f6f7;
}

.noao-product-card__image picture,
.noao-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.noao-product-card__badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 9px;
  background: #0b1117;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
}

.noao-product-card__body {
  padding: 20px;
}

.noao-product-card__meta {
  min-height: 18px;
  color: var(--n-muted);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.noao-product-card__title {
  display: block;
  margin-top: 5px;
  color: var(--n-text);
  font-size: 19px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -.025em;
  text-decoration: none;
}

.noao-product-card__title:hover {
  color: var(--n-brand-dark);
}

.noao-product-card__quote {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid var(--n-border);
}

.noao-product-card__quote strong,
.noao-product-card__quote span {
  display: block;
}

.noao-product-card__quote strong {
  color: var(--n-brand-dark);
  font-size: 12px;
}

.noao-product-card__quote span {
  margin-top: 3px;
  color: var(--n-muted);
  font-size: 11px;
}

.noao-product-card__cta {
  display: flex;
  justify-content: space-between;
  margin-top: 17px;
  color: var(--n-text);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

/* Product detail */
.noao-product-page {
  padding-bottom: 90px;
}

.noao-product-page__top {
  display: grid;
  grid-template-columns: minmax(0,1.03fr) minmax(360px,.97fr);
  gap: 64px;
  padding: 40px 0 85px;
}

.noao-product-page__media {
  min-width: 0;
  background: #f3f5f6;
}

.noao-product-page__summary {
  align-self: center;
}

.noao-product-page__kicker {
  color: var(--n-brand);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.noao-product-page__title {
  margin: 12px 0 8px;
  color: var(--n-text);
  font-size: clamp(42px, 5vw, 72px);
  line-height: .98;
  letter-spacing: -.055em;
}

.noao-product-page__reference {
  color: var(--n-muted);
  font-size: 12px;
}

.noao-product-page__status {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 30px 0 25px;
  font-size: 12px;
  font-weight: 900;
}

.noao-product-page__status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--n-brand);
}

.noao-product-page__intro {
  color: var(--n-muted);
  font-size: 16px;
  line-height: 1.7;
}

.noao-product-page__selection {
  margin-top: 30px;
}

.noao-product-page__selection .js-noao-add-selection,
.noao-product-final__action .js-noao-add-selection {
  width: 100%;
  min-height: 56px !important;
}

.noao-product-page__trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 27px;
  border-top: 1px solid var(--n-border);
}

.noao-product-page__trust > div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--n-border);
  font-size: 12px;
}

.noao-product-page__trust span {
  color: var(--n-muted);
}

.noao-product-page__extra {
  margin-top: 18px;
}

.noao-product-advice {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 44px;
  align-items: end;
  margin-bottom: 100px;
  padding: 38px;
  background: var(--n-paper);
  border-left: 4px solid var(--n-brand);
}

.noao-product-advice h2,
.noao-product-panel h2,
.noao-product-documents h2,
.noao-product-related h2,
.noao-product-final h2 {
  margin: 0;
  font-size: clamp(30px,3.4vw,48px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.noao-product-advice p {
  margin: 0;
  color: var(--n-muted);
  line-height: 1.7;
}

.noao-product-page__details {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  margin-bottom: 100px;
}

.noao-product-panel {
  padding-top: 30px;
  border-top: 1px solid var(--n-border);
}

.noao-product-copy {
  margin-top: 30px;
  color: var(--n-muted);
  line-height: 1.75;
}

.noao-product-tech {
  margin-top: 28px;
}

.noao-product-panel .product-features,
.noao-product-panel .product-features dl {
  margin: 0;
}

.noao-product-panel .product-features .data-sheet {
  width: 100%;
}

.noao-product-panel .product-features .name,
.noao-product-panel .product-features .value {
  padding: 12px 0;
  border-bottom: 1px solid var(--n-border);
  background: transparent !important;
}

.noao-product-documents,
.noao-product-related {
  margin: 100px 0;
}

.noao-product-documents__grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  border-top: 1px solid var(--n-border);
  border-left: 1px solid var(--n-border);
}

.noao-document-card {
  min-height: 210px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  color: var(--n-text);
  text-decoration: none;
  border-right: 1px solid var(--n-border);
  border-bottom: 1px solid var(--n-border);
}

.noao-document-card:hover {
  background: #f4f7f9;
  color: var(--n-brand-dark);
}

.noao-document-card__type {
  color: var(--n-brand);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}

.noao-document-card strong {
  margin-top: 55px;
  font-size: 18px;
}

.noao-document-card small {
  color: var(--n-muted);
  margin-top: 6px;
}

.noao-document-card > span:last-child {
  margin-top: auto;
  font-size: 11px;
  font-weight: 800;
}

.noao-product-panel--extra {
  margin: 90px 0;
}

.noao-product-final {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 70px;
  align-items: center;
  margin-top: 100px;
  padding: 55px;
  background: #0b1117;
  color: #fff;
}

.noao-product-final h2 {
  color: #fff;
}

.noao-product-final p {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.62);
  line-height: 1.7;
}

.noao-product-final .noao-eyebrow {
  color: #7fb1cf;
}

@media (max-width: 991px) {
  .noao-category-hero,
  .noao-product-page__top,
  .noao-product-page__details,
  .noao-product-advice,
  .noao-product-final {
    grid-template-columns: 1fr;
  }

  .noao-category-hero__visual {
    min-height: 280px;
  }

  .noao-subcategories {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .noao-product-page__top {
    gap: 38px;
  }

  .noao-product-advice {
    align-items: start;
  }

  .noao-product-documents__grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 575px) {
  .noao-category-hero__content {
    padding: 45px 24px;
  }

  .noao-category-hero h1 {
    font-size: 44px;
  }

  .noao-subcategories,
  .noao-product-documents__grid {
    grid-template-columns: 1fr;
  }

  .noao-product-page__top {
    padding-top: 20px;
  }

  .noao-product-page__title {
    font-size: 44px;
  }

  .noao-product-page__trust > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .noao-product-advice,
  .noao-product-final {
    padding: 28px;
  }
}


/* ==========================================================================
   NOA-O Catalogue V2.1.2 — 0.10.3 corrective
   ========================================================================== */

/* Le compteur principal est déjà rendu par le bloc NOA-O ("36 produits").
   Le compteur natif PrestaShop est donc masqué globalement sur les catégories,
   y compris après un rafraîchissement AJAX du listing. */
body#category #js-product-list-top .total-products,
body#category #js-product-list-top .showing,
body#category .products-selection .total-products {
  display: none !important;
}

/* Sans la colonne de compteur, la zone de tri reste calée à droite. */
body#category #js-product-list-top > .col-lg-7,
body#category #js-product-list-top > [class*="col-lg-7"] {
  margin-left: auto !important;
}

/* Le header sticky ne doit jamais recouvrir le début du listing lors d'un
   retour sur l'ancre #products ou après une mise à jour du catalogue. */
body#category #products {
  scroll-margin-top: 116px;
}

@media (max-width: 991px) {
  body#category #products {
    scroll-margin-top: 96px;
  }
}

/* ==========================================================================
   NOA-O Catalogue V2.1.3 — 0.10.4
   ========================================================================== */

body#category #js-product-list-top.noao-products-selection {
  justify-content: flex-end;
}

body#category #js-product-list-top.noao-products-selection .noao-products-selection__sort {
  margin-left: auto;
}

body#category #js-product-list-top .total-products,
body#category #js-product-list-top .showing,
body#category .products-selection .total-products,
body#category .products-selection .showing,
body#category .products-selection > [class*="total-products"],
body#category .products-selection > [class*="showing"] {
  display: none !important;
}

/* ==========================================================================
   NOA-O Catalogue V2.1.4 — 0.10.5
   Tri compact premium
   ========================================================================== */

body#category #js-product-list-top.noao-products-selection {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  width: 100% !important;
  min-height: 0 !important;
  margin: 0 0 28px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

body#category #js-product-list-top.noao-products-selection .noao-products-selection__sort {
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: 100% !important;
  margin: 0 0 0 auto !important;
  padding: 0 !important;
}

body#category #js-product-list-top.noao-products-selection .noao-products-toolbar,
body#category #js-product-list-top.noao-products-selection .sort-by-row {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 12px !important;
  width: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

body#category #js-product-list-top.noao-products-selection .sort-by {
  display: inline-flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #6f7d88 !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: .01em !important;
  white-space: nowrap !important;
}

body#category #js-product-list-top.noao-products-selection .products-sort-order {
  position: relative;
  flex: 0 0 228px !important;
  width: 228px !important;
  min-width: 228px !important;
  max-width: 228px !important;
  margin: 0 !important;
  padding: 0 !important;
}

body#category #js-product-list-top.noao-products-selection .products-sort-order .select-title,
body#category #js-product-list-top.noao-products-selection .products-sort-order select,
body#category #js-product-list-top.noao-products-selection .products-sort-order .form-select {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  min-height: 42px !important;
  height: 42px !important;
  margin: 0 !important;
  padding: 0 42px 0 16px !important;
  overflow: hidden !important;
  color: #18232d !important;
  background-color: rgba(247, 249, 250, .96) !important;
  border: 1px solid rgba(34, 61, 78, .13) !important;
  border-radius: 999px !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .85) inset,
    0 8px 24px rgba(18, 35, 47, .055) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 40px !important;
  text-align: left !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    background-color .2s ease,
    transform .2s ease !important;
}

body#category #js-product-list-top.noao-products-selection .products-sort-order .select-title:hover,
body#category #js-product-list-top.noao-products-selection .products-sort-order .select-title:focus,
body#category #js-product-list-top.noao-products-selection .products-sort-order select:hover,
body#category #js-product-list-top.noao-products-selection .products-sort-order select:focus,
body#category #js-product-list-top.noao-products-selection .products-sort-order .form-select:hover,
body#category #js-product-list-top.noao-products-selection .products-sort-order .form-select:focus {
  background-color: #fff !important;
  border-color: rgba(88, 144, 177, .48) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .92) inset,
    0 10px 28px rgba(30, 69, 91, .09) !important;
  outline: 0 !important;
  transform: translateY(-1px);
}

body#category #js-product-list-top.noao-products-selection .products-sort-order .select-title i,
body#category #js-product-list-top.noao-products-selection .products-sort-order .select-title svg {
  position: absolute !important;
  top: 50% !important;
  right: 14px !important;
  margin: 0 !important;
  transform: translateY(-50%) !important;
}

body#category #js-product-list-top.noao-products-selection .products-sort-order .dropdown-menu {
  right: 0 !important;
  left: auto !important;
  width: 228px !important;
  min-width: 228px !important;
  margin-top: 8px !important;
  padding: 7px !important;
  overflow: hidden !important;
  background: rgba(255, 255, 255, .985) !important;
  border: 1px solid rgba(34, 61, 78, .12) !important;
  border-radius: 15px !important;
  box-shadow: 0 18px 50px rgba(18, 35, 47, .13) !important;
}

body#category #js-product-list-top.noao-products-selection .products-sort-order .dropdown-menu .select-list,
body#category #js-product-list-top.noao-products-selection .products-sort-order .dropdown-menu a {
  display: block !important;
  padding: 10px 12px !important;
  color: #24323d !important;
  border-radius: 9px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
}

body#category #js-product-list-top.noao-products-selection .products-sort-order .dropdown-menu .select-list:hover,
body#category #js-product-list-top.noao-products-selection .products-sort-order .dropdown-menu a:hover {
  color: #244f68 !important;
  background: #f1f6f8 !important;
  text-decoration: none !important;
}

body#category #js-product-list-top.noao-products-selection .filter-button,
body#category #js-product-list-top.noao-products-selection .noao-products-toolbar__filter {
  flex: 0 0 auto !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

body#category #js-product-list-top.noao-products-selection .filter-button .btn {
  min-height: 42px !important;
  padding: 0 16px !important;
  border: 1px solid rgba(34, 61, 78, .13) !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #18232d !important;
  font-size: 12px !important;
  font-weight: 800 !important;
}

@media (max-width: 767px) {
  body#category #js-product-list-top.noao-products-selection {
    justify-content: stretch !important;
    margin-bottom: 22px !important;
  }

  body#category #js-product-list-top.noao-products-selection .noao-products-selection__sort {
    flex: 1 1 auto !important;
    width: 100% !important;
    margin-left: 0 !important;
  }

  body#category #js-product-list-top.noao-products-selection .noao-products-toolbar,
  body#category #js-product-list-top.noao-products-selection .sort-by-row {
    justify-content: flex-end !important;
    width: 100% !important;
  }

  body#category #js-product-list-top.noao-products-selection .products-sort-order {
    flex: 0 1 230px !important;
    width: min(230px, 100%) !important;
    min-width: 0 !important;
    max-width: 230px !important;
  }
}

@media (max-width: 575px) {
  body#category #js-product-list-top.noao-products-selection .noao-products-toolbar,
  body#category #js-product-list-top.noao-products-selection .sort-by-row {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) !important;
    gap: 10px !important;
  }

  body#category #js-product-list-top.noao-products-selection .products-sort-order {
    width: 100% !important;
    max-width: none !important;
    flex-basis: auto !important;
  }

  body#category #js-product-list-top.noao-products-selection .filter-button,
  body#category #js-product-list-top.noao-products-selection .noao-products-toolbar__filter {
    grid-column: 1 / -1 !important;
  }

  body#category #js-product-list-top.noao-products-selection .filter-button .btn {
    width: 100% !important;
  }
}



/* ==========================================================================
   NOA-O Catalogue V2.1.5 — 0.10.6
   Responsive QA mobile / tablette
   ========================================================================== */

/* Breakpoints catalogue
   - Desktop: >= 1101 px
   - Tablette paysage: 821–1100 px
   - Tablette portrait: 576–820 px
   - Mobile: <= 575 px
*/

/* Les composants interactifs gardent une cible tactile confortable. */
.noao-catalog-v2-family__arrow,
body#category .pagination a,
body#search .pagination a {
  min-width: 44px;
  min-height: 44px;
}

/* Empêche les libellés techniques et les références longues de déborder. */
.noao-catalog-v2-family strong,
.noao-catalog-v2-card__title,
.noao-catalog-v2-card__meta,
.noao-catalog-v2-products__head p {
  overflow-wrap: anywhere;
}

/* Le menu de tri ne peut jamais dépasser le viewport. */
body#category #js-product-list-top.noao-products-selection .products-sort-order .dropdown-menu,
body#search #js-product-list-top.noao-products-selection .products-sort-order .dropdown-menu {
  max-width: calc(100vw - 30px) !important;
}

/* Tablette paysage. */
@media (max-width: 1100px) and (min-width: 821px) {
  .noao-catalog-v2-hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  }

  .noao-catalog-v2-hero__content {
    padding: 44px 42px;
  }

  .noao-catalog-v2-hero h1 {
    font-size: clamp(46px, 6vw, 62px);
  }

  .noao-catalog-v2-family {
    min-height: 164px;
  }

  .noao-catalog-v2-products {
    padding-bottom: 78px;
  }

  .noao-catalog-v2-card__body {
    min-height: 206px !important;
  }
}

/* Tablette portrait : le HERO passe en pile, mais la grille produits reste en 2 colonnes. */
@media (max-width: 820px) {
  .noao-catalog-v2 {
    width: 100%;
    min-width: 0;
  }

  .noao-catalog-v2-hero {
    margin-top: 18px;
    margin-bottom: 20px;
  }

  .noao-catalog-v2-hero__panel {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(160px, .65fr);
    gap: 24px;
    align-items: end;
    padding: 26px 28px;
  }

  .noao-catalog-v2-hero__panel-top {
    grid-column: 1 / -1;
  }

  .noao-catalog-v2-hero__metric {
    margin: 0;
    padding: 8px 0 0;
  }

  .noao-catalog-v2-hero__metric strong {
    font-size: clamp(54px, 12vw, 72px);
  }

  .noao-catalog-v2-hero__service {
    align-self: stretch;
    padding: 16px 0 0 20px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, .12);
  }

  .noao-catalog-v2-family {
    min-height: 150px;
  }

  .noao-catalog-v2-products {
    padding-top: 18px;
    padding-bottom: 72px;
  }

  .noao-catalog-v2-products__head {
    gap: 12px;
    margin-bottom: 18px;
  }

  .noao-catalog-v2-products__head > p {
    max-width: 520px;
  }

  body#category #js-product-list .products,
  body#search #js-product-list .products {
    gap: 16px !important;
  }

  .noao-catalog-v2-card__media {
    max-height: none !important;
  }

  .noao-catalog-v2-card__body {
    min-height: 190px !important;
    padding: 18px;
  }

  .noao-catalog-v2-card__title {
    font-size: 18px;
  }

  body#category .pagination .page-list,
  body#search .pagination .page-list {
    justify-content: center;
  }
}

/* Mobile. */
@media (max-width: 575px) {
  .noao-catalog-v2-section-head {
    margin-bottom: 22px;
  }

  .noao-catalog-v2-section-head h2,
  .noao-catalog-v2-products__head h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .noao-catalog-v2-hero {
    border-radius: 20px;
    box-shadow: 0 18px 48px rgba(13, 23, 32, .10);
  }

  .noao-catalog-v2-hero__content {
    padding: 30px 20px 27px;
  }

  .noao-catalog-v2-hero h1 {
    margin-top: 18px;
    font-size: clamp(40px, 12vw, 52px);
  }

  .noao-catalog-v2-hero__description {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.6;
  }

  .noao-catalog-v2-hero__proof {
    grid-template-columns: repeat(2, minmax(0, max-content));
    gap: 7px;
    margin-top: 24px;
  }

  .noao-catalog-v2-hero__proof span {
    width: auto;
    padding: 7px 9px;
  }

  .noao-catalog-v2-hero__panel {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 20px;
  }

  .noao-catalog-v2-hero__metric strong {
    font-size: 58px;
  }

  .noao-catalog-v2-hero__metric span {
    margin-top: 7px;
  }

  .noao-catalog-v2-hero__service {
    padding: 14px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-left: 0;
  }

  .noao-catalog-v2-families {
    padding-top: 26px;
    padding-bottom: 22px;
  }

  .noao-catalog-v2-family {
    min-height: 126px;
    padding: 17px;
    border-radius: 18px;
  }

  .noao-catalog-v2-family__arrow {
    top: 14px;
    right: 14px;
  }

  .noao-catalog-v2-family::after {
    left: 17px;
    right: 17px;
  }

  .noao-catalog-v2-products {
    padding-top: 14px;
    padding-bottom: 60px;
  }

  .noao-catalog-v2-products__head {
    margin-bottom: 16px;
  }

  .noao-catalog-v2-products__head > p {
    font-size: 11px;
    line-height: 1.55;
  }

  body#category #js-product-list-top.noao-products-selection {
    margin-bottom: 18px !important;
  }

  body#category #js-product-list-top.noao-products-selection .sort-by,
  body#search #js-product-list-top.noao-products-selection .sort-by {
    font-size: 11px !important;
  }

  body#category #js-product-list-top.noao-products-selection .products-sort-order .select-title,
  body#category #js-product-list-top.noao-products-selection .products-sort-order select,
  body#category #js-product-list-top.noao-products-selection .products-sort-order .form-select,
  body#search #js-product-list-top.noao-products-selection .products-sort-order .select-title,
  body#search #js-product-list-top.noao-products-selection .products-sort-order select,
  body#search #js-product-list-top.noao-products-selection .products-sort-order .form-select {
    min-height: 44px !important;
    height: 44px !important;
  }

  .noao-catalog-v2-card {
    border-radius: 20px;
  }

  .noao-catalog-v2-card__media {
    aspect-ratio: 4 / 3;
  }

  .noao-catalog-v2-card__media img {
    padding: 18px;
    transform: scale(.96);
  }

  .noao-catalog-v2-card__view {
    right: 12px;
    bottom: 12px;
    min-height: 36px;
  }

  .noao-catalog-v2-card__body {
    min-height: 0 !important;
    padding: 18px 17px 17px;
  }

  .noao-catalog-v2-card__title {
    font-size: 18px;
  }

  .noao-catalog-v2-card__footer {
    margin-top: 26px;
    padding-top: 15px;
  }

  .noao-catalog-v2-onboarding {
    padding-top: 36px;
    padding-bottom: 66px;
  }

  .noao-catalog-v2-steps article {
    min-height: 160px;
    padding: 22px;
    border-radius: 20px;
  }

  .noao-catalog-v2-steps strong {
    margin-top: 34px;
  }

  .noao-catalog-v2-onboarding__cta {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .noao-catalog-v2-onboarding__cta strong {
    font-size: 22px;
  }

  body#category .pagination,
  body#search .pagination {
    margin-top: 30px;
  }

  body#category .pagination a,
  body#search .pagination a {
    min-width: 44px;
    min-height: 44px;
  }
}

/* Très petits écrans : tri et filtres restent lisibles sans débordement. */
@media (max-width: 390px) {
  .noao-catalog-v2-hero__proof {
    grid-template-columns: 1fr;
  }

  body#category #js-product-list-top.noao-products-selection .noao-products-toolbar,
  body#category #js-product-list-top.noao-products-selection .sort-by-row {
    grid-template-columns: 1fr !important;
  }

  body#category #js-product-list-top.noao-products-selection .sort-by {
    justify-content: flex-start !important;
  }

  body#category #js-product-list-top.noao-products-selection .products-sort-order {
    width: 100% !important;
    max-width: none !important;
  }
}

/* Les appareils tactiles ne doivent pas dépendre d'un hover. */
@media (hover: none), (pointer: coarse) {
  .noao-catalog-v2-family:hover,
  .noao-catalog-v2-card:hover {
    transform: none;
  }

  .noao-catalog-v2-card__view {
    opacity: 1;
    transform: none;
  }

  .noao-catalog-v2-family__arrow {
    min-width: 44px;
    min-height: 44px;
  }
}
