.products-page {
  --products-bg: #050504;
  --products-panel: rgba(12, 12, 10, .82);
  --products-ink: #f7f5ef;
  --products-muted: rgba(247, 245, 239, .66);
  --products-soft: rgba(247, 245, 239, .08);
  --products-line: rgba(247, 245, 239, .13);
  --products-lime: #c9ff47;
  background:
    radial-gradient(circle at 72% 0%, rgba(201, 255, 71, .22), transparent 22%),
    radial-gradient(circle at 88% 16%, rgba(132, 115, 255, .18), transparent 24%),
    linear-gradient(180deg, #050504 0%, #080806 100%);
  color: var(--products-ink);
}

.products-page .products-nav {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 80;
  background: transparent;
  border: 0;
}

.products-page .container.nav-inner {
  width: min(1180px, calc(100% - 48px));
  min-height: 72px;
  padding: 8px 10px 8px 16px;
  border: 1px solid var(--products-line);
  border-radius: 999px;
  background: rgba(5, 5, 3, .78);
  backdrop-filter: blur(18px);
}

.products-page .products-brand {
  width: 136px;
  min-height: 54px;
  justify-content: center;
  border: 1px solid rgba(245, 244, 240, .12);
  border-radius: 22px;
  background: rgba(0, 0, 0, .62);
}

.products-page .woaw-logo-wordmark {
  width: 104px;
  height: auto;
}

.products-mobile-menu {
  display: none;
}

.products-shop {
  min-height: 100svh;
  padding: 126px 0 120px;
  overflow: clip;
}

.products-shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(292px, 340px);
  gap: 24px;
  align-items: start;
}

.products-shop-main {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(7, 7, 6, .08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 8%, rgba(201, 255, 71, .34), transparent 26%),
    linear-gradient(180deg, rgba(247, 245, 239, .98), rgba(232, 222, 207, .94));
  color: #14130f;
  box-shadow: 0 26px 80px rgba(0, 0, 0, .22);
}

.products-shop-hero {
  max-width: 760px;
  padding: 18px 0 26px;
}

.products-kicker {
  margin: 0 0 10px;
  color: #587000;
  font-family: var(--font-mono, monospace);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.products-shop-hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(44px, 5.2vw, 78px);
  line-height: .94;
  letter-spacing: 0;
}

.products-lead {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(20, 19, 15, .72);
  font-size: 18px;
  line-height: 1.45;
}

.products-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.products-primary,
.products-secondary,
.products-offer-button {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 850;
}

.products-primary,
.products-offer-button {
  background: linear-gradient(135deg, #caff1f 0%, #dbff4f 52%, #bff8ff 100%);
  color: #070706;
}

.products-secondary {
  border: 1px solid rgba(20, 19, 15, .14);
  color: #14130f;
  background: rgba(20, 19, 15, .04);
}

.products-toolbar {
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(20, 19, 15, .12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.products-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.products-filters button,
.products-search input,
.products-sort select {
  min-height: 38px;
  border: 1px solid rgba(20, 19, 15, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .46);
  color: rgba(20, 19, 15, .78);
  font-size: 12px;
  font-weight: 750;
}

.products-filters button {
  padding: 0 14px;
}

.products-filters button.active {
  border-color: rgba(88, 112, 0, .36);
  background: rgba(201, 255, 71, .3);
  color: #14130f;
}

.products-search,
.products-sort {
  display: grid;
  gap: 5px;
  color: rgba(20, 19, 15, .54);
  font-size: 11px;
  font-weight: 700;
}

.products-search {
  flex: 1 1 220px;
  min-width: 190px;
}

.products-search input {
  width: 100%;
  padding: 0 12px;
  outline: 0;
}

.products-search input:focus {
  border-color: rgba(88, 112, 0, .42);
  box-shadow: 0 0 0 3px rgba(201, 255, 71, .12);
}

.products-search input::placeholder {
  color: rgba(20, 19, 15, .4);
}

.products-sort {
  flex: 0 0 176px;
}

.products-sort select {
  width: 100%;
  padding: 0 36px 0 12px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.product-choice {
  min-height: 300px;
  border: 1px solid var(--products-line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(7, 7, 6, .86);
  color: var(--products-ink);
  display: grid;
  grid-template-rows: 148px 1fr;
  box-shadow: 0 22px 50px rgba(0, 0, 0, .24);
}

.product-choice-media {
  position: relative;
  overflow: hidden;
  background: #161612;
}

.product-choice-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .66));
}

.product-choice-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: .9;
  transition: transform .35s ease;
}

.product-choice:hover .product-choice-media img {
  transform: scale(1.035);
}

.product-choice-badge {
  position: absolute;
  left: 12px;
  bottom: 11px;
  z-index: 1;
  color: var(--choice-accent, var(--products-lime));
  font-family: var(--font-mono, monospace);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-choice-body {
  padding: 12px;
  display: grid;
  align-content: space-between;
  gap: 12px;
}

.product-choice h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.12;
}

.product-choice p {
  margin: 6px 0 0;
  color: var(--products-muted);
  font-size: 13px;
  line-height: 1.35;
}

.product-choice-meta {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: rgba(247, 245, 239, .72);
  font-size: 12px;
}

.product-choice-price {
  margin: 0 !important;
  color: var(--products-ink) !important;
  font-weight: 700;
  line-height: 1.2 !important;
}

.product-choice-delay {
  color: rgba(247, 245, 239, .54);
  white-space: nowrap;
}

.product-choice-actions {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 8px;
  align-items: center;
}

.product-add-button,
.product-detail-link {
  min-height: 34px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 850;
}

.product-add-button {
  border: 0;
  padding: 0 11px;
  background: var(--choice-accent, var(--products-lime));
  color: #070706;
}

.product-add-button.is-added {
  background: rgba(247, 245, 239, .9);
}

.product-detail-link {
  border: 1px solid rgba(245, 244, 240, .16);
  color: #f5f4f0;
}

.products-selection-panel {
  position: sticky;
  top: 108px;
}

.products-selection-card {
  border: 1px solid var(--products-line);
  border-radius: 8px;
  background: rgba(8, 8, 7, .82);
  backdrop-filter: blur(18px);
  padding: 18px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .34);
}

