/* NOA-O V3 0.8.0 — photographic hero + trust proof + stable catalogue */

:root {
  --n2-blue: #6c9bb8;
  --n2-blue-dark: #355d73;
  --n2-blue-deep: #173244;
  --n2-orange: #d8372f;
  --n2-berry: #b02b54;
  --n2-ink: #0b1117;
  --n2-ink-2: #111a22;
  --n2-text: #15212b;
  --n2-muted: #6c7983;
  --n2-line: rgba(108, 155, 184, .20);
  --n2-paper: #f4f7f8;
  --n2-white: #fff;
  --n2-shadow: 0 28px 80px rgba(13, 27, 38, .10);
  --n2-shadow-hover: 0 34px 90px rgba(13, 27, 38, .16);
  --n2-radius: 28px;
  --n2-radius-sm: 18px;

  --n-brand: var(--n2-blue);
  --n-brand-dark: var(--n2-blue-dark);
}

.noao-v2-home {
  color: var(--n2-text);
  background: #fff;
}

.noao-v2-home *,
.noao-v2-home *::before,
.noao-v2-home *::after {
  box-sizing: border-box;
}

.noao-v2-section {
  padding: 54px 0;
}

.noao-v2-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--n2-blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.noao-v2-kicker::before {
  content: "";
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--n2-blue), var(--n2-orange), var(--n2-berry));
}

.noao-v2-btn {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    color .25s ease,
    background .25s ease,
    border-color .25s ease;
}

.noao-v2-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.noao-v2-btn--primary {
  background: var(--n2-blue);
  color: #fff;
  box-shadow: 0 15px 36px rgba(108, 155, 184, .28);
}

.noao-v2-btn--primary:hover {
  background: #78a6c0;
  color: #fff;
  box-shadow: 0 18px 44px rgba(108, 155, 184, .38);
}

.noao-v2-btn--ghost {
  border-color: rgba(255,255,255,.20);
  color: #fff;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
}

.noao-v2-btn--ghost:hover {
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.08);
  color: #fff;
}

.noao-v2-btn--light {
  background: #fff;
  color: var(--n2-ink);
}

/* Header polish */
.noao-header {
  border-bottom: 1px solid rgba(108,155,184,.12);
  box-shadow: 0 8px 32px rgba(11,17,23,.035);
}

.noao-header__inner {
  min-height: 76px;
}

.noao-mainnav {
  gap: 4px !important;
}

.noao-mainnav > a {
  position: relative;
  padding: 0 11px;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}

.noao-mainnav > a:hover {
  background: rgba(108,155,184,.09);
  color: var(--n2-blue-dark);
}

.noao-search input {
  min-width: 148px;
  height: 42px;
  border: 1px solid var(--n2-line);
  border-radius: 999px;
  padding: 0 18px;
  background: #f7f9fa;
  transition: width .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.noao-search input:focus {
  width: 190px;
  outline: 0;
  border-color: rgba(108,155,184,.55);
  box-shadow: 0 0 0 4px rgba(108,155,184,.09);
}

.noao-header__project {
  border-radius: 999px !important;
}

/* Hero */
.noao-v2-hero {
  padding-top: 30px;
  padding-bottom: 28px;
}

.noao-v2-hero__shell {
  --mx: 70%;
  --my: 30%;
  position: relative;
  min-height: 535px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(108,155,184,.12), transparent 31%),
    var(--n2-ink);
  box-shadow: 0 38px 110px rgba(11,17,23,.16);
}

.noao-v2-hero__content {
  position: relative;
  z-index: 2;
  padding: 68px 64px 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.noao-v2-hero h1 {
  max-width: 760px;
  margin: 19px 0 0;
  color: #fff;
  font-size: clamp(50px, 5vw, 78px);
  line-height: .94;
  letter-spacing: -.065em;
  font-weight: 750;
}

.noao-v2-hero__content > p {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.63);
  font-size: 16px;
  line-height: 1.72;
}

.noao-v2-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 34px;
}

.noao-v2-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.11);
  color: rgba(255,255,255,.48);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.noao-v2-hero__visual {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border-left: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(rgba(108,155,184,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,155,184,.08) 1px, transparent 1px),
    linear-gradient(145deg, #142432, #0d151c);
  background-size: 44px 44px, 44px 44px, auto;
}

.noao-v2-hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 44%, rgba(216,55,47,.10), transparent 20%),
    radial-gradient(circle at 62% 52%, rgba(176,43,84,.14), transparent 31%);
}

.noao-v2-hero__signal {
  position: absolute;
  width: min(500px, 105%);
  height: auto;
  right: -42px;
  top: 50%;
  transform: translateY(-51%) rotate(-3deg);
  filter: drop-shadow(0 32px 60px rgba(0,0,0,.18));
  opacity: .96;
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
}

.noao-v2-hero__shell:hover .noao-v2-hero__signal {
  transform: translateY(-51%) rotate(0deg) scale(1.025);
}

.noao-v2-hero__caption {
  position: absolute;
  right: 34px;
  bottom: 34px;
  display: flex;
  flex-direction: column;
  color: rgba(255,255,255,.70);
  letter-spacing: .16em;
  text-align: right;
}

.noao-v2-hero__caption span {
  font-size: 8px;
}

.noao-v2-hero__caption strong {
  margin-top: 4px;
  font-size: 11px;
}

.noao-v2-hero__index {
  position: absolute;
  left: 28px;
  top: 28px;
  color: rgba(255,255,255,.35);
  font-size: 9px;
  letter-spacing: .14em;
}

/* Entry cards */
.noao-v2-entry {
  padding-top: 20px;
}

.noao-v2-entry__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.noao-v2-path {
  --mx: 50%;
  --my: 50%;
  position: relative;
  min-height: 315px;
  overflow: hidden;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--n2-radius);
  color: var(--n2-text);
  text-decoration: none;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.noao-v2-path::before,
.noao-v2-solution::before,
.noao-v2-subcategory::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(108,155,184,.18), transparent 34%);
  transition: opacity .25s ease;
}

.noao-v2-path:hover::before,
.noao-v2-solution:hover::before,
.noao-v2-subcategory:hover::before {
  opacity: 1;
}

.noao-v2-path:hover {
  transform: translateY(-6px);
  box-shadow: var(--n2-shadow-hover);
  text-decoration: none;
}

.noao-v2-path--project {
  border: 1px solid var(--n2-line);
  background:
    linear-gradient(145deg, rgba(108,155,184,.07), transparent 55%),
    #fff;
}

.noao-v2-path--catalog {
  color: #fff;
  background:
    radial-gradient(circle at 85% 15%, rgba(216,55,47,.20), transparent 26%),
    linear-gradient(135deg, #183648, #234f66);
}

.noao-v2-path__top {
  display: flex;
  justify-content: space-between;
  color: currentColor;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  opacity: .66;
}

.noao-v2-path__arrow {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 17px;
  transition: transform .25s ease, background .25s ease;
}

.noao-v2-path:hover .noao-v2-path__arrow {
  transform: rotate(10deg) scale(1.06);
  background: rgba(108,155,184,.10);
}

.noao-v2-path h2 {
  max-width: 570px;
  margin: 0;
  color: inherit;
  font-size: clamp(30px,3vw,44px);
  letter-spacing: -.045em;
  line-height: 1.03;
}

.noao-v2-path p {
  max-width: 610px;
  margin: 14px 0 0;
  color: inherit;
  opacity: .65;
  line-height: 1.65;
}

.noao-v2-path > strong {
  color: inherit;
  font-size: 12px;
}

/* Proof */
.noao-v2-proof {
  padding: 26px 0 72px;
}

.noao-v2-proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.noao-v2-proof__grid > div {
  padding: 22px 24px;
  border-radius: 16px;
  background: #f5f8f9;
}

.noao-v2-proof strong,
.noao-v2-proof span {
  display: block;
}

.noao-v2-proof strong {
  color: var(--n2-blue-dark);
  font-size: 19px;
}

.noao-v2-proof span {
  margin-top: 5px;
  color: var(--n2-muted);
  font-size: 10px;
}

/* Shared headings */
.noao-v2-heading {
  display: grid;
  grid-template-columns: 1.05fr .55fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 45px;
}

.noao-v2-heading h2 {
  margin: 12px 0 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: .98;
  letter-spacing: -.06em;
}

.noao-v2-heading > p {
  margin: 0 0 5px;
  color: var(--n2-muted);
  line-height: 1.7;
}

.noao-v2-heading > a {
  align-self: end;
  justify-self: end;
  color: var(--n2-text);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

/* Solutions */
.noao-v2-expertise {
  padding: 82px 0;
}

.noao-v2-solutions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}

.noao-v2-solution {
  --mx: 50%;
  --my: 50%;
  position: relative;
  min-height: 310px;
  overflow: hidden;
  padding: 25px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(108,155,184,.16);
  border-radius: 22px;
  background: #f7f9fa;
  color: var(--n2-text);
  text-decoration: none;
  transition:
    transform .28s cubic-bezier(.2,.8,.2,1),
    box-shadow .28s ease,
    background .28s ease;
}

.noao-v2-solution--wide {
  grid-column: span 2;
}

.noao-v2-solution:hover {
  transform: translateY(-7px);
  background: #fff;
  box-shadow: var(--n2-shadow);
  text-decoration: none;
}

.noao-v2-solution > span {
  color: var(--n2-blue);
  font-size: 9px;
  font-weight: 900;
}

.noao-v2-solution__icon {
  width: 54px;
  height: 54px;
  margin: 43px 0 18px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #fff;
  color: var(--n2-blue-dark);
  box-shadow: 0 10px 32px rgba(13,27,38,.08);
  font-size: 22px;
  transition: transform .28s ease, background .28s ease, color .28s ease;
}

.noao-v2-solution:hover .noao-v2-solution__icon {
  transform: rotate(-5deg) scale(1.05);
  background: var(--n2-blue);
  color: #fff;
}

.noao-v2-solution h3 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -.035em;
}

.noao-v2-solution p {
  max-width: 520px;
  margin: 9px 0 0;
  color: var(--n2-muted);
  line-height: 1.6;
}

.noao-v2-solution strong {
  margin-top: auto;
  padding-top: 24px;
  font-size: 11px;
}

/* Realisations */
.noao-v2-project {
  padding: 72px 0;
}

