:root {
  --ink: #29384b;
  --deep: #182538;
  --blue: #62adf5;
  --blue2: #2376ca;
  --yellow: #ffd85d;
  --lilac: #ad8be9;
  --paper: #f7f9fc;
  --white: #fff;
  --mist: #eaf0f7;
  --line: #d9e2ec;
  --muted: #637083;
  --green: #187a58;
  --shadow: 0 18px 48px #26364a1a;
  font-family: 'Avenir Next', Avenir, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--paper);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}
a {
  color: inherit;
}
button,
input {
  font: inherit;
}
.skip {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
}
.skip:focus {
  top: 16px;
}
:focus-visible {
  outline: 3px solid var(--blue2);
  outline-offset: 3px;
}
.nav {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  height: 84px;
  margin: auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
}
.logo {
  display: flex;
  width: 148px;
  height: 60px;
  align-items: center;
  text-decoration: none;
}
.logo img {
  display: block;
  width: 100%;
  height: auto;
}
.nav nav {
  display: flex;
  gap: 32px;
}
.nav nav a {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.nav nav a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.nav-action {
  justify-self: end;
  padding: 11px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.nav-action:hover {
  background: var(--ink);
  color: #fff;
}
.catalog-intro {
  position: relative;
  max-width: 1280px;
  min-height: 650px;
  margin: auto;
  padding: 72px 64px 70px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 7vw;
  align-items: center;
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.catalog-intro:after {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  right: -120px;
  top: -160px;
  border: 52px solid var(--blue);
  border-radius: 50%;
  opacity: 0.13;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
}
.eyebrow span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow:
    16px 0 var(--blue),
    32px 0 var(--lilac);
  margin-right: 32px;
}
.catalog-intro h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(54px, 6.6vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}
.hero-lead {
  max-width: 600px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}
.search {
  max-width: 630px;
  margin-top: 38px;
}
.search label {
  display: block;
  margin-bottom: 9px;
  font-size: 13px;
  font-weight: 800;
}
.search > div:nth-child(2),
.nav-search {
  display: flex;
  padding: 5px;
  border: 2px solid var(--ink);
  border-radius: 15px;
  background: #fff;
  box-shadow: 5px 5px var(--yellow);
}
.search input,
.nav-search input {
  width: 100%;
  min-width: 0;
  padding: 13px 14px;
  border: 0;
  background: transparent;
  color: var(--ink);
  outline: none;
}
.search button,
.nav-search button {
  padding: 0 22px;
  border: 0;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.search button:hover,
.nav-search button:hover {
  background: var(--blue2);
}
.quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.quick button {
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.quick button:hover {
  border-color: var(--blue2);
  background: #eaf5ff;
}
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.trust-list li:before {
  content: '✓';
  margin-right: 7px;
  color: var(--green);
}
.hero-build {
  position: relative;
  z-index: 1;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.build-stage {
  position: relative;
  height: 390px;
  border-radius: 42% 58% 44% 56%/55% 42% 58% 45%;
  background: #edf5ff;
}
.brick {
  position: absolute;
  border: 3px solid var(--deep);
  border-radius: 10px;
  box-shadow: 7px 9px #26364a2e;
}
.brick:before,
.brick:after {
  content: '';
  position: absolute;
  top: -16px;
  width: 29px;
  height: 17px;
  border: 3px solid var(--deep);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: inherit;
}
.brick:before {
  left: 20px;
}
.brick:after {
  right: 20px;
}
.brick-blue {
  width: 158px;
  height: 86px;
  left: 11%;
  bottom: 74px;
  background: var(--blue);
  transform: rotate(-6deg);
}
.brick-yellow {
  width: 134px;
  height: 80px;
  right: 8%;
  bottom: 58px;
  background: var(--yellow);
  transform: rotate(8deg);
}
.brick-lilac {
  width: 142px;
  height: 78px;
  right: 19%;
  top: 75px;
  background: var(--lilac);
  transform: rotate(-3deg);
}
.brick-ink {
  width: 104px;
  height: 70px;
  left: 17%;
  top: 102px;
  background: var(--ink);
}
.price-ticket {
  position: absolute;
  left: 28%;
  top: 40%;
  z-index: 2;
  width: 190px;
  padding: 20px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: #fff;
  box-shadow: 8px 8px var(--ink);
  transform: rotate(3deg);
}
.price-ticket small,
.price-ticket span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}
.price-ticket strong {
  display: block;
  margin: 2px 0;
  color: var(--blue2);
  font-size: 46px;
  letter-spacing: -0.06em;
}
.hero-build > p {
  margin: 14px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.compare {
  max-width: 1280px;
  margin: auto;
  padding: 100px 0;
}
.catalog-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 0 4px 22px;
  border-bottom: 1px solid var(--line);
}
.catalog-heading p,
.method-strip > div > p,
.section-heading p,
.product-description-block > p {
  margin: 0 0 8px;
  color: var(--blue2);
  font-size: 12px;
  font-weight: 800;
}
.catalog-heading h2,
.section-heading h2,
.product-description-block h2,
.alert-panel h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
.status {
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.product-card {
  min-width: 0;
  min-height: 490px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 24px #26364a0d;
}
.product-card:hover {
  border-color: #b8c7d8;
}
.product-visual {
  height: 225px;
  border-radius: 13px;
  background: var(--mist) center/cover;
}
.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 17px 5px 0;
  color: var(--muted);
  font-size: 11px;
}
.product-category {
  color: var(--blue2);
  font-weight: 800;
}
.product-card h3 {
  margin: 8px 5px 5px;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}
.product-description {
  margin: 0 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.product-price {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 10px;
  margin: auto 5px 17px;
}
.product-price small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}
.product-price strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.drop {
  max-width: 135px;
  padding: 6px 9px;
  border-radius: 8px;
  background: #e7f7ef;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}
.view-product {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 15px;
  border-radius: 11px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}
.view-product:hover {
  background: var(--blue2);
}
.view-product span {
  font-size: 22px;
}
.empty {
  grid-column: 1/-1;
  padding: 44px;
  border: 1px dashed var(--line);
  border-radius: 20px;
  background: #fff;
  text-align: center;
  color: var(--muted);
}
.method-strip {
  max-width: 1280px;
  margin: 0 auto 100px;
  padding: 54px 58px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  border-radius: 28px;
  background: var(--ink);
  color: #fff;
}
.method-strip h2 {
  max-width: 430px;
  margin: 0;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.045em;
}
.method-strip > div > p {
  color: #9dccfa;
}
.method-strip ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.method-strip li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #425268;
}
.method-strip li:first-child {
  padding-top: 0;
}
.method-strip li > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
}
.method-strip li:nth-child(2) > span {
  background: var(--blue);
}
.method-strip li:nth-child(3) > span {
  background: var(--lilac);
}
.method-strip strong {
  font-size: 18px;
}
.method-strip p {
  margin: 3px 0 0;
  color: #bfc9d6;
  font-size: 13px;
}
.catalog-footer,
footer {
  max-width: 1280px;
  margin: auto;
  padding: 34px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  border-top: 1px solid var(--line);
}
.catalog-footer p,
footer p {
  margin-right: auto;
  color: var(--muted);
}
footer > div {
  display: flex;
  gap: 24px;
  font-size: 12px;
}
/* Pages produit */
.product-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #f7f9fcf2;
  backdrop-filter: blur(12px);
}
.nav-search {
  width: min(460px, 40vw);
  box-shadow: none;
}
.crumbs {
  max-width: 1280px;
  margin: auto;
  padding: 18px 32px;
  color: var(--muted);
  font-size: 12px;
}
.crumbs span {
  margin: 0 9px;
}
.product-hero {
  max-width: 1280px;
  margin: 0 auto 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.product-photo {
  position: relative;
  min-height: 570px;
  background: var(--mist);
}
.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.match-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}
.product-summary {
  padding: 60px;
}
.product-brand,
.freshness {
  color: var(--blue2);
  font-size: 12px;
  font-weight: 800;
}
.product-summary h1 {
  margin: 14px 0;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}
.product-copy {
  color: var(--muted);
  line-height: 1.6;
}
.price-range {
  margin: 36px 0 14px;
}
.price-range span,
.price-range small {
  display: block;
  color: var(--muted);
}
.price-range strong {
  display: block;
  font-size: 52px;
  letter-spacing: -0.05em;
}
.price-signal {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 12px;
}
.price-signal b {
  padding: 5px 9px;
  border-radius: 7px;
  background: #e7f7ef;
  color: var(--green);
}
.primary-action {
  display: block;
  padding: 15px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
}
.freshness {
  text-align: center;
}
.offers-section,
.product-insights,
.product-description-block {
  max-width: 1280px;
  margin: 20px auto;
  padding: 52px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 26px;
}
.section-heading > span {
  color: var(--muted);
  font-size: 12px;
}
.offer-table-head,
.offer-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.7fr 125px;
  gap: 18px;
  align-items: center;
}
.offer-table-head {
  padding: 10px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}
.offer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.offer-row {
  padding: 20px 10px;
  border-bottom: 1px solid var(--line);
}
.merchant span,
.offer-price span {
  display: block;
  color: var(--muted);
  font-size: 11px;
}
.offer-price strong {
  font-size: 22px;
}
.offer-cta {
  padding: 10px;
  border-radius: 9px;
  background: var(--ink);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
}
.offer-best {
  margin: 0 -10px;
  padding-inline: 20px;
  border-radius: 12px;
  background: #eef7ff;
}
.product-insights {
  display: grid;
  grid-template-columns: 3fr 2fr;
  padding: 0;
  overflow: hidden;
}
.history-panel,
.alert-panel {
  padding: 52px;
}
.chart {
  height: 240px;
}
.chart svg {
  width: 100%;
  height: 100%;
}
.chart-line {
  fill: none;
  stroke: var(--blue2);
  stroke-width: 1.4;
}
.chart-area {
  fill: #eaf5ff;
}
.chart circle {
  fill: var(--lilac);
}
.chart text {
  fill: var(--muted);
  font: 4px sans-serif;
}
.chart-legend {
  display: flex;
  gap: 30px;
  color: var(--muted);
  font-size: 11px;
}
.chart-legend b {
  display: block;
  color: var(--ink);
}
.alert-panel {
  background: #fff5c9;
  border-left: 1px solid var(--line);
}
.alert-panel label {
  display: block;
  margin: 15px 0 6px;
  font-size: 12px;
  font-weight: 700;
}
.alert-panel input {
  width: 100%;
  padding: 12px;
  border: 1px solid #aeb9c5;
  border-radius: 9px;
  background: #fff;
}
.target-input {
  position: relative;
}
.target-input span {
  position: absolute;
  right: 13px;
  top: 12px;
}
.alert-panel button {
  width: 100%;
  margin-top: 11px;
  padding: 14px;
  border: 0;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}
.form-status {
  font-size: 12px;
}
.product-description-block > p:nth-of-type(2) {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.7;
}
.product-description-block dl {
  max-width: 760px;
}
.product-description-block dl div {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.product-description-block dd {
  margin: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .price-ticket {
    animation: settle 0.65s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }
  @keyframes settle {
    from {
      opacity: 0;
      transform: translateY(-24px);
    }
    to {
      opacity: 1;
      transform: translateY(0) rotate(3deg);
    }
  }
}
@media (max-width: 900px) {
  .nav {
    grid-template-columns: 1fr auto;
  }
  .nav nav {
    display: none;
  }
  .catalog-intro {
    margin-inline: 16px;
    padding: 56px 38px;
    grid-template-columns: 1fr;
  }
  .hero-build {
    display: none;
  }
  .compare {
    padding: 80px 18px;
  }
  .results {
    grid-template-columns: repeat(2, 1fr);
  }
  .method-strip {
    margin-inline: 18px;
    grid-template-columns: 1fr;
  }
  .product-hero,
  .product-insights {
    grid-template-columns: 1fr;
  }
  .product-photo {
    min-height: 430px;
  }
  .alert-panel {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .offers-section,
  .product-insights,
  .product-description-block {
    margin-inline: 16px;
  }
  .section-heading {
    align-items: flex-start;
    gap: 15px;
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .nav {
    height: 70px;
    padding: 0 18px;
  }
  .logo {
    width: 106px;
  }
  .nav-action {
    padding: 9px 13px;
    font-size: 12px;
  }
  .catalog-intro {
    min-height: auto;
    margin-inline: 10px;
    padding: 44px 20px 38px;
    border-radius: 22px;
  }
  .catalog-intro h1 {
    font-size: 52px;
  }
  .hero-lead {
    font-size: 16px;
  }
  .search > div:nth-child(2) {
    display: grid;
  }
  .search button {
    padding: 13px;
  }
  .trust-list {
    display: grid;
    gap: 8px;
  }
  .catalog-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  .results {
    grid-template-columns: 1fr;
  }
  .product-card {
    min-height: 470px;
  }
  .method-strip {
    margin: 0 10px 70px;
    padding: 38px 24px;
  }
  .method-strip h2 {
    font-size: 36px;
  }
  .catalog-footer,
  footer {
    align-items: flex-start;
    flex-direction: column;
    margin: 0 18px;
    padding-inline: 0;
  }
  .catalog-footer p,
  footer p {
    margin: 0;
  }
  .catalog-footer > div,
  footer > div {
    flex-direction: column;
    gap: 8px;
  }
  .nav-search {
    display: none;
  }
  .crumbs {
    padding: 13px 18px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .product-hero {
    margin-inline: 10px;
    border-radius: 20px;
  }
  .product-photo {
    min-height: 310px;
  }
  .product-summary {
    padding: 34px 22px;
  }
  .product-summary h1 {
    font-size: 45px;
  }
  .offers-section,
  .product-description-block {
    margin: 12px 10px;
    padding: 34px 20px;
    border-radius: 20px;
  }
  .product-insights {
    margin: 12px 10px;
    border-radius: 20px;
  }
  .offer-table-head {
    display: none;
  }
  .offer-row {
    grid-template-columns: 1fr auto;
  }
  .delivery {
    grid-column: 1;
  }
  .offer-cta {
    grid-column: 2;
    grid-row: 1/3;
  }
  .history-panel,
  .alert-panel {
    padding: 34px 20px;
  }
  .chart-legend {
    gap: 14px;
    justify-content: space-between;
  }
  .product-description-block dl div {
    grid-template-columns: 1fr;
  }
  .product-description-block dd {
    margin-top: 4px;
  }
}