.products-selection-head h2 {
  margin: 0;
  color: var(--products-ink);
  font-size: 22px;
  line-height: 1.1;
}

.products-selection-head h2 span {
  color: var(--products-lime);
}

.products-selection-head p,
.products-selection-note {
  margin: 10px 0 0;
  color: var(--products-muted);
  font-size: 13px;
  line-height: 1.45;
}

.products-selection-list {
  margin: 18px 0;
  display: grid;
  gap: 12px;
}

.products-selection-empty {
  padding: 18px;
  border: 1px dashed rgba(247, 245, 239, .18);
  border-radius: 8px;
  color: rgba(247, 245, 239, .56);
  font-size: 13px;
  line-height: 1.45;
}

.products-selection-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 11px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(247, 245, 239, .1);
}

.products-selection-item img {
  width: 72px;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

.products-selection-item strong {
  display: block;
  margin-top: 3px;
  color: var(--products-ink);
  font-size: 13px;
  line-height: 1.2;
}

.products-selection-item span {
  color: var(--selection-accent, var(--products-lime));
  font-family: var(--font-mono, monospace);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.products-selection-item small {
  display: block;
  margin-top: 4px;
  color: rgba(247, 245, 239, .58);
  font-size: 11px;
}

.products-selection-remove {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(247, 245, 239, .13);
  border-radius: 999px;
  background: rgba(247, 245, 239, .06);
  color: var(--products-ink);
  font-size: 18px;
  line-height: 1;
}

.products-offer-button {
  width: 100%;
}

.products-selection-edit {
  min-height: 42px;
  margin-top: 14px;
  border: 1px solid rgba(201, 255, 71, .24);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--products-lime);
  font-size: 12px;
  font-weight: 800;
}

.products-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: rgba(20, 19, 15, .58);
  font-size: 13px;
  font-weight: 800;
}

.products-reassurance {
  margin-top: 28px;
  border: 1px solid rgba(20, 19, 15, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .35);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.products-reassurance article {
  min-height: 86px;
  padding: 16px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
}

.products-reassurance article + article {
  border-left: 1px solid rgba(20, 19, 15, .1);
}

.products-reassurance span {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(88, 112, 0, .32);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #587000;
  font-size: 20px;
}

.products-reassurance h2 {
  margin: 0;
  font-size: 15px;
  line-height: 1.2;
}

.products-reassurance p {
  margin: 4px 0 0;
  color: rgba(20, 19, 15, .62);
  font-size: 12px;
  line-height: 1.35;
}

.products-process {
  margin-top: 18px;
  border: 1px solid var(--products-line);
  border-radius: 8px;
  padding: 18px;
  background:
    radial-gradient(circle at 12% 12%, rgba(201, 255, 71, .08), transparent 34%),
    rgba(0, 0, 0, .34);
}

.products-process-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.products-process-head p {
  margin: 0;
  color: var(--products-lime);
  font-family: var(--font-mono, monospace);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.products-process-head h2 {
  max-width: 440px;
  margin: 0;
  color: var(--products-ink);
  font-family: var(--font-title, Impact, sans-serif);
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 400;
  line-height: .9;
  text-align: right;
  text-transform: uppercase;
}

.products-process ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.products-process li {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(247, 245, 239, .12);
  border-radius: 8px;
  padding: 18px;
  display: grid;
  align-content: end;
  background:
    linear-gradient(90deg, rgba(5, 5, 3, .68) 0%, rgba(5, 5, 3, .24) 48%, rgba(5, 5, 3, .56) 100%),
    linear-gradient(180deg, rgba(5, 5, 3, .16) 0%, rgba(5, 5, 3, .5) 42%, rgba(5, 5, 3, .96) 100%),
    var(--process-image);
  background-position: center;
  background-size: cover;
}

.products-process li::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(201, 255, 71, .14), transparent 30%),
    linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, .34) 100%);
  pointer-events: none;
}