.noao-v2-project__shell {
  --mx: 50%;
  --my: 50%;
  min-height: 500px;
  overflow: hidden;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  border-radius: 32px;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(176,43,84,.10), transparent 30%),
    var(--n2-ink);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 30px 95px rgba(11,17,23,.13);
}

.noao-v2-project__shell:hover {
  color: #fff;
  text-decoration: none;
}

.noao-v2-project__graphic {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(108,155,184,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,155,184,.06) 1px, transparent 1px),
    linear-gradient(145deg,#132735,#0b1117);
  background-size: 42px 42px;
}

.noao-v2-project__graphic img {
  position: absolute;
  width: 560px;
  max-width: none;
  left: -95px;
  top: 50%;
  transform: translateY(-50%) rotate(5deg);
  opacity: .52;
  filter: saturate(.9);
  transition: transform .55s ease, opacity .55s ease;
}

.noao-v2-project__shell:hover .noao-v2-project__graphic img {
  transform: translateY(-50%) rotate(0deg) scale(1.04);
  opacity: .72;
}

.noao-v2-project__content {
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.noao-v2-project__content h2 {
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(48px,5vw,72px);
  line-height: .97;
  letter-spacing: -.06em;
}

.noao-v2-project__content p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.62);
  line-height: 1.7;
}

.noao-v2-project__content strong {
  margin-top: 34px;
  font-size: 12px;
}

/* Sectors */
.noao-v2-sectors {
  padding: 80px 0 92px;
}

.noao-v2-sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.noao-v2-sector-grid a {
  min-height: 160px;
  padding: 21px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px;
  background: #f3f6f8;
  color: var(--n2-text);
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}

.noao-v2-sector-grid a:hover {
  transform: translateY(-5px);
  color: #fff;
  background: var(--n2-blue-deep);
  box-shadow: 0 24px 65px rgba(23,50,68,.18);
  text-decoration: none;
}

.noao-v2-sector-grid span {
  color: var(--n2-blue);
  font-size: 9px;
  font-weight: 900;
}

.noao-v2-sector-grid strong {
  font-size: 17px;
}

/* L-Acoustics */
.noao-v2-la {
  padding: 65px 0 80px;
}

.noao-v2-la__shell {
  --mx: 80%;
  --my: 20%;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 440px;
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(216,55,47,.15), transparent 28%),
    linear-gradient(135deg,#0b1117,#122532);
}

.noao-v2-la__content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.noao-v2-la__content h2 {
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(44px,4.5vw,66px);
  line-height: .98;
  letter-spacing: -.055em;
}

.noao-v2-la__content > p {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.60);
  line-height: 1.7;
}

.noao-v2-la__actions {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 30px;
}

.noao-v2-la__actions > a:not(.noao-v2-btn) {
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.noao-v2-la__mark {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(rgba(108,155,184,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,155,184,.07) 1px, transparent 1px);
  background-size: 44px 44px;
}

.noao-v2-la__mark::before {
  content: "";
  width: 170px;
  height: 170px;
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(108,155,184,.28);
  box-shadow:
    0 0 0 26px rgba(108,155,184,.035),
    0 0 0 52px rgba(108,155,184,.02);
}

.noao-v2-la__mark strong {
  position: relative;
  font-size: 30px;
  letter-spacing: -.03em;
}

.noao-v2-la__mark span {
  position: relative;
  margin-top: 8px;
  color: var(--n2-blue);
  font-size: 9px;
  letter-spacing: .18em;
}

/* Why */
.noao-v2-why {
  padding: 90px 0;
}

.noao-v2-why__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 100px;
}

.noao-v2-why h2 {
  max-width: 520px;
  margin: 16px 0 0;
  font-size: clamp(43px,4.5vw,64px);
  line-height: 1;
  letter-spacing: -.055em;
}

.noao-v2-why__list {
  border-top: 1px solid var(--n2-line);
}

.noao-v2-why__list article {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--n2-line);
  transition: padding-left .25s ease;
}

.noao-v2-why__list article:hover {
  padding-left: 10px;
}

.noao-v2-why__list article > span {
  color: var(--n2-blue);
  font-size: 9px;
  font-weight: 900;
}

.noao-v2-why__list strong {
  font-size: 17px;
}

.noao-v2-why__list p {
  margin: 6px 0 0;
  color: var(--n2-muted);
  line-height: 1.6;
}

/* Method */
.noao-v2-method {
  padding: 88px 0;
  background: #f6f8f9;
}

.noao-v2-method__grid {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 10px;
  list-style: none;
}

.noao-v2-method__grid li {
  min-height: 210px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}

.noao-v2-method__grid li:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 55px rgba(13,27,38,.08);
}

.noao-v2-method__grid li > span {
  color: var(--n2-blue);
  font-size: 9px;
  font-weight: 900;
}

.noao-v2-method__grid strong {
  margin-top: auto;
  font-size: 16px;
}

.noao-v2-method__grid p {
  margin: 6px 0 0;
  color: var(--n2-muted);
  font-size: 11px;
  line-height: 1.5;
}

/* SAV */
.noao-v2-sav {
  padding: 80px 0;
}

.noao-v2-sav__shell {
  --mx: 80%;
  --my: 20%;
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr .8fr 60px;
  gap: 55px;
  align-items: center;
  border-radius: 32px;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(176,43,84,.24), transparent 28%),
    linear-gradient(135deg,#5e90ae,#3f7797);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 30px 90px rgba(63,119,151,.17);
}

.noao-v2-sav__shell:hover {
  color: #fff;
  text-decoration: none;
}

.noao-v2-sav h2 {
  max-width: 690px;
  margin: 16px 0 0;
  color: #fff;
  font-size: clamp(42px,4.5vw,64px);
  line-height: 1;
  letter-spacing: -.055em;
}

.noao-v2-sav .noao-v2-kicker {
  color: rgba(255,255,255,.72);
}

.noao-v2-sav__services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 20px;
  overflow: hidden;
}

.noao-v2-sav__services span {
  min-height: 86px;
  padding: 17px;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(255,255,255,.20);
  border-bottom: 1px solid rgba(255,255,255,.20);
  font-size: 12px;
  font-weight: 800;
}

.noao-v2-sav__arrow {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.45);
  font-size: 20px;
  transition: transform .25s ease;
}

.noao-v2-sav__shell:hover .noao-v2-sav__arrow {
  transform: rotate(12deg) scale(1.08);
}

/* Group */
.noao-v2-group {
  padding: 82px 0;
}

.noao-v2-group__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
}

.noao-v2-group__grid > * {
  min-height: 190px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: #f4f7f8;
  color: var(--n2-text);
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

.noao-v2-group__grid > a:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 62px rgba(13,27,38,.10);
  text-decoration: none;
}

.noao-v2-group__grid .is-current {
  color: #fff;
  background:
    radial-gradient(circle at 80% 15%, rgba(216,55,47,.23), transparent 25%),
    var(--n2-blue-deep);
}

.noao-v2-group__grid span {
  color: var(--n2-blue);
  font-size: 9px;
  font-weight: 900;
}

.noao-v2-group__grid strong {
  margin-top: auto;
  font-size: 20px;
}

.noao-v2-group__grid small {
  margin-top: 5px;
  color: inherit;
  opacity: .55;
}

/* Final CTA */
.noao-v2-final {
  padding: 65px 0 95px;
}

.noao-v2-final__shell {
  padding: 55px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  border-radius: 30px;
  background:
    linear-gradient(120deg, rgba(108,155,184,.09), transparent 38%),
    #f4f7f8;
}

.noao-v2-final h2 {
  margin: 16px 0 0;
  font-size: clamp(40px,4.5vw,60px);
  line-height: 1;
  letter-spacing: -.055em;
}

.noao-v2-final__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}

.noao-v2-final__actions > a:not(.noao-v2-btn) {
  color: var(--n2-text);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

/* ------------------------------------------------------------
   Catalogue V2 — stable dimensions, no oversized inherited boxes
   ------------------------------------------------------------ */

body#category #center-column,
body#category #content-wrapper {
  min-width: 0 !important;
}

.noao-v2-category-hero {
  --mx: 75%;
  --my: 30%;
  position: relative;
  min-height: 350px;
  margin: 24px 0 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  border-radius: 28px;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(108,155,184,.10), transparent 28%),
    var(--n2-ink);
  color: #fff;
  box-shadow: 0 28px 75px rgba(11,17,23,.10);
}

.noao-v2-category-hero__content {
  padding: 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.noao-v2-category-hero h1 {
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(42px,4.5vw,64px);
  line-height: .98;
  letter-spacing: -.055em;
}

.noao-v2-category-hero__description {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.62);
  line-height: 1.65;
}

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

.noao-v2-category-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.noao-v2-category-hero__proof span {
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: rgba(255,255,255,.64);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.noao-v2-category-hero__visual {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 28px;
  border-left: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(rgba(108,155,184,.07) 1px,transparent 1px),
    linear-gradient(90deg,rgba(108,155,184,.07) 1px,transparent 1px);
  background-size: 40px 40px;
}

.noao-v2-category-hero__visual img {
  position: absolute;
  width: 360px;
  max-width: none;
  right: -35px;
  top: 50%;
  transform: translateY(-50%);
  opacity: .90;
}

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

.noao-v2-subcategories {
  margin: 0 0 42px;
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 12px;
}

.noao-v2-subcategory {
  --mx: 50%;
  --my: 50%;
  position: relative;
  min-height: 132px;
  overflow: hidden;
  padding: 18px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--n2-line);
  border-radius: 18px;
  background: #fff;
  color: var(--n2-text);
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.noao-v2-subcategory:hover {
  transform: translateY(-4px);
  background: #f8fafb;
  box-shadow: 0 18px 45px rgba(13,27,38,.08);
  text-decoration: none;
}

.noao-v2-subcategory__arrow {
  align-self: flex-end;
  font-size: 16px;
}

.noao-v2-subcategory strong {
  margin-top: auto;
  font-size: 16px;
}

.noao-v2-subcategory small {
  margin-top: 5px;
  color: var(--n2-muted);
  font-size: 10px;
}

.noao-category-products {
  margin-top: 34px !important;
}

/* Force a clean grid after PrestaShop AJAX refreshes. */
body#category #js-product-list .products,
body#search #js-product-list .products {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
  align-items: stretch !important;
  margin: 0 !important;
}

body#category #js-product-list .product-miniature,
body#search #js-product-list .product-miniature,
.noao-v2-product-card {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden;
  border: 1px solid rgba(108,155,184,.17);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(13,27,38,.035);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.noao-v2-product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(108,155,184,.36);
  box-shadow: 0 28px 70px rgba(13,27,38,.11);
}

