/** Shopify CDN: Minification failed

Line 1741:0 Unexpected "}"

**/
:root {
  --green: #1F4D35;
  --accent: #D7A84E;
  --ink: #151915;
  --bg: #F8F8F5;

  --white: #ffffff;
  --muted: #69736c;
  --line: #dfe4df;
  --soft-green: #edf3ee;

  --radius: 16px;
  --radius-large: 24px;

  --shadow-soft: 0 10px 35px rgba(20, 35, 25, 0.06);
  --shadow-medium: 0 18px 50px rgba(20, 35, 25, 0.10);
}

/* =========================================
   RESET
========================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);

  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;

  font-size: 16px;
  line-height: 1.55;

  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--green);
  color: var(--white);
}

/* =========================================
   ACCESSIBILITY
========================================= */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  z-index: 9999;

  padding: 12px 16px;
  border-radius: 8px;

  background: var(--white);
  color: var(--ink);

  box-shadow: var(--shadow-medium);
}

.skip-link:focus {
  left: 12px;
}

/* =========================================
   GLOBAL
========================================= */

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.narrow {
  max-width: 850px;
}

.center {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

small {
  display: inline-block;

  color: var(--green);

  font-size: 11px;
  font-weight: 900;

  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* =========================================
   BUTTONS
========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;

  padding: 13px 24px;

  border: 0;
  border-radius: 999px;

  background: var(--green);
  color: var(--white);

  font-size: 14px;
  font-weight: 850;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 9px 22px rgba(31, 77, 53, 0.17);
}

.btn:active {
  transform: translateY(0);
}

.btn.light {
  background: var(--white);
  color: var(--green);
}

.btn.outline {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn.outline:hover {
  border-color: var(--green);
}

.btn.full {
  width: 100%;
}

.btn.big {
  min-height: 54px;
  font-size: 16px;
}

.link {
  display: inline-block;
  margin-left: 18px;

  font-size: 14px;
  font-weight: 800;
}

.link:hover {
  color: var(--green);
}

/* =========================================
   ANNOUNCEMENT BAR
========================================= */

.announcement {
  padding: 9px 15px;

  background: var(--green);
  color: var(--white);

  text-align: center;

  font-size: 13px;
  font-weight: 650;
}

.announcement span {
  margin: 0 10px;
  opacity: 0.55;
}

/* =========================================
   HEADER
========================================= */

.header {
  position: sticky;
  top: 0;
  z-index: 50;

  background: rgba(248, 248, 245, 0.96);

  border-bottom: 1px solid var(--line);

  backdrop-filter: blur(10px);
}

.header > .wrap {
  min-height: 76px;

  display: flex;
  align-items: center;

  gap: 28px;
}

.logo {
  min-width: 240px;

  color: var(--ink);

  font-size: 22px;
  font-weight: 950;

  letter-spacing: 0.16em;
}

.logo span {
  display: block;

  margin-top: 2px;

  color: var(--muted);

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.header nav {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 1;

  gap: 20px;
}

.header nav a {
  position: relative;

  font-size: 14px;
  font-weight: 750;

  transition: color 0.2s ease;
}

.header nav a:hover {
  color: var(--green);
}

.cart {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  font-size: 19px;
}

.cart b {
  position: absolute;
  top: -3px;
  right: -4px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 18px;
  height: 18px;

  border-radius: 50%;

  background: var(--accent);
  color: var(--ink);

  font-size: 10px;
  font-weight: 900;
}

.menu {
  display: none;

  width: 42px;
  height: 42px;

  padding: 0;

  border: 0;
  background: transparent;

  color: var(--ink);

  font-size: 21px;
}

.mobile-nav {
  display: none;

  padding: 10px 14px 18px;

  background: var(--white);

  border-top: 1px solid var(--line);
}

.mobile-nav a {
  display: block;

  padding: 12px 0;

  border-bottom: 1px solid #edf0ed;

  font-weight: 750;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

/* =========================================
   HERO
========================================= */

.hero {
  padding: 76px 0 58px;

  background:
    linear-gradient(
      180deg,
      #f8f8f5 0%,
      #edf3ee 100%
    );
}

.hero-grid {
  display: grid;

  grid-template-columns: 1.05fr 0.95fr;

  align-items: center;

  gap: 55px;
}

.hero h1 {
  max-width: 700px;

  margin: 13px 0 20px;

  font-size: clamp(42px, 5vw, 70px);
  font-weight: 900;

  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hero p {
  max-width: 650px;

  margin: 0 0 30px;

  color: #56615a;

  font-size: 19px;
}

.hero-art {
  min-height: 470px;

  overflow: hidden;

  border-radius: 28px;

  background: #dfe8e1;

  box-shadow: var(--shadow-soft);
}

.hero-art img {
  width: 100%;
  height: 100%;

  min-height: 470px;

  object-fit: contain;
}

.placeholder {
  min-height: 470px;

  display: flex;

  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 30px;

  text-align: center;

  color: var(--green);

  background:
    radial-gradient(
      circle at 30% 30%,
      #ffffff 0%,
      #dce8de 55%,
      #c6d5c8 100%
    );
}

.placeholder strong {
  margin-top: 12px;

  font-size: 21px;
}

.placeholder span {
  margin-top: 4px;

  color: #66726a;

  font-size: 13px;
}

.ticks {
  margin-top: 26px;

  color: #59635d;

  font-size: 13px;
}

/* =========================================
   SECTION HEADING
========================================= */

.head {
  display: flex;
  align-items: end;
  justify-content: space-between;

  gap: 30px;

  margin-bottom: 26px;
}

.head h2,
.dark h2,
.section h2 {
  margin: 0;

  font-size: clamp(30px, 3.5vw, 45px);

  line-height: 1.08;
  letter-spacing: -0.035em;
}

.head > a {
  white-space: nowrap;

  font-size: 14px;
  font-weight: 800;
}

.head > a:hover {
  color: var(--green);
}

/* =========================================
   PRODUCT GRID
========================================= */

.grid {
  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 20px;
}

.card {
  display: flex;
  flex-direction: column;

  overflow: hidden;

  background: var(--white);

  border: 1px solid var(--line);

  border-radius: var(--radius);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-3px);

  box-shadow: var(--shadow-soft);
}

.media {
  position: relative;

  display: block;

  aspect-ratio: 1 / 1;

  overflow: hidden;

  background: #f1f3f0;
}

.media img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  transition: transform 0.35s ease;
}

.card:hover .media img {
  transform: scale(1.03);
}

.pad {
  display: flex;
  flex-direction: column;

  flex: 1;

  padding: 17px;
}

.pad small {
  color: var(--muted);

  font-size: 10px;

  letter-spacing: 0.12em;
}

.pad h3 {
  margin: 7px 0 10px;

  font-size: 17px;
  line-height: 1.22;
}

.pad h3 a:hover {
  color: var(--green);
}

.pad > strong {
  margin-bottom: 11px;

  font-size: 19px;
  font-weight: 900;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;

  padding: 6px 10px;

  border-radius: 999px;

  background: var(--green);
  color: var(--white);

  font-size: 11px;
  font-weight: 900;
}

/* =========================================
   DARK CONVERSION BLOCK
========================================= */

.dark {
  padding: 68px 0;

  background: var(--green);
  color: var(--white);
}

.dark small {
  color: #d1e0d6;
}

.dark h2 {
  max-width: 680px;
}

.dark p {
  max-width: 680px;

  margin: 14px 0 0;

  color: #dbe7df;
}

.split {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 40px;
}

/* =========================================
   BENEFITS
========================================= */

.benefits {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 20px;
}

.benefits > div {
  padding: 28px;

  background: var(--white);

  border: 1px solid var(--line);

  border-radius: var(--radius);

  box-shadow: var(--shadow-soft);
}

.benefits b {
  font-size: 30px;
}

.benefits h3 {
  margin: 12px 0 7px;

  font-size: 19px;
}

.benefits p {
  margin: 0;

  color: var(--muted);
}

/* =========================================
   FAQ
========================================= */

.narrow details {
  margin: 10px 0;

  background: var(--white);

  border: 1px solid var(--line);

  border-radius: 14px;

  padding: 0 18px;
}

.narrow summary {
  padding: 18px 0;

  cursor: pointer;

  font-weight: 850;

  list-style: none;
}

.narrow summary::-webkit-details-marker {
  display: none;
}

.narrow details p,
.narrow details div {
  padding-bottom: 18px;

  color: var(--muted);
}

.narrow .center {
  margin-top: 25px;
}

/* =========================================
   PRODUCT PAGE
========================================= */

.product {
  display: grid;

  grid-template-columns: 1.05fr 0.95fr;

  gap: 55px;
}

.product-media {
  overflow: hidden;

  background: var(--white);

  border: 1px solid var(--line);

  border-radius: 20px;
}

.product-media img {
  width: 100%;
  aspect-ratio: 1;

  object-fit: contain;
}

.info h1 {
  margin: 8px 0 15px;

  font-size: clamp(36px, 4vw, 52px);

  line-height: 1.04;
  letter-spacing: -0.035em;
}

.price {
  margin-bottom: 16px;

  font-size: 28px;
  font-weight: 950;
}

.trust {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 7px;

  margin: 18px 0;
}

.trust span {
  padding: 10px;

  border: 1px solid var(--line);

  border-radius: 9px;

  background: var(--white);

  color: #59635d;

  font-size: 11px;

  text-align: center;
}

.qty {
  display: flex;

  justify-content: flex-end;

  margin: 12px 0;
}

.qty button {
  width: 43px;
  height: 44px;

  padding: 0;

  border: 1px solid var(--line);

  background: var(--white);

  font-size: 20px;
}

.qty input {
  width: 58px;
  height: 44px;

  border: 1px solid var(--line);

  text-align: center;

  background: var(--white);
}

.info details {
  margin: 10px 0;

  padding: 0 18px;

  background: var(--white);

  border: 1px solid var(--line);

  border-radius: 14px;
}

.info summary {
  padding: 18px 0;

  cursor: pointer;

  list-style: none;

  font-weight: 850;
}

.info summary::-webkit-details-marker {
  display: none;
}

.info details > div {
  padding-bottom: 18px;

  color: var(--muted);
}

.info h1 {
  font-size: 32px;
}

/* =========================================
   CART
========================================= */

.line {
  display: grid;

  grid-template-columns: 110px 1fr auto;

  gap: 16px;

  align-items: center;

  margin-bottom: 12px;

  padding: 12px;

  background: var(--white);

  border: 1px solid var(--line);

  border-radius: 14px;
}

.line img {
  width: 110px;
  height: 110px;

  object-fit: contain;
}

.line input {
  width: 80px;

  padding: 9px;

  border: 1px solid var(--line);

  border-radius: 8px;

  background: var(--white);
}

.line > strong {
  font-size: 16px;
}

.summary {
  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-top: 20px;

  padding: 20px;

  border: 1px solid var(--line);

  border-radius: 14px;

  background: var(--white);

  font-size: 19px;
}

.actions {
  display: flex;

  justify-content: flex-end;

  gap: 10px;

  margin-top: 15px;
}

.empty {
  padding: 65px 20px;

  background: var(--white);

  border: 1px dashed var(--line);

  border-radius: 16px;

  text-align: center;
}

/* =========================================
   PAGE CONTENT
========================================= */

.page-content {
  padding: 30px;

  background: var(--white);

  border: 1px solid var(--line);

  border-radius: 16px;
}

.page-content h2,
.page-content h3 {
  line-height: 1.2;
}

/* =========================================
   FOOTER
========================================= */

footer {
  padding: 56px 0 20px;

  background: #121813;

  color: var(--white);
}

.footer-grid {
  display: grid;

  grid-template-columns: 1.5fr 1fr 1fr;

  gap: 35px;
}

.footer-grid .logo {
  color: var(--white);
}

.footer-grid .logo span {
  color: #96a29a;
}

.footer-grid h3 {
  margin-top: 0;

  font-size: 14px;
}

.footer-grid a {
  display: block;

  margin: 8px 0;

  color: #d9e2dc;

  font-size: 14px;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-grid p {
  max-width: 360px;

  color: #acb6ae;
}

.bottom {
  margin-top: 30px;

  padding-top: 15px;

  border-top: 1px solid #303730;

  color: #8d978f;

  font-size: 12px;
}

/* =========================================
   RESPONSIVE TABLET
========================================= */

@media (max-width: 990px) {

  .header nav {
    gap: 11px;
  }

  .header nav a {
    font-size: 12px;
  }

  .logo {
    min-width: 190px;

    font-size: 19px;
  }

  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .product {
    grid-template-columns: 1fr;
  }

  .hero-art,
  .hero-art img,
  .placeholder {
    min-height: 390px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================================
   RESPONSIVE MOBILE
========================================= */

@media (max-width: 749px) {

  .wrap {
    width: calc(100% - 28px);
  }

  .announcement {
    font-size: 11px;
  }

  .header > .wrap {
    min-height: 66px;

    justify-content: space-between;

    gap: 10px;
  }

  .menu {
    display: flex;

    align-items: center;
    justify-content: center;
  }

  .header nav {
    display: none;
  }

  .logo {
    position: absolute;
    left: 50%;

    transform: translateX(-50%);

    min-width: 0;

    white-space: nowrap;

    font-size: 19px;
  }

  .logo span {
    display: none;
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav:not([hidden]) {
    display: block;
  }

  .hero {
    padding: 48px 0 38px;
  }

  .hero h1 {
    font-size: 39px;

    letter-spacing: -0.045em;
  }

  .hero p {
    font-size: 17px;
  }

  .hero .btn {
    width: 100%;
  }

  .hero .link {
    display: block;

    margin: 14px 0 0;

    text-align: center;
  }

  .hero-art,
  .hero-art img,
  .placeholder {
    min-height: 300px;
    height: 300px;
  }

  .ticks {
    font-size: 11px;

    line-height: 2;
  }

  .section {
    padding: 52px 0;
  }

  .head {
    align-items: flex-start;

    flex-direction: column;

    gap: 12px;
  }

  .head h2,
  .section h2,
  .dark h2 {
    font-size: 31px;
  }

  .grid {
    gap: 12px;
  }

  .pad {
    padding: 13px;
  }

  .pad h3 {
    font-size: 15px;
  }

  .pad > strong {
    font-size: 16px;
  }

  .benefits {
    grid-template-columns: 1fr;
  }

  .split {
    align-items: flex-start;

    flex-direction: column;
  }

  .split .btn {
    width: 100%;
  }

  .trust {
    grid-template-columns: 1fr;
  }

  .product {
    gap: 28px;
  }

  .info h1 {
    font-size: 38px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;

    gap: 25px;
  }

  .actions {
    flex-direction: column;
  }

  .actions .btn {
    width: 100%;
  }

  .line {
    grid-template-columns: 80px 1fr;

    gap: 12px;
  }

  .line img {
    width: 80px;
    height: 80px;
  }

  .line > strong {
    grid-column: 2;
  }

  .page-content {
    padding: 22px;
  }
}/* =========================================
   GALERIE PRODUIT
========================================= */

.product-gallery {
  min-width: 0;
}

.product-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.product-thumb {
  flex: 0 0 82px;
  width: 82px;
  height: 82px;
  padding: 0;

  border: 1px solid var(--line);
  border-radius: 10px;

  background: #ffffff;

  overflow: hidden;
  cursor: pointer;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-thumb:hover {
  border-color: var(--green);
}

.product-thumb.is-active {
  border: 2px solid var(--green);
}


/* =========================================
   TEXTE PRODUIT
========================================= */

.product-intro {
  margin-top: 0;
  margin-bottom: 12px;
}


/* =========================================
   NOTE SOUS LE BOUTON
========================================= */

.purchase-note {
  margin-top: 10px;
  text-align: center;

  color: var(--muted);

  font-size: 11px;
}

.purchase-note span {
  margin: 0 5px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 749px) {

  .product-thumbnails {
    gap: 8px;
    margin-top: 8px;
  }

  .product-thumb {
    flex: 0 0 68px;
    width: 68px;
    height: 68px;
  }

  .product-media {
    border-radius: 16px;
  }

  .product-intro {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .mobile-product-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 100;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    padding: 10px 12px;

    background: #ffffff;

    border-top: 1px solid var(--line);

    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.08);
  }

  .mobile-product-bar__info {
    min-width: 0;
  }

  .mobile-product-bar__info strong {
    display: block;

    max-width: 190px;

    overflow: hidden;

    white-space: nowrap;
    text-overflow: ellipsis;

    font-size: 11px;
  }

  .mobile-product-bar__info span {
    display: block;

    margin-top: 1px;

    font-size: 14px;
    font-weight: 900;
  }

  .mobile-product-bar .btn {
    flex: 0 0 auto;

    min-height: 44px;

    padding: 10px 15px;

    font-size: 12px;
  }
}/* =========================================
   CARACTÉRISTIQUES RAPIDES PRODUIT
========================================= */

.product-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 14px 0 18px;
}

.product-highlights span {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 46px;
  padding: 8px 6px;

  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;

  color: var(--ink);

  font-size: 12px;
  font-weight: 750;

  text-align: center;
}

@media (max-width: 749px) {
  .product-highlights {
    gap: 6px;
    margin: 12px 0 16px;
  }

  .product-highlights span {
    min-height: 44px;
    padding: 7px 4px;

    font-size: 10px;
  }
}@media (max-width: 749px) {

  .product .trust {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin: 12px 0;
  }

  .product .trust span {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 4px;
    font-size: 9px;
    line-height: 1.2;
  }

}/* =========================================
   PANIER — QUANTITÉ & SUPPRESSION
========================================= */

.cart-quantity-area {
  margin-top: 10px;
}

.cart-quantity-label {
  display: block;
  margin-bottom: 6px;

  color: var(--muted);

  font-size: 11px;
  font-weight: 750;
}

.cart-quantity {
  display: inline-flex;
  align-items: center;

  overflow: hidden;

  border: 1px solid var(--line);
  border-radius: 9px;

  background: #ffffff;
}

.cart-qty-btn {
  width: 38px;
  height: 40px;

  padding: 0;

  border: 0;

  background: #ffffff;

  color: var(--ink);

  font-size: 19px;
  font-weight: 700;
}

.cart-qty-btn:hover {
  background: #f1f4f1;
}

.cart-qty-input {
  width: 48px;
  height: 40px;

  padding: 0;

  border: 0;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);

  background: #ffffff;

  color: var(--ink);

  font-size: 14px;
  font-weight: 750;

  text-align: center;
}

.cart-remove {
  display: inline-block;

  margin-left: 9px;

  padding: 7px 10px;

  border: 1px solid #e7b7b3;

  border-radius: 8px;

  background: #fff4f3;
  color: #b42318;

  font-size: 11px;
  font-weight: 800;

  cursor: pointer;
}

.cart-remove:hover {
  background: #fde6e4;
  border-color: #d9918b;
}

.cart-unit-price {
  margin: 5px 0 0;

  color: var(--muted);

  font-size: 13px;
}

.line-total {
  white-space: nowrap;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 749px) {

  .cart-quantity-area {
    margin-top: 9px;
  }

  .cart-remove {
    margin-top: 7px;
    margin-left: 0;

    font-size: 10px;
  }

  .cart-qty-btn {
    width: 34px;
    height: 38px;
  }

  .cart-qty-input {
    width: 43px;
    height: 38px;
  }

  .line-total {
    font-size: 14px;
  }

}/* =========================================
   FOOTER MOBILE — CORRECTION
========================================= */

@media (max-width: 749px) {

  footer {
    padding: 42px 0 18px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-grid > div {
    width: 100%;
    min-width: 0;
  }

  .footer-grid .logo {
    position: static;
    min-width: 0;
    width: auto;

    margin: 0 0 10px;

    transform: none;

    white-space: normal;

    font-size: 20px;
    line-height: 1.2;
  }

  .footer-grid .logo span {
    display: block;

    margin-top: 4px;

    font-size: 8px;
    line-height: 1.4;

    white-space: normal;
  }

  .footer-grid p {
    margin: 10px 0 0;

    max-width: 100%;

    font-size: 14px;
    line-height: 1.55;
  }

  .footer-grid h3 {
    margin: 0 0 10px;

    font-size: 14px;
  }

  .footer-grid a {
    margin: 6px 0;

    font-size: 14px;
  }

  footer .bottom {
    margin-top: 28px;
    padding-top: 14px;

    font-size: 11px;
  }

}

}/* =========================================
   CONTACT
========================================= */

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.contact-info,
.contact-form-wrapper {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.contact-info h2 {
  margin-top: 0;
  font-size: 28px;
}

.contact-info p {
  color: var(--muted);
}

.contact-info a {
  color: var(--green);
}

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 25px;
}

.contact-points > div {
  padding: 14px;
  border-radius: 10px;
  background: var(--soft-green);
}

.contact-points strong,
.contact-points span {
  display: block;
}

.contact-points span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.contact-field {
  margin-bottom: 17px;
}

.contact-field label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 800;
}

.contact-field label span {
  color: var(--muted);
  font-weight: 500;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  color: var(--ink);
  outline: none;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--green);
}

.contact-field textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.contact-success {
  margin-bottom: 18px;
  padding: 14px;
  border-radius: 10px;
  background: #edf7ef;
  color: var(--green);
  font-weight: 700;
}


/* =========================================
   COMPARATEUR
========================================= */

.compare-table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 850px;
}

.compare-table th {
  padding: 17px;
  background: var(--green);
  color: #ffffff;
  text-align: left;
  font-size: 13px;
}

.compare-table td {
  padding: 16px 17px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.compare-table .compare-featured {
  background: #edf5ef;
}

.compare-table .compare-featured td {
  font-weight: 700;
}

.compare-mobile {
  display: none;
}

.compare-help {
  margin-top: 50px;
}

.compare-help h2 {
  margin-bottom: 20px;
}

.compare-help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.compare-help-grid > div {
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.compare-help-grid span {
  font-size: 28px;
}

.compare-help-grid h3 {
  margin: 10px 0 6px;
}

.compare-help-grid p {
  margin: 0;
  color: var(--muted);
}

.compare-final-cta {
  margin-top: 35px;
}


/* =========================================
   MOBILE COMPARATEUR
========================================= */

@media (max-width: 749px) {

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-info,
  .contact-form-wrapper {
    padding: 20px;
  }


  .compare-table-wrapper {
    display: none;
  }

  .compare-mobile {
    display: grid;
    gap: 12px;
  }

  .compare-card {
    padding: 20px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .compare-card--featured {
    border: 2px solid var(--green);
    background: #edf5ef;
  }

  .compare-card h2 {
    margin: 5px 0 18px;
    font-size: 21px;
    line-height: 1.2;
  }

  .compare-badge {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--green);
    color: #ffffff;
    font-size: 11px;
    font-weight: 850;
  }

  .compare-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .compare-specs > div {
    padding: 10px;
    border-radius: 9px;
    background: #f7f8f6;
  }

  .compare-specs span,
  .compare-specs strong {
    display: block;
  }

  .compare-specs span {
    margin-bottom: 2px;
    color: var(--muted);
    font-size: 10px;
  }

  .compare-specs strong {
    font-size: 13px;
  }

  .compare-help {
    margin-top: 40px;
  }

  .compare-help-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

}