.products-process li > * {
  position: relative;
  z-index: 1;
}

.products-process .is-select {
  --process-image: url("/assets/univers/trophy/trophee-generique.jpg");
}

.products-process .is-brief {
  --process-image: url("/assets/works/trophe-personnalise-sur-mesure-namur.jpg");
}

.products-process .is-offer {
  --process-image: url("/assets/works/trophe-led-komit-2026-woaw.jpg");
}

.products-process strong {
  color: var(--products-lime);
  font-family: var(--font-title, Impact, sans-serif);
  font-size: 58px;
  font-weight: 400;
  line-height: .82;
}

.products-process span {
  display: block;
  max-width: 260px;
  margin-top: 12px;
  color: var(--products-ink);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.05;
}

.products-process small {
  display: block;
  max-width: 250px;
  margin-top: 10px;
  color: rgba(247, 245, 239, .74);
  font-size: 13px;
  line-height: 1.38;
}

@media (min-width: 1380px) {
  .products-page .container.nav-inner,
  .products-shop-layout {
    width: min(1480px, calc(100% - 64px));
  }
}

@media (max-width: 1080px) {
  .products-shop-layout {
    grid-template-columns: 1fr;
  }

  .products-selection-panel {
    position: static;
  }

  .products-selection-card {
    max-width: none;
  }

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

@media (max-width: 760px) {
  .products-page .links,
  .products-page .nav-contact-link {
    display: none !important;
  }

  .products-page .container.nav-inner {
    width: calc(100% - 24px);
    min-height: 66px;
  }

  .products-page .products-brand {
    width: 124px;
  }

  .products-mobile-menu {
    width: 54px;
    min-height: 42px;
    border: 1px solid rgba(245, 244, 240, .14);
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    background: rgba(245, 244, 240, .04);
    color: var(--products-ink);
    font-size: 10px;
    font-weight: 850;
    text-transform: uppercase;
  }

  .products-shop {
    padding: 104px 0 92px;
  }

  .products-shop-layout {
    width: calc(100% - 24px);
    gap: 18px;
  }

  .products-shop-main {
    padding: 18px 14px;
  }

  .products-shop-hero {
    padding-top: 10px;
  }

  .products-shop-hero h1 {
    font-size: clamp(38px, 13vw, 56px);
    overflow-wrap: anywhere;
  }

  .products-lead {
    font-size: 15px;
  }

  .products-hero-actions,
  .products-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .products-primary,
  .products-secondary {
    width: 100%;
  }

  .products-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .products-filters button {
    flex: 0 0 auto;
  }

  .products-sort {
    flex: none;
  }

  .products-search {
    flex: 0 0 auto;
    min-width: 0;
  }

  .products-search input,
  .products-sort select {
    height: 46px;
    min-height: 46px;
    border-radius: 8px;
    font-size: 14px;
  }

  .products-search input {
    padding: 0 14px;
  }

  .products-reassurance,
  .products-process ol {
    grid-template-columns: 1fr;
  }

  .products-process {
    padding: 12px;
  }

  .products-process-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 10px;
  }

  .products-process-head h2 {
    text-align: left;
  }

  .products-process li {
    min-height: 230px;
    padding: 16px;
  }

  .products-process span {
    font-size: 20px;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .product-choice {
    min-height: 0;
    grid-template-rows: 118px 1fr;
  }

  .product-choice-body {
    padding: 10px;
    gap: 10px;
  }

  .product-choice h3 {
    font-size: clamp(15px, 4.4vw, 18px);
    overflow-wrap: anywhere;
  }

  .product-choice p {
    font-size: 11px;
    line-height: 1.28;
  }

  .product-choice-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    font-size: 10px;
  }

  .product-choice-actions {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .product-add-button,
  .product-detail-link {
    min-height: 32px;
    padding: 0 8px;
    font-size: 10px;
    text-align: center;
  }

  .products-reassurance article + article {
    border-left: 0;
    border-top: 1px solid var(--products-line);
  }

}

.products-faq-access {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 64px;
  padding: 24px 28px;
  border: 1px solid var(--products-line);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, rgba(201, 255, 71, .13), rgba(200, 239, 255, .08)), rgba(247, 245, 239, .045);
}

.products-faq-access p {
  margin: 0;
  color: var(--products-lime);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.products-faq-access h2 {
  margin: 0;
  flex: 1;
  color: var(--products-ivory);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
}

.products-faq-access a {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(201, 255, 71, .36);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--products-lime);
  font-weight: 900;
  text-decoration: none;
  background: rgba(3, 3, 2, .58);
}

@media (max-width: 760px) {
  .products-faq-access {
    width: calc(100% - 24px);
    margin-bottom: 42px;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .products-faq-access a {
    width: 100%;
  }
}