.noao-v2-product-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 0 !important;
  max-height: 310px !important;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 46%, #fff 0 42%, #f4f6f7 100%);
}

.noao-v2-product-card__media img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  max-height: 100% !important;
  padding: 22px;
  display: block;
  object-fit: contain !important;
  object-position: center !important;
  transform: scale(.94);
  transition: transform .38s cubic-bezier(.2,.8,.2,1);
}

.noao-v2-product-card:hover .noao-v2-product-card__media img {
  transform: scale(1);
}

.noao-v2-product-card__view {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(11,17,23,.88);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
}

.noao-v2-product-card:hover .noao-v2-product-card__view {
  opacity: 1;
  transform: translateY(0);
}

.noao-v2-product-card__body {
  min-height: 205px !important;
  padding: 20px;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.noao-v2-product-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--n2-muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.noao-v2-product-card__meta span:first-child {
  color: var(--n2-blue-dark);
}

.noao-v2-product-card__title {
  margin-top: 10px;
  color: var(--n2-text);
  font-size: 19px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -.025em;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.noao-v2-product-card__title:hover {
  color: var(--n2-blue-dark);
  text-decoration: none;
}

.noao-v2-product-card__footer {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid var(--n2-line);
}

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

.noao-v2-product-card__footer strong {
  color: var(--n2-blue-dark);
  font-size: 11px;
}

.noao-v2-product-card__footer div > span {
  margin-top: 4px;
  color: var(--n2-muted);
  font-size: 10px;
}

.noao-v2-product-card__footer > span {
  font-size: 17px;
  transition: transform .25s ease;
}

.noao-v2-product-card:hover .noao-v2-product-card__footer > span {
  transform: translateX(4px);
}

/* Prevent inherited Hummingbird/card rules from reserving huge empty space. */
.noao-v2-product-card .product-miniature__top,
.noao-v2-product-card .product-miniature__bottom,
.noao-v2-product-card .product-miniature__inner,
.noao-v2-product-card picture,
.noao-v2-product-card figure {
  min-height: 0 !important;
  height: auto !important;
  padding-top: 0 !important;
  margin: 0 !important;
}

body#category .products-selection {
  margin: 0 0 26px !important;
  padding: 0 !important;
}

body#category .products-sort-order .select-title {
  min-height: 44px;
  border: 1px solid var(--n2-line);
  border-radius: 999px !important;
  background: #f7f9fa;
}

/* Root catalogue onboarding */
.noao-root-catalogue {
  border-radius: 26px;
}

.noao-root-catalogue__steps > div {
  border-radius: 16px;
}

/* Footer */
.noao-footer {
  border-top-left-radius: 34px;
  border-top-right-radius: 34px;
}

/* Motion only when JS is available. */
html.noao-v2-motion .noao-v2-section {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2,.8,.2,1);
}

html.noao-v2-motion .noao-v2-section.is-visible {
  opacity: 1;
  transform: none;
}

/* Tablet */
@media (max-width: 1100px) {
  .noao-v2-hero__shell {
    grid-template-columns: 1.1fr .9fr;
  }

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

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

  .noao-v2-solution--wide {
    grid-column: span 1;
  }

  .noao-v2-sector-grid,
  .noao-v2-group__grid {
    grid-template-columns: repeat(2,1fr);
  }

  .noao-v2-method__grid {
    grid-template-columns: repeat(3,1fr);
  }

  body#category #js-product-list .products,
  body#search #js-product-list .products {
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
  }

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

/* Mobile / tablet portrait */
@media (max-width: 820px) {
  .noao-v2-section {
    padding: 40px 0;
  }

  .noao-v2-hero {
    padding-top: 16px;
  }

  .noao-v2-hero__shell {
    min-height: 0;
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .noao-v2-hero__content {
    padding: 46px 26px 38px;
  }

  .noao-v2-hero h1 {
    font-size: clamp(43px,11vw,62px);
  }

  .noao-v2-hero__visual {
    min-height: 270px;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.08);
  }

  .noao-v2-hero__signal {
    width: 390px;
    right: -35px;
  }

  .noao-v2-entry__grid,
  .noao-v2-heading,
  .noao-v2-project__shell,
  .noao-v2-la__shell,
  .noao-v2-why__grid,
  .noao-v2-final__shell,
  .noao-v2-sav__shell {
    grid-template-columns: 1fr;
  }

  .noao-v2-path {
    min-height: 275px;
  }

  .noao-v2-heading {
    gap: 22px;
    align-items: start;
  }

  .noao-v2-heading > a {
    justify-self: start;
  }

  .noao-v2-proof__grid {
    grid-template-columns: 1fr 1fr;
  }

  .noao-v2-project__graphic {
    min-height: 270px;
  }

  .noao-v2-project__content {
    padding: 42px 28px;
  }

  .noao-v2-la__content {
    padding: 42px 28px;
  }

  .noao-v2-la__mark {
    min-height: 270px;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.08);
  }

  .noao-v2-why__grid {
    gap: 40px;
  }

  .noao-v2-sav__shell {
    gap: 30px;
    padding: 38px 28px;
  }

  .noao-v2-sav__arrow {
    position: absolute;
    right: 24px;
    top: 24px;
  }

  .noao-v2-final__shell {
    padding: 38px 28px;
  }

  .noao-v2-final__actions {
    align-items: flex-start;
  }

  .noao-v2-category-hero {
    grid-template-columns: 1fr;
  }

  .noao-v2-category-hero__content {
    padding: 38px 28px;
  }

  .noao-v2-category-hero__visual {
    min-height: 220px;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.08);
  }

  .noao-v2-category-hero__visual img {
    width: 280px;
  }

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

/* Phones */
@media (max-width: 575px) {
  .noao-v2-home .container,
  body#category .container,
  body#search .container {
    width: calc(100% - 24px) !important;
    max-width: none !important;
  }

  .noao-v2-hero__actions,
  .noao-v2-la__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .noao-v2-btn {
    width: 100%;
  }

  .noao-v2-hero__trust {
    display: grid;
    grid-template-columns: 1fr;
  }

  .noao-v2-entry__grid,
  .noao-v2-proof__grid,
  .noao-v2-solutions,
  .noao-v2-sector-grid,
  .noao-v2-group__grid,
  .noao-v2-method__grid,
  .noao-v2-sav__services,
  .noao-v2-subcategories {
    grid-template-columns: 1fr;
  }

  .noao-v2-heading h2,
  .noao-v2-project__content h2,
  .noao-v2-la__content h2,
  .noao-v2-why h2,
  .noao-v2-sav h2,
  .noao-v2-final h2 {
    font-size: clamp(37px,11vw,50px);
  }

  .noao-v2-project__graphic {
    min-height: 220px;
  }

  .noao-v2-method__grid li {
    min-height: 150px;
  }

  .noao-v2-category-hero {
    margin-top: 12px;
    border-radius: 22px;
  }

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

  .noao-v2-product-card__media {
    aspect-ratio: 4 / 3;
    max-height: 300px !important;
  }

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

@media (prefers-reduced-motion: reduce) {
  .noao-v2-home *,
  .noao-v2-product-card,
  .noao-v2-subcategory {
    transition: none !important;
  }

  html.noao-v2-motion .noao-v2-section {
    opacity: 1;
    transform: none;
  }
}
/* ==========================================================================
   NOA-O V3 — photographic hero
   ========================================================================== */

.noao-v2-hero__shell {
  grid-template-columns: minmax(0, 1.06fr) minmax(430px, .94fr);
  min-height: 520px;
}

.noao-v2-hero__content {
  padding-top: 60px;
  padding-bottom: 48px;
}

.noao-v2-hero__visual.noao-v3-hero__visual {
  isolation: isolate;
  background: #0d1720;
}

.noao-v3-hero__picture,
.noao-v3-hero__photo,
.noao-v3-hero__photo-shade,
.noao-v3-hero__grid {
  position: absolute;
  inset: 0;
}

.noao-v3-hero__picture {
  z-index: 0;
  overflow: hidden;
}

.noao-v3-hero__photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 52% 48%;
  transform: scale(1.015);
  filter: saturate(.94) contrast(1.02);
  transition:
    transform .75s cubic-bezier(.2,.8,.2,1),
    filter .55s ease;
}

.noao-v2-hero__shell:hover .noao-v3-hero__photo {
  transform: scale(1.055);
  filter: saturate(1.02) contrast(1.035);
}

.noao-v3-hero__photo-shade {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7,14,21,.70) 0%, rgba(7,14,21,.20) 36%, rgba(7,14,21,.05) 70%),
    linear-gradient(180deg, rgba(6,13,20,.12), rgba(6,13,20,.18) 54%, rgba(6,13,20,.76) 100%);
}

.noao-v3-hero__grid {
  z-index: 2;
  pointer-events: none;
  opacity: .42;
  background:
    linear-gradient(rgba(108,155,184,.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,155,184,.075) 1px, transparent 1px);
  background-size: 44px 44px;
  mix-blend-mode: screen;
}

.noao-v3-hero__proof {
  position: absolute;
  z-index: 4;
  left: 34px;
  bottom: 34px;
  width: min(330px, calc(100% - 68px));
  padding: 22px 24px 20px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 22px;
  background: rgba(7, 15, 23, .72);
  color: #fff;
  box-shadow: 0 22px 70px rgba(0,0,0,.26);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  transition:
    transform .30s ease,
    border-color .30s ease,
    background .30s ease;
}

.noao-v2-hero__shell:hover .noao-v3-hero__proof {
  transform: translateY(-4px);
  border-color: rgba(108,155,184,.46);
  background: rgba(7, 15, 23, .80);
}

.noao-v3-hero__proof-label,
.noao-v3-hero__proof-years,
.noao-v3-hero__proof small {
  display: block;
}

.noao-v3-hero__proof-label {
  color: rgba(255,255,255,.64);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
}

.noao-v3-hero__proof-brand {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 27px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.035em;
}

.noao-v3-hero__proof-rule {
  width: 44px;
  height: 2px;
  margin: 16px 0 13px;
  background: linear-gradient(90deg, var(--n2-blue), var(--n2-orange), var(--n2-berry));
}

.noao-v3-hero__proof-years {
  color: #fff;
  font-size: 15px;
  font-weight: 850;
}

.noao-v3-hero__proof small {
  margin-top: 5px;
  color: rgba(255,255,255,.58);
  font-size: 10px;
  letter-spacing: .035em;
}

.noao-v3-hero__visual .noao-v2-hero__index {
  z-index: 5;
}

.noao-v3-hero__visual .noao-v2-hero__caption {
  z-index: 5;
  opacity: .72;
}

/* Keep the content/photo balance intentional on medium desktop screens. */
@media (max-width: 1280px) {
  .noao-v2-hero__shell {
    grid-template-columns: minmax(0, 1.02fr) minmax(380px, .98fr);
  }

  .noao-v3-hero__proof {
    left: 26px;
    bottom: 26px;
    width: min(310px, calc(100% - 52px));
  }
}

@media (max-width: 1100px) {
  .noao-v2-hero__shell {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  }

  .noao-v3-hero__proof {
    padding: 18px 20px;
  }

  .noao-v3-hero__proof-brand {
    font-size: 23px;
  }
}

@media (max-width: 820px) {
  .noao-v2-hero__shell {
    grid-template-columns: 1fr;
  }

  .noao-v2-hero__visual.noao-v3-hero__visual {
    min-height: 420px;
  }

  .noao-v3-hero__photo {
    object-position: 50% 46%;
  }

  .noao-v3-hero__proof {
    left: 22px;
    bottom: 22px;
    width: min(340px, calc(100% - 44px));
  }

  .noao-v3-hero__visual .noao-v2-hero__caption {
    right: 22px;
    top: 24px;
    bottom: auto;
  }
}

@media (max-width: 575px) {
  .noao-v2-hero__content {
    padding: 40px 22px 32px;
  }

  .noao-v2-hero__visual.noao-v3-hero__visual {
    min-height: 360px;
  }

  .noao-v3-hero__photo {
    object-position: 51% 45%;
  }

  .noao-v3-hero__proof {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    padding: 17px 18px;
    border-radius: 18px;
  }

  .noao-v3-hero__proof-brand {
    font-size: 22px;
  }

  .noao-v3-hero__visual .noao-v2-hero__caption {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .noao-v3-hero__photo,
  .noao-v3-hero__proof {
    transition: none !important;
    transform: none !important;
  }
}
/* ==========================================================================
   NOA-O V3.1 — hero refinement
   ========================================================================== */

.noao-v2-hero__visual.noao-v3-hero__visual {
  overflow: visible;
  border-left-color: transparent;
}

.noao-v3-hero__picture {
  overflow: hidden;
}

.noao-v31-hero__transition {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: -118px;
  width: 190px;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(7,14,21,1) 0%,
      rgba(7,14,21,.97) 18%,
      rgba(7,14,21,.78) 44%,
      rgba(7,14,21,.42) 68%,
      rgba(7,14,21,.12) 88%,
      rgba(7,14,21,0) 100%
    );
}

.noao-v3-hero__photo {
  object-position: 52% 46%;
  transform: scale(1.02);
  filter:
    saturate(.96)
    contrast(1.035)
    brightness(.94);
}

.noao-v2-hero__shell:hover .noao-v3-hero__photo {
  transform: scale(1.045);
  filter:
    saturate(1.02)
    contrast(1.05)
    brightness(.97);
}

.noao-v3-hero__photo-shade {
  background:
    linear-gradient(90deg, rgba(7,14,21,.42) 0%, rgba(7,14,21,.12) 31%, rgba(7,14,21,.03) 62%),
    linear-gradient(180deg, rgba(6,13,20,.05), rgba(6,13,20,.10) 48%, rgba(6,13,20,.58) 100%);
}

.noao-v31-hero__proof {
  left: 28px;
  bottom: 26px;
  width: min(286px, calc(100% - 56px));
  padding: 17px 18px 16px;
  border-radius: 18px;
  border-color: rgba(255,255,255,.18);
  background:
    linear-gradient(145deg, rgba(10,18,27,.84), rgba(9,14,21,.72));
  box-shadow:
    0 22px 55px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
}

.noao-v2-hero__shell:hover .noao-v31-hero__proof {
  transform: translateY(-3px);
  border-color: rgba(108,155,184,.42);
  background:
    linear-gradient(145deg, rgba(10,18,27,.90), rgba(9,14,21,.78));
}

.noao-v31-hero__lacoustics-logo {
  display: block;
  width: 205px;
  max-width: 100%;
  height: auto;
  margin-top: 10px;
  object-fit: contain;
  object-position: left center;
}

.noao-v31-hero__proof .noao-v3-hero__proof-rule {
  width: 38px;
  margin: 10px 0 10px;
}

.noao-v31-hero__proof .noao-v3-hero__proof-years {
  font-size: 14px;
  line-height: 1.25;
}

.noao-v31-hero__proof small {
  margin-top: 4px;
  font-size: 9px;
}

.noao-v31-hero__proof .noao-v3-hero__proof-label {
  font-size: 8px;
}

.noao-v3-hero__grid {
  opacity: .25;
}

@media (max-width: 1280px) {
  .noao-v31-hero__transition {
    left: -92px;
    width: 160px;
  }

  .noao-v31-hero__proof {
    left: 22px;
    bottom: 22px;
    width: min(270px, calc(100% - 44px));
  }
}

@media (max-width: 1100px) {
  .noao-v31-hero__proof {
    padding: 15px 16px;
  }

  .noao-v31-hero__lacoustics-logo {
    width: 190px;
  }
}

@media (max-width: 820px) {
  .noao-v31-hero__transition {
    top: -70px;
    left: 0;
    right: 0;
    bottom: auto;
    width: auto;
    height: 120px;
    background:
      linear-gradient(
        180deg,
        rgba(7,14,21,1) 0%,
        rgba(7,14,21,.78) 35%,
        rgba(7,14,21,.30) 72%,
        rgba(7,14,21,0) 100%
      );
  }

  .noao-v31-hero__proof {
    left: 20px;
    bottom: 20px;
    width: min(286px, calc(100% - 40px));
  }

  .noao-v3-hero__photo {
    object-position: 52% 43%;
  }
}

@media (max-width: 575px) {
  .noao-v31-hero__proof {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    padding: 15px 16px 14px;
  }

  .noao-v31-hero__lacoustics-logo {
    width: 178px;
  }

  .noao-v3-hero__photo {
    object-position: 50% 42%;
  }
}

/* ==========================================================================
   NOA-O Product V1 — 0.9.0
   Quote-first product page for PrestaShop 9.1
   ========================================================================== */

.noao-pdp {
  --pdp-ink: #0b1620;
  --pdp-ink-soft: #1c2a36;
  --pdp-blue: #659abd;
  --pdp-blue-deep: #315c77;
  --pdp-red: #d93645;
  --pdp-berry: #a61f55;
  --pdp-paper: #ffffff;
  --pdp-mist: #f4f7f9;
  --pdp-line: #dfe8ee;
  --pdp-muted: #6f7d89;
  --pdp-shadow: 0 24px 70px rgba(13, 33, 48, .09);
  padding: 20px 0 0;
  color: var(--pdp-ink);
  background: #fff;
}

.noao-pdp *,
.noao-pdp *::before,
.noao-pdp *::after {
  box-sizing: border-box;
}

.noao-pdp__container {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.noao-pdp a {
  color: inherit;
}

.noao-pdp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 12px 0 22px;
  color: var(--pdp-muted);
  font-size: 12px;
}

.noao-pdp-breadcrumb a {
  text-decoration: none;
}

.noao-pdp-breadcrumb a:hover {
  color: var(--pdp-blue-deep);
}

.noao-pdp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(390px, .84fr);
  gap: 30px;
  align-items: start;
}

.noao-pdp-hero__media {
  min-width: 0;
}

.noao-pdp-hero__summary {
  min-width: 0;
}

.noao-pdp-hero__summary-inner {
  position: sticky;
  top: 118px;
  padding: 34px 36px 30px;
  border: 1px solid var(--pdp-line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(101,154,189,.12), transparent 36%),
    #fff;
  box-shadow: 0 18px 60px rgba(16, 35, 51, .07);
}

.noao-pdp-kicker,
.noao-pdp-eyebrow {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: var(--pdp-blue-deep);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.noao-pdp-kicker::before,
.noao-pdp-eyebrow::before {
  width: 18px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--pdp-blue), var(--pdp-red));
}

.noao-pdp-title {
  max-width: 690px;
  margin: 14px 0 5px;
  color: var(--pdp-ink);
  font-size: clamp(38px, 4.2vw, 66px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.055em;
}

.noao-pdp-reference {
  color: var(--pdp-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}

.noao-pdp-lead {
  max-width: 650px;
  margin-top: 24px;
  color: #52606b;
  font-size: 16px;
  line-height: 1.7;
}

.noao-pdp-lead > :last-child {
  margin-bottom: 0;
}

.noao-pdp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.noao-pdp-badges span {
  padding: 8px 11px;
  border: 1px solid var(--pdp-line);
  border-radius: 999px;
  color: #46545f;
  background: rgba(244,247,249,.72);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.noao-pdp-actions {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 10px;
  margin-top: 26px;
}

.noao-pdp-quantity {
  grid-row: span 2;
}

.noao-pdp-quantity label {
  display: block;
  margin-bottom: 7px;
  color: var(--pdp-muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.noao-pdp-quantity__control {
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  overflow: hidden;
  height: 48px;
  border: 1px solid var(--pdp-line);
  border-radius: 14px;
  background: #fff;
}

.noao-pdp-quantity__control button,
.noao-pdp-quantity__control input {
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--pdp-ink);
  text-align: center;
}

.noao-pdp-quantity__control button {
  cursor: pointer;
  font-size: 18px;
}

.noao-pdp-quantity__control button:hover {
  background: var(--pdp-mist);
}

.noao-pdp-quantity__control input {
  width: 100%;
  padding: 0;
  appearance: textfield;
  font-weight: 800;
}

.noao-pdp-quantity__control input::-webkit-inner-spin-button,
.noao-pdp-quantity__control input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.noao-pdp-actions__primary .noao-product-action,
.noao-pdp-actions__primary .js-noao-add-selection {
  width: 100%;
}

.noao-pdp .js-noao-add-selection {
  min-height: 50px;
  padding: 13px 18px;
  border: 0;
  border-radius: 15px;
  background:
    linear-gradient(135deg, var(--pdp-blue), #4f87aa);
  box-shadow: 0 12px 28px rgba(80, 135, 171, .22);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    filter .2s ease;
}

.noao-pdp .js-noao-add-selection:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(80, 135, 171, .28);
  filter: brightness(1.03);
}

.noao-pdp .js-noao-add-selection:disabled {
  cursor: wait;
  opacity: .74;
}

.noao-pdp-actions__secondary {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  padding: 11px 15px;
  border: 1px solid var(--pdp-line);
  border-radius: 14px;
  color: var(--pdp-ink);
  background: #fff;
  font-size: 11px;
  font-weight: 850;
  text-decoration: none;
  transition:
    border-color .2s ease,
    transform .2s ease,
    background .2s ease;
}

.noao-pdp-actions__secondary:hover {
  transform: translateY(-2px);
  border-color: #bfd2df;
  background: var(--pdp-mist);
}

.noao-pdp-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid var(--pdp-line);
  border-radius: 18px;
  background: var(--pdp-line);
}

.noao-pdp-proof > div {
  min-width: 0;
  padding: 17px 15px 15px;
  background: rgba(255,255,255,.94);
}

.noao-pdp-proof__icon {
  display: block;
  margin-bottom: 18px;
  color: var(--pdp-blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
}

.noao-pdp-proof strong,
.noao-pdp-proof small {
  display: block;
}

.noao-pdp-proof strong {
  color: var(--pdp-ink);
  font-size: 11px;
}

.noao-pdp-proof small {
  margin-top: 5px;
  color: var(--pdp-muted);
  font-size: 9px;
  line-height: 1.45;
}

.noao-pdp-module-reassurance {
  margin-top: 18px;
}

.noao-pdp-module-reassurance .noao-product-reassurance {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--pdp-muted);
  font-size: 10px;
}

.noao-pdp-module-reassurance .noao-product-reassurance strong {
  display: none;
}

.noao-pdp-module-reassurance .noao-product-reassurance ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Gallery */

.noao-pdp-gallery {
  position: relative;
}

.noao-pdp-gallery__stage {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 670px;
  place-items: center;
  border: 1px solid var(--pdp-line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 46%, #fff 0, #f7f9fa 46%, #eef3f6 100%);
  box-shadow: var(--pdp-shadow);
}

.noao-pdp-gallery__main {
  display: block;
  width: min(86%, 780px);
  height: auto;
  max-height: 620px;
  object-fit: contain;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}

.noao-pdp-gallery__stage:hover .noao-pdp-gallery__main {
  transform: scale(1.025);
}

.noao-pdp-gallery__zoom {
  position: absolute;
  z-index: 3;
  top: 20px;
  right: 20px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(12,28,40,.12);
  border-radius: 50%;
  background: rgba(255,255,255,.86);
  color: var(--pdp-ink);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.noao-pdp-gallery__thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-top: 12px;
  padding: 2px 2px 8px;
  scrollbar-width: thin;
}

.noao-pdp-gallery__thumb {
  display: grid;
  flex: 0 0 82px;
  width: 82px;
  height: 82px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--pdp-line);
  border-radius: 15px;
  background: #fff;
  cursor: pointer;
  transition:
    border-color .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.noao-pdp-gallery__thumb:hover,
.noao-pdp-gallery__thumb.is-active {
  transform: translateY(-2px);
  border-color: var(--pdp-blue);
  box-shadow: 0 10px 25px rgba(29,63,88,.09);
}

.noao-pdp-gallery__thumb img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.noao-pdp-gallery__empty {
  color: var(--pdp-muted);
  font-weight: 700;
}

.noao-pdp-gallery__modal[hidden] {
  display: none;
}

.noao-pdp-gallery__modal {
  position: fixed;
  z-index: 99999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 40px;
  background: rgba(4, 11, 18, .88);
  backdrop-filter: blur(10px);
}

.noao-pdp-gallery__modal img {
  width: auto;
  max-width: min(1100px, 92vw);
  height: auto;
  max-height: 88vh;
  object-fit: contain;
}

.noao-pdp-gallery__modal-close {
  position: absolute;
  top: 24px;
  right: 28px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
  font-size: 28px;
}

/* Sections */

.noao-pdp-section {
  padding: 104px 0 0;
}

.noao-pdp-section__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 60px;
  align-items: end;
  margin-bottom: 34px;
}

.noao-pdp-section__head h2 {
  max-width: 800px;
  margin: 12px 0 0;
  color: var(--pdp-ink);
  font-size: clamp(36px, 4.2vw, 62px);
  line-height: .98;
  letter-spacing: -.05em;
}

.noao-pdp-section__head > p {
  margin: 0;
  color: var(--pdp-muted);
  font-size: 14px;
  line-height: 1.7;
}

.noao-pdp-key-specs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.noao-pdp-key-spec {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 20px;
  border: 1px solid var(--pdp-line);
  border-radius: 24px;
  background:
    radial-gradient(circle at var(--mx, 80%) var(--my, 15%), rgba(101,154,189,.18), transparent 42%),
    var(--pdp-mist);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.noao-pdp-key-spec:hover {
  transform: translateY(-5px);
  border-color: #c6d7e2;
  box-shadow: 0 20px 42px rgba(21, 51, 72, .09);
}

.noao-pdp-key-spec__number {
  display: block;
  margin-bottom: 52px;
  color: var(--pdp-blue);
  font-size: 10px;
  font-weight: 900;
}

.noao-pdp-key-spec strong,
.noao-pdp-key-spec > span:last-child {
  display: block;
}

.noao-pdp-key-spec strong {
  color: var(--pdp-ink);
  font-size: 14px;
  line-height: 1.3;
}

.noao-pdp-key-spec > span:last-child {
  margin-top: 7px;
  color: var(--pdp-muted);
  font-size: 11px;
  line-height: 1.5;
}

.noao-pdp-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .55fr);
  gap: 24px;
}

.noao-pdp-editorial__copy,
.noao-pdp-editorial__aside {
  border-radius: 28px;
}

.noao-pdp-editorial__copy {
  padding: 48px;
  border: 1px solid var(--pdp-line);
  background: #fff;
  color: #42515d;
  font-size: 15px;
  line-height: 1.8;
}

.noao-pdp-editorial__copy h2,
.noao-pdp-editorial__copy h3,
.noao-pdp-editorial__copy h4 {
  color: var(--pdp-ink);
}

.noao-pdp-editorial__copy img {
  max-width: 100%;
  height: auto;
}

.noao-pdp-editorial__aside {
  align-self: stretch;
  padding: 38px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(217,54,69,.24), transparent 38%),
    linear-gradient(145deg, #0a1721, #102635);
  box-shadow: var(--pdp-shadow);
}

.noao-pdp-editorial__aside .noao-pdp-eyebrow {
  color: #8bb7d2;
}

.noao-pdp-editorial__aside h3 {
  margin: 64px 0 15px;
  color: #fff;
  font-size: 30px;
  line-height: 1.03;
  letter-spacing: -.04em;
}

.noao-pdp-editorial__aside p {
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.7;
}

.noao-pdp-editorial__aside > a {
  display: inline-flex;
  gap: 14px;
  margin-top: 30px;
  align-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.noao-pdp-tech-card {
  overflow: hidden;
  border: 1px solid var(--pdp-line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(18,41,58,.06);
}

.noao-pdp-specs {
  margin: 0;
}

.noao-pdp-specs__row {
  display: grid;
  grid-template-columns: minmax(230px, .42fr) minmax(0, 1fr);
  gap: 34px;
  padding: 19px 28px;
  border-bottom: 1px solid var(--pdp-line);
}

.noao-pdp-specs__row:last-child {
  border-bottom: 0;
}

.noao-pdp-specs__row dt,
.noao-pdp-specs__row dd {
  margin: 0;
}

.noao-pdp-specs__row dt {
  color: #46545f;
  font-size: 12px;
  font-weight: 800;
}

.noao-pdp-specs__row dd {
  color: var(--pdp-ink);
  font-size: 13px;
  line-height: 1.5;
}

.noao-pdp-empty-copy {
  margin: 0;
  padding: 34px;
  color: var(--pdp-muted);
}

.noao-pdp-documents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.noao-pdp-document {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--pdp-line);
  border-radius: 22px;
  background: #fff;
  text-decoration: none;
  transition:
    transform .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}

.noao-pdp-document:hover {
  transform: translateY(-3px);
  border-color: #c0d4df;
  box-shadow: 0 18px 40px rgba(22,55,76,.08);
}

.noao-pdp-document__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: var(--pdp-mist);
  color: var(--pdp-blue-deep);
  font-size: 20px;
}

.noao-pdp-document div small,
.noao-pdp-document div strong,
.noao-pdp-document div span {
  display: block;
}

.noao-pdp-document div small {
  color: var(--pdp-blue);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .14em;
}

.noao-pdp-document div strong {
  margin-top: 5px;
  color: var(--pdp-ink);
  font-size: 13px;
}

.noao-pdp-document div span,
.noao-pdp-document__meta {
  margin-top: 4px;
  color: var(--pdp-muted);
  font-size: 10px;
}

.noao-pdp-extra {
  padding: 36px;
  border: 1px solid var(--pdp-line);
  border-radius: 24px;
}

.noao-pdp-accessories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.noao-pdp-accessory {
  overflow: hidden;
  border: 1px solid var(--pdp-line);
  border-radius: 24px;
  background: #fff;
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.noao-pdp-accessory:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(20, 52, 74, .09);
}

.noao-pdp-accessory__media {
  display: grid;
  height: 220px;
  place-items: center;
  background: var(--pdp-mist);
}

.noao-pdp-accessory__media img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.noao-pdp-accessory__body {
  padding: 20px;
}

.noao-pdp-accessory__body > small {
  color: var(--pdp-blue);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .12em;
}

.noao-pdp-accessory__body h3 {
  margin: 8px 0 3px;
  font-size: 16px;
  line-height: 1.15;
}

.noao-pdp-accessory__body h3 a {
  text-decoration: none;
}

.noao-pdp-accessory__body > span,
.noao-pdp-accessory__body > p {
  color: var(--pdp-muted);
  font-size: 10px;
}

.noao-pdp-accessory__body > p {
  margin: 14px 0 0;
}

.noao-pdp-accessory__actions {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.noao-pdp-accessory__actions > a {
  font-size: 11px;
  font-weight: 850;
  text-decoration: none;
}

.noao-pdp-accessory__actions .js-noao-add-selection {
  min-height: 42px;
  border-radius: 12px;
  font-size: 10px;
}

.noao-pdp-project {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
  margin-top: 110px;
  padding: 52px;
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 8%, rgba(166,31,85,.32), transparent 30%),
    linear-gradient(135deg, #08131c, #102837);
  box-shadow: 0 26px 70px rgba(9,26,38,.18);
}

.noao-pdp-project .noao-pdp-eyebrow {
  color: #8fbcd7;
}

.noao-pdp-project h2 {
  max-width: 780px;
  margin: 16px 0 10px;
  color: #fff;
  font-size: clamp(34px, 4vw, 58px);
  line-height: .98;
  letter-spacing: -.05em;
}

.noao-pdp-project p {
  max-width: 650px;
  margin: 0;
  color: rgba(255,255,255,.64);
  font-size: 14px;
  line-height: 1.7;
}

.noao-pdp-project__actions {
  display: grid;
  gap: 14px;
  min-width: 230px;
}

.noao-pdp-project__actions a {
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.noao-pdp-project__primary {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  background: var(--pdp-blue);
  box-shadow: 0 12px 30px rgba(101,154,189,.22);
}

.noao-pdp-footer-modules {
  padding: 70px 0 100px;
}

.noao-pdp-mobile-bar {
  display: none;
}

/* Keep legacy module UI compatible with Product V1. */
.noao-pdp .noao-product-action {
  margin: 0;
}

.noao-pdp .noao-product-action .btn {
  white-space: normal;
}

/* Responsive */

@media (max-width: 1180px) {
  .noao-pdp__container {
    width: min(1160px, calc(100% - 36px));
  }

  .noao-pdp-hero {
    grid-template-columns: minmax(0, 1fr) minmax(350px, .82fr);
    gap: 20px;
  }

  .noao-pdp-hero__summary-inner {
    padding: 28px 26px 25px;
  }

  .noao-pdp-gallery__stage {
    min-height: 590px;
  }

  .noao-pdp-key-specs {
    grid-template-columns: repeat(3, 1fr);
  }

  .noao-pdp-accessories {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .noao-pdp {
    padding-top: 8px;
  }

  .noao-pdp__container {
    width: min(100% - 28px, 820px);
  }

  .noao-pdp-hero {
    grid-template-columns: 1fr;
  }

  .noao-pdp-hero__summary-inner {
    position: static;
  }

  .noao-pdp-gallery__stage {
    min-height: min(72vw, 600px);
  }

  .noao-pdp-title {
    font-size: clamp(42px, 8vw, 64px);
  }

  .noao-pdp-section {
    padding-top: 80px;
  }

  .noao-pdp-section__head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .noao-pdp-editorial {
    grid-template-columns: 1fr;
  }

  .noao-pdp-editorial__aside h3 {
    margin-top: 42px;
  }

  .noao-pdp-project {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .noao-pdp-project__actions {
    min-width: 0;
  }

  .noao-pdp-mobile-bar {
    position: fixed;
    z-index: 9990;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 10px 10px 10px 16px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 20px;
    background: rgba(8, 19, 28, .94);
    box-shadow: 0 18px 50px rgba(2,10,17,.28);
    color: #fff;
    backdrop-filter: blur(16px);
    transition:
      transform .25s ease,
      opacity .25s ease;
  }

  .noao-pdp-mobile-bar.is-hidden {
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
  }

  .noao-pdp-mobile-bar > div:first-child {
    min-width: 0;
  }

  .noao-pdp-mobile-bar small,
  .noao-pdp-mobile-bar strong {
    display: block;
  }

  .noao-pdp-mobile-bar small {
    color: #90bad3;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: .13em;
  }

  .noao-pdp-mobile-bar strong {
    overflow: hidden;
    margin-top: 2px;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .noao-pdp-mobile-bar .js-noao-add-selection {
    width: auto;
    min-height: 43px;
    padding: 10px 14px;
    border-radius: 13px;
    font-size: 10px;
  }
}

@media (max-width: 640px) {
  .noao-pdp__container {
    width: calc(100% - 22px);
  }

  .noao-pdp-breadcrumb {
    padding-bottom: 14px;
    font-size: 10px;
  }

  .noao-pdp-gallery__stage {
    min-height: 92vw;
    border-radius: 22px;
  }

  .noao-pdp-gallery__main {
    width: 91%;
    max-height: 86vw;
  }

  .noao-pdp-gallery__zoom {
    top: 12px;
    right: 12px;
    width: 39px;
    height: 39px;
  }

  .noao-pdp-gallery__thumb {
    flex-basis: 68px;
    width: 68px;
    height: 68px;
  }

  .noao-pdp-gallery__thumb img {
    width: 60px;
    height: 60px;
  }

  .noao-pdp-hero__summary-inner {
    padding: 28px 20px 22px;
    border-radius: 22px;
  }

  .noao-pdp-title {
    font-size: clamp(38px, 13vw, 54px);
  }

  .noao-pdp-lead {
    font-size: 14px;
  }

  .noao-pdp-actions {
    grid-template-columns: 1fr;
  }

  .noao-pdp-quantity {
    grid-row: auto;
  }

  .noao-pdp-quantity__control {
    max-width: 160px;
  }

  .noao-pdp-proof {
    grid-template-columns: 1fr;
  }

  .noao-pdp-proof > div {
    display: grid;
    grid-template-columns: 32px 1fr;
    column-gap: 10px;
  }

  .noao-pdp-proof__icon {
    grid-row: span 2;
    margin: 0;
  }

  .noao-pdp-module-reassurance .noao-product-reassurance ul {
    display: grid;
  }

  .noao-pdp-section {
    padding-top: 68px;
  }

  .noao-pdp-section__head {
    margin-bottom: 22px;
  }

  .noao-pdp-section__head h2 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .noao-pdp-key-specs {
    grid-template-columns: 1fr;
  }

  .noao-pdp-key-spec {
    min-height: 150px;
  }

  .noao-pdp-key-spec__number {
    margin-bottom: 34px;
  }

  .noao-pdp-editorial__copy,
  .noao-pdp-editorial__aside {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .noao-pdp-specs__row {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 17px 20px;
  }

  .noao-pdp-documents,
  .noao-pdp-accessories {
    grid-template-columns: 1fr;
  }

  .noao-pdp-document {
    grid-template-columns: 42px 1fr;
  }

  .noao-pdp-document__meta {
    grid-column: 2;
  }

  .noao-pdp-project {
    margin-top: 80px;
    padding: 34px 24px;
    border-radius: 24px;
  }

  .noao-pdp-footer-modules {
    padding-bottom: 120px;
  }

  .noao-pdp-mobile-bar {
    grid-template-columns: 1fr;
  }

  .noao-pdp-mobile-bar > div:first-child {
    display: none;
  }

  .noao-pdp-mobile-bar .js-noao-add-selection,
  .noao-pdp-mobile-bar .noao-product-action {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .noao-pdp *,
  .noao-pdp *::before,
  .noao-pdp *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

/* ==========================================================================
   NOA-O Product V1.1 — 0.9.2
   ========================================================================== */

.noao-pdp {
  padding-top: 34px;
}

/* Quote-first product page: retail widgets are intentionally absent. */
.noao-pdp .social-sharing,
.noao-pdp .product-comments-additional-info,
.noao-pdp .product-additional-info,
.noao-pdp .product-availability,
.noao-pdp .product-availability-date,
.noao-pdp [class*="notify"],
.noao-pdp [id*="notify"],
.noao-pdp .js-mailalert {
  display: none !important;
}

/* The advisory card stays compact instead of matching the long description. */
.noao-pdp-editorial {
  align-items: start;
}

.noao-pdp-editorial__aside {
  position: sticky;
  top: 118px;
  align-self: start;
  min-height: 360px;
}

.noao-pdp-editorial__aside h3 {
  margin-top: 54px;
}

.noao-pdp-derived-hidden {
  display: none !important;
}

/* Technical data extracted from historical descriptions. */
.noao-pdp-derived-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.noao-pdp-tech-group {
  min-height: 190px;
  padding: 26px 28px;
  border-right: 1px solid var(--pdp-line);
  border-bottom: 1px solid var(--pdp-line);
  background:
    radial-gradient(circle at 92% 8%, rgba(101, 154, 189, .10), transparent 38%),
    #fff;
}

.noao-pdp-tech-group:nth-child(2n) {
  border-right: 0;
}

.noao-pdp-tech-group__number {
  display: block;
  margin-bottom: 34px;
  color: var(--pdp-blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
}

.noao-pdp-tech-group h3 {
  margin: 0 0 15px;
  color: var(--pdp-ink);
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.noao-pdp-tech-group ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.noao-pdp-tech-group li {
  position: relative;
  padding-left: 14px;
  color: #61707c;
  font-size: 12px;
  line-height: 1.55;
}

.noao-pdp-tech-group li::before {
  position: absolute;
  top: .68em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  content: "";
  background: var(--pdp-blue);
}

/* Native footer modules: keep only useful related-product content. */
.noao-pdp-footer-modules {
  padding: 84px 0 100px;
}

.noao-pdp-footer-modules:empty {
  display: none;
}

.noao-pdp-footer-modules > .noao-pdp-related-module {
  margin: 0;
  padding: 0;
}

.noao-pdp-footer-modules > .noao-pdp-related-module > h2,
.noao-pdp-footer-modules > .noao-pdp-related-module > h3,
.noao-pdp-footer-modules > .noao-pdp-related-module .products-section-title {
  margin: 0 0 28px;
  color: var(--pdp-ink);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -.045em;
  text-align: left;
}

.noao-pdp-footer-modules .products {
  gap: 14px;
}

.noao-pdp-footer-modules .product-miniature {
  overflow: hidden;
  border: 1px solid var(--pdp-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(18, 42, 59, .05);
  transition:
    transform .24s ease,
    box-shadow .24s ease,
    border-color .24s ease;
}

.noao-pdp-footer-modules .product-miniature:hover {
  transform: translateY(-5px);
  border-color: #c8d9e3;
  box-shadow: 0 22px 48px rgba(18, 42, 59, .10);
}

.noao-pdp-footer-modules .product-miniature img {
  transition: transform .4s cubic-bezier(.2, .8, .2, 1);
}

.noao-pdp-footer-modules .product-miniature:hover img {
  transform: scale(1.035);
}

@media (max-width: 900px) {
  .noao-pdp-editorial__aside {
    position: static;
    min-height: 0;
  }

  .noao-pdp-derived-specs {
    grid-template-columns: 1fr;
  }

  .noao-pdp-tech-group,
  .noao-pdp-tech-group:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .noao-pdp {
    padding-top: 18px;
  }

  .noao-pdp-tech-group {
    min-height: 0;
    padding: 22px 20px;
  }

  .noao-pdp-tech-group__number {
    margin-bottom: 22px;
  }

  .noao-pdp-footer-modules {
    padding-top: 68px;
  }
}

/* ==========================================================================
   NOA-O Catalogue V2 — 0.10.0
   ========================================================================== */

.noao-catalog-v2 {
  --cat-ink: #0d1720;
  --cat-ink-soft: #132735;
  --cat-blue: #6399bb;
  --cat-blue-dark: #315c77;
  --cat-red: #d93a36;
  --cat-magenta: #ad2d58;
  --cat-line: #dce7ed;
  --cat-soft: #f4f7f9;
  --cat-muted: #70818d;
}

.noao-catalog-v2 a {
  text-decoration: none;
}

.noao-catalog-v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--cat-blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
}

.noao-catalog-v2-eyebrow::before {
  width: 18px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--cat-red), var(--cat-blue));
}

.noao-catalog-v2-section-head {
  display: grid;
  grid-template-columns: 1fr minmax(260px, .48fr);
  gap: 70px;
  align-items: end;
  margin: 0 0 32px;
}

.noao-catalog-v2-section-head h2 {
  margin: 10px 0 0;
  color: var(--cat-ink);
  font-size: clamp(36px, 4vw, 56px);
  line-height: .98;
  letter-spacing: -.055em;
}

.noao-catalog-v2-section-head > p {
  margin: 0 0 4px;
  color: var(--cat-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* Hero */
.noao-catalog-v2-hero {
  --mx: 50%;
  --my: 50%;
  position: relative;
  min-height: 390px;
  margin: 28px 0 26px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  border-radius: 30px;
  background: var(--cat-ink);
  color: #fff;
  box-shadow: 0 28px 82px rgba(13, 23, 32, .12);
}

.noao-catalog-v2-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(99, 153, 187, .13), transparent 28%),
    radial-gradient(circle at 88% 7%, rgba(217, 58, 54, .13), transparent 22%);
}

.noao-catalog-v2-hero__content {
  position: relative;
  z-index: 1;
  padding: 48px 50px;
}

.noao-catalog-v2-hero__kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cat-blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
}

.noao-catalog-v2-hero__line {
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--cat-red), var(--cat-blue));
}

.noao-catalog-v2-hero h1 {
  max-width: 680px;
  margin: 24px 0 0;
  color: #fff;
  font-size: clamp(48px, 5.2vw, 72px);
  line-height: .94;
  letter-spacing: -.065em;
}

.noao-catalog-v2-hero__description {
  max-width: 670px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 15px;
  line-height: 1.7;
}

.noao-catalog-v2-hero__description p {
  color: inherit;
}

.noao-catalog-v2-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.noao-catalog-v2-hero__proof span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  color: rgba(255, 255, 255, .68);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.noao-catalog-v2-hero__panel {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, .08);
  background:
    linear-gradient(145deg, rgba(23, 57, 78, .88), rgba(12, 25, 34, .96));
}

.noao-catalog-v2-hero__grid {
  position: absolute;
  inset: 0;
  opacity: .42;
  background:
    linear-gradient(rgba(99, 153, 187, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 153, 187, .08) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}

.noao-catalog-v2-hero__panel-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, .38);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .14em;
}

.noao-catalog-v2-hero__metric {
  position: relative;
  margin: auto 0;
  padding: 40px 0;
}

.noao-catalog-v2-hero__metric strong,
.noao-catalog-v2-hero__metric span {
  display: block;
}

.noao-catalog-v2-hero__metric strong {
  color: #fff;
  font-size: clamp(58px, 6vw, 84px);
  line-height: .9;
  letter-spacing: -.07em;
}

.noao-catalog-v2-hero__metric span {
  max-width: 210px;
  margin-top: 12px;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  line-height: 1.5;
}

.noao-catalog-v2-hero__service {
  position: relative;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.noao-catalog-v2-hero__service span,
.noao-catalog-v2-hero__service strong,
.noao-catalog-v2-hero__service small {
  display: block;
}

.noao-catalog-v2-hero__service span {
  color: var(--cat-blue);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .13em;
}

.noao-catalog-v2-hero__service strong {
  margin-top: 7px;
  color: #fff;
  font-size: 22px;
  letter-spacing: -.03em;
}

.noao-catalog-v2-hero__service small {
  margin-top: 6px;
  color: rgba(255, 255, 255, .42);
  font-size: 9px;
  line-height: 1.5;
}

/* Family cards */
.noao-catalog-v2-families {
  padding: 34px 0 56px;
}

.noao-catalog-v2-family-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.noao-catalog-v2-family {
  --mx: 50%;
  --my: 50%;
  position: relative;
  min-height: 180px;
  overflow: hidden;
  padding: 20px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--cat-line);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(99, 153, 187, .035), transparent 50%),
    #fff;
  color: var(--cat-ink);
  transition:
    transform .28s cubic-bezier(.2, .8, .2, 1),
    box-shadow .28s ease,
    border-color .28s ease,
    background .28s ease;
}

.noao-catalog-v2-family::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(99, 153, 187, .20), transparent 34%);
  transition: opacity .25s ease;
}

.noao-catalog-v2-family:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 153, 187, .38);
  background: #fff;
  box-shadow: 0 24px 60px rgba(13, 23, 32, .09);
}

.noao-catalog-v2-family:hover::before {
  opacity: 1;
}

.noao-catalog-v2-family__number,
.noao-catalog-v2-family__arrow,
.noao-catalog-v2-family__body {
  position: relative;
  z-index: 1;
}

.noao-catalog-v2-family__number {
  color: var(--cat-blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
}

.noao-catalog-v2-family__arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--cat-line);
  border-radius: 50%;
  font-size: 14px;
  transition: transform .25s ease, background .25s ease;
}

.noao-catalog-v2-family:hover .noao-catalog-v2-family__arrow {
  transform: rotate(8deg) scale(1.05);
  background: var(--cat-ink);
  color: #fff;
}

.noao-catalog-v2-family__body {
  margin-top: auto;
}

.noao-catalog-v2-family strong,
.noao-catalog-v2-family small {
  display: block;
}

.noao-catalog-v2-family strong {
  max-width: 190px;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -.025em;
}

.noao-catalog-v2-family small {
  margin-top: 7px;
  color: var(--cat-muted);
  font-size: 10px;
}

/* Root catalogue onboarding */
.noao-catalog-v2-onboarding {
  padding: 52px 0 92px;
}

.noao-catalog-v2-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.noao-catalog-v2-steps article {
  --mx: 50%;
  --my: 50%;
  position: relative;
  min-height: 225px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--cat-line);
  border-radius: 24px;
  background: var(--cat-soft);
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
}

.noao-catalog-v2-steps article::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(99, 153, 187, .18), transparent 32%);
  transition: opacity .25s ease;
}

.noao-catalog-v2-steps article:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 22px 54px rgba(13, 23, 32, .08);
}

.noao-catalog-v2-steps article:hover::before {
  opacity: 1;
}

.noao-catalog-v2-steps span,
.noao-catalog-v2-steps strong,
.noao-catalog-v2-steps p {
  position: relative;
  z-index: 1;
  display: block;
}

.noao-catalog-v2-steps span {
  color: var(--cat-blue);
  font-size: 9px;
  font-weight: 900;
}

.noao-catalog-v2-steps strong {
  margin-top: 64px;
  color: var(--cat-ink);
  font-size: 24px;
  letter-spacing: -.035em;
}

.noao-catalog-v2-steps p {
  margin: 10px 0 0;
  color: var(--cat-muted);
  font-size: 12px;
  line-height: 1.6;
}

.noao-catalog-v2-onboarding__cta {
  margin-top: 18px;
  padding: 30px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 10%, rgba(173, 45, 88, .18), transparent 28%),
    linear-gradient(135deg, #0d1720, #132735);
  color: #fff;
}

.noao-catalog-v2-onboarding__cta span,
.noao-catalog-v2-onboarding__cta strong {
  display: block;
}

.noao-catalog-v2-onboarding__cta span {
  color: rgba(255, 255, 255, .52);
  font-size: 11px;
}

.noao-catalog-v2-onboarding__cta strong {
  margin-top: 4px;
  color: #fff;
  font-size: 25px;
  letter-spacing: -.03em;
}

.noao-catalog-v2-onboarding__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.noao-catalog-v2-link {
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

/* Product listing */
.noao-catalog-v2-products {
  margin-top: 0 !important;
  padding: 42px 0 96px;
}

.noao-catalog-v2-products__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  margin: 0 0 24px;
}

.noao-catalog-v2-products__head h2 {
  margin: 8px 0 0;
  color: var(--cat-ink);
  font-size: clamp(34px, 3.6vw, 50px);
  line-height: 1;
  letter-spacing: -.05em;
}

.noao-catalog-v2-products__head > p {
  margin: 0 0 5px;
  color: var(--cat-muted);
  font-size: 12px;
}

/* Toolbar and filters inherited from PrestaShop. */
body#category .products-selection,
body#search .products-selection {
  min-height: 66px;
  margin: 0 0 28px !important;
  padding: 11px 14px !important;
  display: flex;
  align-items: center;
  border: 1px solid var(--cat-line);
  border-radius: 20px;
  background: #f8fafb;
}

body#category .products-selection .sort-by-row,
body#search .products-selection .sort-by-row {
  align-items: center;
}

body#category .products-sort-order .select-title,
body#search .products-sort-order .select-title {
  min-height: 42px;
  padding: 10px 16px !important;
  border: 1px solid var(--cat-line) !important;
  border-radius: 999px !important;
  background: #fff !important;
  box-shadow: none !important;
  color: var(--cat-ink) !important;
}

body#category .products-sort-order .dropdown-menu,
body#search .products-sort-order .dropdown-menu {
  overflow: hidden;
  margin-top: 7px;
  border: 1px solid var(--cat-line);
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(13, 23, 32, .10);
}

body#category .faceted-overlay,
body#category .facet,
body#category #search_filters {
  border-color: var(--cat-line);
}

body#category .active_filters {
  margin-bottom: 24px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f4f7f9;
}

/* Grid */
body#category #js-product-list .products,
body#search #js-product-list .products {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
  margin: 0 !important;
}

body#category #js-product-list .product-miniature,
body#search #js-product-list .product-miniature,
.noao-catalog-v2-card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden;
  border: 1px solid var(--cat-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(13, 23, 32, .035);
  transition:
    transform .30s cubic-bezier(.2, .8, .2, 1),
    box-shadow .30s ease,
    border-color .30s ease;
}

.noao-catalog-v2-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(99, 153, 187, .09), transparent 35%);
  transition: opacity .25s ease;
}

.noao-catalog-v2-card:hover {
  transform: translateY(-7px);
  border-color: rgba(99, 153, 187, .42);
  box-shadow: 0 28px 66px rgba(13, 23, 32, .10);
}

.noao-catalog-v2-card:hover::before {
  opacity: 1;
}

.noao-catalog-v2-card__media,
.noao-catalog-v2-card__body {
  position: relative;
  z-index: 1;
}

.noao-catalog-v2-card__media {
  width: 100%;
  aspect-ratio: 1.24 / 1;
  min-height: 0 !important;
  max-height: 300px !important;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 48%, #fff 0 40%, #f3f6f7 100%);
}

.noao-catalog-v2-card__media::after {
  position: absolute;
  inset: auto 18px 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--cat-line), transparent);
}

.noao-catalog-v2-card__media img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  max-height: 100% !important;
  padding: 24px;
  display: block;
  object-fit: contain !important;
  object-position: center !important;
  transform: scale(.91);
  filter: saturate(.96);
  transition:
    transform .42s cubic-bezier(.2, .8, .2, 1),
    filter .35s ease;
}

.noao-catalog-v2-card:hover .noao-catalog-v2-card__media img {
  transform: scale(.98);
  filter: saturate(1.03);
}

.noao-catalog-v2-card__badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 7px 9px;
  border: 1px solid rgba(13, 23, 32, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .84);
  color: var(--cat-blue-dark);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .09em;
  backdrop-filter: blur(8px);
}

.noao-catalog-v2-card__view {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  background: rgba(13, 23, 32, .92);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(7px);
  transition: opacity .25s ease, transform .25s ease;
}

.noao-catalog-v2-card:hover .noao-catalog-v2-card__view {
  opacity: 1;
  transform: translateY(0);
}

.noao-catalog-v2-card__body {
  min-height: 220px !important;
  padding: 20px 20px 18px;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.noao-catalog-v2-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--cat-muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.noao-catalog-v2-card__meta span:first-child {
  color: var(--cat-blue-dark);
}

.noao-catalog-v2-card__title {
  margin-top: 11px;
  color: var(--cat-ink);
  font-size: 19px;
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -.03em;
  overflow-wrap: anywhere;
}

.noao-catalog-v2-card__title:hover {
  color: var(--cat-blue-dark);
}

.noao-catalog-v2-card__promise {
  margin: 9px 0 0;
  color: var(--cat-muted);
  font-size: 10px;
  line-height: 1.5;
}

.noao-catalog-v2-card__footer {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--cat-line);
}

.noao-catalog-v2-card__footer strong,
.noao-catalog-v2-card__footer span {
  display: block;
}

.noao-catalog-v2-card__footer strong {
  color: var(--cat-blue-dark);
  font-size: 10px;
}

.noao-catalog-v2-card__footer div > span {
  margin-top: 4px;
  color: var(--cat-muted);
  font-size: 9px;
}

.noao-catalog-v2-card__arrow {
  color: var(--cat-ink);
  font-size: 17px;
  transition: transform .25s ease;
}

.noao-catalog-v2-card:hover .noao-catalog-v2-card__arrow {
  transform: translateX(5px);
}

/* Kill inherited card geometry after AJAX refreshes. */
.noao-catalog-v2-card .product-miniature__top,
.noao-catalog-v2-card .product-miniature__bottom,
.noao-catalog-v2-card .product-miniature__inner,
.noao-catalog-v2-card picture,
.noao-catalog-v2-card figure {
  min-height: 0 !important;
  height: auto !important;
  padding-top: 0 !important;
  margin: 0 !important;
}

/* Pagination */
body#category .pagination,
body#search .pagination {
  margin-top: 38px;
}

body#category .pagination .page-list,
body#search .pagination .page-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

body#category .pagination a,
body#search .pagination a {
  min-width: 38px;
  min-height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--cat-line);
  border-radius: 50%;
  color: var(--cat-ink);
}

body#category .pagination .current a,
body#search .pagination .current a {
  background: var(--cat-ink);
  color: #fff;
}

/* Empty state */
.noao-catalog-v2-empty {
  padding: 70px 36px;
  border: 1px solid var(--cat-line);
  border-radius: 28px;
  background: var(--cat-soft);
  text-align: center;
}

.noao-catalog-v2-empty h2 {
  max-width: 650px;
  margin: 12px auto 0;
  color: var(--cat-ink);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -.05em;
}

.noao-catalog-v2-empty p {
  max-width: 560px;
  margin: 18px auto 24px;
  color: var(--cat-muted);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 1100px) {
  .noao-catalog-v2-family-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body#category #js-product-list .products,
  body#search #js-product-list .products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 820px) {
  .noao-catalog-v2-section-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .noao-catalog-v2-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 24px;
  }

  .noao-catalog-v2-hero__content {
    padding: 40px 28px 36px;
  }

  .noao-catalog-v2-hero h1 {
    font-size: clamp(42px, 10vw, 60px);
  }

  .noao-catalog-v2-hero__panel {
    min-height: 250px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
  }

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

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

  .noao-catalog-v2-steps {
    grid-template-columns: 1fr;
  }

  .noao-catalog-v2-steps article {
    min-height: 180px;
  }

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

  .noao-catalog-v2-onboarding__cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .noao-catalog-v2-products__head {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .noao-catalog-v2-hero {
    margin-top: 14px;
  }

  .noao-catalog-v2-hero__content {
    padding: 34px 22px 30px;
  }

  .noao-catalog-v2-hero__proof {
    display: grid;
    grid-template-columns: 1fr;
  }

  .noao-catalog-v2-hero__proof span {
    width: max-content;
  }

  .noao-catalog-v2-hero__panel {
    min-height: 220px;
    padding: 24px 22px;
  }

  .noao-catalog-v2-family-grid {
    grid-template-columns: 1fr;
  }

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

  body#category #js-product-list .products,
  body#search #js-product-list .products {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

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

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

  .noao-catalog-v2-onboarding__actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .noao-catalog-v2-onboarding__actions .noao-btn {
    width: 100%;
  }

  body#category .products-selection,
  body#search .products-selection {
    border-radius: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .noao-catalog-v2 *,
  .noao-catalog-v2-card {
    transition: none !important;
  }
}


/* NOA-O Catalogue V2.1 — finition 0.10.1
   Micro-corrections de densité, hiérarchie et interactions. */

.noao-catalog-v2-family {
  isolation: isolate;
}

.noao-catalog-v2-family::after {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 3px;
  content: "";
  z-index: 1;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(
    90deg,
    var(--cat-blue) 0 54%,
    var(--cat-red) 54% 77%,
    var(--cat-magenta) 77% 100%
  );
  opacity: .78;
  transform: scaleX(.12);
  transform-origin: left center;
  transition:
    transform .34s cubic-bezier(.2, .8, .2, 1),
    opacity .28s ease;
}

.noao-catalog-v2-family:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.noao-catalog-v2-family:hover .noao-catalog-v2-family__body {
  transform: translateY(-2px);
}

.noao-catalog-v2-family__body {
  transition: transform .28s cubic-bezier(.2, .8, .2, 1);
}

/* Compacte la transition familles → produits sans casser la respiration. */
.noao-catalog-v2-families {
  padding-bottom: 34px;
}

.noao-catalog-v2-products {
  padding-top: 24px;
}

/* Le titre "36 produits" suffit : on supprime la répétition native PrestaShop. */
body#category .noao-catalog-v2-products .products-selection .total-products {
  display: none !important;
}

body#category .noao-catalog-v2-products .products-selection {
  justify-content: flex-end;
}

body#category .noao-catalog-v2-products .products-selection .sort-by-row {
  width: auto;
  margin-left: auto;
}

/* Cartes catalogue : interaction plus nette, sans effet gadget. */
.noao-catalog-v2-card__media img {
  will-change: transform;
}

.noao-catalog-v2-card:hover .noao-catalog-v2-card__media img {
  transform: translateY(-6px) scale(1);
}

.noao-catalog-v2-card__view {
  box-shadow: 0 12px 28px rgba(13, 23, 32, .18);
}

.noao-catalog-v2-card__view span {
  transition: transform .25s ease;
}

.noao-catalog-v2-card:hover .noao-catalog-v2-card__view span {
  transform: translate(2px, -2px);
}

.noao-catalog-v2-card:hover .noao-catalog-v2-card__title {
  color: var(--cat-blue-dark);
}

@media (max-width: 820px) {
  .noao-catalog-v2-families {
    padding-bottom: 28px;
  }

  .noao-catalog-v2-products {
    padding-top: 20px;
  }

  body#category .noao-catalog-v2-products .products-selection {
    justify-content: stretch;
  }

  body#category .noao-catalog-v2-products .products-selection .sort-by-row {
    width: 100%;
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .noao-catalog-v2-family::after,
  .noao-catalog-v2-family__body,
  .noao-catalog-v2-card__view span {
    transition: none !important;
  }
}

/* ==========================================================================
   NOA-O Catalogue V2.1.1 — 0.10.2 corrective
   ========================================================================== */

/* Supprime le compteur natif PrestaShop redondant, quelle que soit sa
   position exacte dans products-top.tpl. */
body#category .noao-catalog-v2-products .total-products,
body#category .noao-catalog-v2-products #js-product-list-top .total-products,
body#category .noao-catalog-v2-products .products-selection .total-products {
  display: none !important;
}

/* Le listing est la seule source de comptage visible. */
body#category .noao-catalog-v2-products .products-selection {
  justify-content: flex-end;
}

/* Évite qu'un retour automatique sur #products place son titre sous le header
   sticky après un tri, un filtre ou une navigation interne. */
body#category #products.noao-catalog-v2-products,
body#category .noao-catalog-v2-products__head {
  scroll-margin-top: 112px;
}

/* Garde une respiration minimale sous le header lors des retours au listing. */
body#category #products.noao-catalog-v2-products {
  position: relative;
}

@media (max-width: 991px) {
  body#category #products.noao-catalog-v2-products,
  body#category .noao-catalog-v2-products__head {
    scroll-margin-top: 92px;
  }
}

