/* ================================================================
   TABLE EN FÊTE — Feuille de styles partagée
   Version : maquette v3 — juin 2026
   ================================================================ */

/* ─── RESET & ROOT ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-bg:    #f0f5f0;
  --green-light: #e8f0e8;
  --green-dark:  #2a3a2a;
  --green-mid:   #4a6a4a;
  --green-pale:  #f7fbf7;
  --gold:        #c4a435;
  --gold-dk:     #9e8328;
  --gold-lt:     #f2e8b8;
  --white:       #ffffff;
  --cream:       #fefcf9;
  --border:      #ddeadd;
  --text:        #2a3a2a;
  --text-mid:    #5c6e5c;
  --text-light:  #8a9e8a;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Nunito Sans', Arial, sans-serif;
  --font-allison:   'Allison', cursive;
  --font-bellefair: 'Bellefair', serif;
  --radius:      6px;
  --shadow:      0 1px 12px rgba(42,58,42,.07);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text);
  background: var(--green-pale);
  line-height: 1.70;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ─── HEADER ────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: transform .25s ease;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 96px;
}

.logo-link img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.nav-main ul {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-main a {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color .2s;
}

.nav-main a:hover { color: var(--green-dark); }

.nav-main .btn-devis {
  font-weight: 400;
  letter-spacing: .14em;
  color: var(--gold-dk) !important;
  border: 1px solid var(--gold);
  padding: 10px 24px;
  border-radius: var(--radius);
  transition: background .2s, color .2s;
}

.nav-main .btn-devis:hover {
  background: var(--gold);
  color: var(--white) !important;
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--green-dark);
}

.cat-nav {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-nav::-webkit-scrollbar { display: none; }

.cat-nav-inner {
  display: flex;
  align-items: stretch;
}

.cat-nav-inner a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 18px;
  min-width: 140px;
  height: 74px;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .02em;
  text-transform: none;
  color: var(--green-dark);
  background: var(--cream);
  white-space: nowrap;
  border-right: 1px solid var(--border);
  border-bottom: 3px solid transparent;
  transition: background .18s, border-bottom-color .18s;
}

.cat-nav-inner a:last-child { border-right: none; }

.cat-nav-inner a:hover,
.cat-nav-inner a.active {
  background: var(--green-pale);
  color: var(--green-dark);
  border-bottom-color: var(--gold);
}

/* ─── HERO (page d'accueil) ─────────────────────────────────────── */
.hero {
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(30,46,30,.42) 0%, rgba(30,46,30,.32) 50%, rgba(30,46,30,.62) 100%),
    linear-gradient(160deg, #3e6050 0%, #2a3a2a 55%, #1a2a1a 100%);
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 720px;
  padding: 0 32px;
}

.hero-logo {
  margin: 0 auto 28px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.30);
}

.hero-logo img { width: 100%; height: 100%; object-fit: cover; }

.hero h1 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.12;
  margin-bottom: 18px;
}

.hero h1 .h1-top {
  display: block;
  font-family: var(--font-allison);
  font-size: 150px;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: none;
  color: var(--gold-lt);
}

.hero h1 .h1-partenaire {
  display: block;
  font-family: var(--font-bellefair);
  font-size: 42px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: .10em;
  color: var(--gold-lt);
  margin-top: 4px;
}

.hero h1 .h1-sub {
  display: block;
  font-size: 20px;
  font-style: italic;
  letter-spacing: .06em;
  color: rgba(255,255,255,.75);
  margin-top: 8px;
  margin-bottom: 28px;
}

.hero-tagline {
  font-family: var(--font-bellefair);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: .10em;
  color: rgba(255,255,255,.82);
  margin-bottom: 32px;
}

.btn-hero {
  display: inline-block;
  border: 1px solid rgba(196,164,53,.70);
  color: var(--gold-lt);
  padding: 14px 36px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: background .25s, color .25s, border-color .25s;
}

.btn-hero:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ─── INFO ──────────────────────────────────────────────────────── */
.info-section {
  background: var(--white);
  padding: 60px 48px;
}

.info-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.info-card { display: flex; flex-direction: column; gap: 12px; }

.info-icon {
  width: 40px;
  height: 40px;
  color: var(--gold-dk);
}

.info-card h3 {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--text-light);
}

.info-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.78;
}

.info-card a {
  font-size: 14px;
  font-weight: 400;
  color: var(--gold-dk);
  transition: color .2s;
}

.info-card a:hover { color: var(--green-dark); }

/* ─── CATALOGUE (accueil) ───────────────────────────────────────── */
.catalogue-section {
  padding: 72px 0 0;
  background: var(--green-pale);
}

.section-intro {
  text-align: center;
  padding: 0 48px 44px;
}

.section-intro h2 {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
  color: var(--green-dark);
  letter-spacing: .03em;
  margin-bottom: 14px;
}

.section-intro p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
}

.section-intro p a { color: var(--gold-dk); font-weight: 400; }

.cat-grid-wrapper { padding: 0 20px 20px; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 16px;
}

/* 7 cartes : la dernière seule sur sa rangée → on la centre */
.cat-grid .cat-card:last-child:nth-child(3n+1) {
  grid-column: 2;
}

.cat-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  cursor: pointer;
  border-radius: 8px;
}

.cat-card .card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}

.cat-card:hover .card-bg { transform: scale(1.05); }

.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 28%, rgba(15,25,15,.42) 65%, rgba(15,25,15,.72) 100%);
  border-radius: inherit;
  transition: background .3s;
}

.cat-card:hover::after {
  background: linear-gradient(to bottom, rgba(15,25,15,.06) 0%, rgba(15,25,15,.20) 40%, rgba(15,25,15,.60) 100%);
}

.card-text {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 22px 26px;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
}

.card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(6px);
  color: rgba(255,255,255,.50);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: .10em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,.18);
}

.cat-card[data-cat="vaisselle"]   .card-bg { background: linear-gradient(155deg, #5a826a 0%, #3a5e4a 55%, #263e2e 100%); }
.cat-card[data-cat="equipement"] .card-bg { background: linear-gradient(155deg, #4a7060 0%, #2a5040 55%, #1e3828 100%); }
.cat-card[data-cat="tables"]     .card-bg { background: linear-gradient(155deg, #6a7e5a 0%, #4a5e3a 55%, #2e3e22 100%); }
.cat-card[data-cat="nappage"]    .card-bg { background: linear-gradient(155deg, #8a7654 0%, #6a5636 55%, #4a3820 100%); }
.cat-card[data-cat="decoration"] .card-bg { background: linear-gradient(155deg, #9a8850 0%, #7a6830 55%, #5a4a18 100%); }
.cat-card[data-cat="eclairage"]  .card-bg { background: linear-gradient(155deg, #7a6e62 0%, #5a4e42 55%, #3c3228 100%); }
.cat-card[data-cat="mobilier"]   .card-bg { background: linear-gradient(155deg, #527068 0%, #345248 55%, #1e3430 100%); }

/* ─── USP ───────────────────────────────────────────────────────── */
.usp-section { background: var(--white); padding: 80px 48px; }

.usp-header { text-align: center; margin-bottom: 52px; }

.usp-header h2 {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 400;
  color: var(--green-dark);
  letter-spacing: .03em;
  margin-bottom: 14px;
}

.usp-intro {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.80;
}

.usp-grid {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.usp-card {
  background: var(--green-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: box-shadow .25s, transform .25s;
}

.usp-card:hover { box-shadow: 0 6px 24px rgba(42,58,42,.09); transform: translateY(-3px); }

.usp-icon { width: 36px; height: 36px; margin: 0 auto 18px; color: var(--gold-dk); }

.usp-card h3 {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.usp-card p { font-size: 13px; font-weight: 300; color: var(--text-mid); line-height: 1.68; }

/* Argument fort sous les USP */
.usp-argument {
  margin-top: 56px;
  padding: 36px 48px;
  background: var(--green-dark);
  border-radius: var(--radius);
  text-align: center;
}
.usp-arg-text {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-lt);
  letter-spacing: .02em;
  margin-bottom: 12px;
  line-height: 1.2;
}
.usp-arg-sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,.72);
  letter-spacing: .04em;
  line-height: 1.6;
}

/* ─── PRODUITS (accueil) ─────────────────────────────────────────── */
.produits-section { background: var(--cream); padding: 80px 48px; }

.produits-head { text-align: center; margin-bottom: 56px; }

.produits-head h2 {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 400;
  color: var(--green-dark);
  letter-spacing: .02em;
  margin-bottom: 10px;
}

.produits-head .section-sub {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: var(--gold-dk);
}

.produits-cols {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.produits-text p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  margin-bottom: 22px;
  line-height: 1.82;
}

.produits-text ul { margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }

.produits-text li {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  padding: 10px 14px 10px 18px;
  border-left: 2px solid var(--gold);
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.produits-text li strong { font-weight: 400; color: var(--green-dark); }

.quote-block {
  border-left: 2px solid var(--gold);
  padding: 22px 28px;
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.quote-block .q-text {
  font-family: var(--font-serif);
  font-size: 19px;
  font-style: italic;
  font-weight: 300;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.quote-block .q-author {
  font-size: 10px;
  font-weight: 400;
  color: var(--gold-dk);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.produits-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(4, 130px);
  gap: 12px;
}

.gallery-tile { border-radius: var(--radius); overflow: hidden; }

.gallery-tile .tile-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-tile:nth-child(1) .tile-bg { background: linear-gradient(135deg, #8aae9a, #4a7a6a); }
.gallery-tile:nth-child(2) .tile-bg { background: linear-gradient(135deg, #a09870, #7a7050); }
.gallery-tile:nth-child(3) .tile-bg { background: linear-gradient(135deg, #7a8a9a, #4a5a6a); }
.gallery-tile:nth-child(4) .tile-bg { background: linear-gradient(135deg, #9a8a7a, #6a5a4a); }
.gallery-tile:nth-child(5) .tile-bg { background: linear-gradient(135deg, #8a9a7a, #5a6a4a); }
.gallery-tile:nth-child(6) .tile-bg { background: linear-gradient(135deg, #b0a060, #8a7a40); }
.gallery-tile:nth-child(7) .tile-bg { background: linear-gradient(135deg, #7a9a8a, #4a6a5a); }
.gallery-tile:nth-child(8) .tile-bg { background: linear-gradient(135deg, #9a8870, #6a5840); }

.tile-label {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

/* ─── PROCESS ───────────────────────────────────────────────────── */
.process-section { background: var(--green-pale); padding: 80px 48px; }

.process-section > h2 {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 400;
  text-align: center;
  color: var(--green-dark);
  letter-spacing: .02em;
  margin-bottom: 56px;
}

.process-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.process-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.process-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  color: var(--gold-dk);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
}

.process-body h3 {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.process-body p { font-size: 13px; font-weight: 300; color: var(--text-mid); line-height: 1.70; }

.process-cta { grid-column: 1/-1; text-align: center; margin-top: 12px; }

/* ─── AVIS ──────────────────────────────────────────────────────── */
.avis-section { background: var(--white); padding: 80px 48px; }

.avis-section > h2 {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 400;
  text-align: center;
  color: var(--green-dark);
  letter-spacing: .02em;
  margin-bottom: 40px;
}

.avis-score { display: flex; justify-content: center; margin-bottom: 52px; }

.score-stars { font-size: 22px; color: var(--gold); letter-spacing: .08em; }

.score-label {
  font-size: 10px;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 6px;
}

.avis-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.avis-placeholder {
  grid-column: 1/-1;
  text-align: center;
  padding: 48px 32px;
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: var(--text-mid);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  line-height: 2.2;
}

.avis-placeholder a { font-weight: 400; color: var(--gold-dk); }

/* ─── PARTENAIRES ───────────────────────────────────────────────── */
.partners-section {
  background: var(--cream);
  padding: 72px 48px;
  border-top: 1px solid var(--border);
}

.partners-head {
  text-align: center;
  margin-bottom: 52px;
}

.partners-head h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--green-dark);
  letter-spacing: .03em;
  margin-bottom: 10px;
}

.partners-head p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
}

.partners-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 32px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  text-align: center;
  transition: box-shadow .22s, transform .22s;
}

.partner-card:hover {
  box-shadow: 0 6px 22px rgba(42,58,42,.09);
  transform: translateY(-3px);
}

.partner-logo-wrap {
  width: 88px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo-placeholder {
  width: 72px;
  height: 40px;
  border-radius: 4px;
  background: var(--green-pale);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo-placeholder svg { color: var(--text-light); }

.partner-name {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--green-dark);
  line-height: 1.3;
  margin-bottom: 4px;
}

.partner-type {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
}

.partner-link {
  font-size: 11px;
  font-weight: 300;
  color: var(--gold-dk);
  letter-spacing: .04em;
  transition: color .2s;
}

.partner-link:hover { color: var(--green-dark); }

@media (max-width: 1060px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .partners-section { padding-left: 20px; padding-right: 20px; }
}

/* ─── ABOUT ─────────────────────────────────────────────────────── */
.about-section { background: var(--green-pale); padding: 80px 48px; }

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: start;
}

.about-photo { border-radius: var(--radius); overflow: hidden; }

.about-photo-placeholder {
  width: 100%;
  height: 480px;
  background: linear-gradient(155deg, #4a6a5a 0%, #2a4a3a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,.38);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
}

.about-text h2 {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 300;
  color: var(--green-dark);
  letter-spacing: .04em;
  margin-bottom: 6px;
}

.about-founders {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: var(--gold-dk);
  margin-bottom: 28px;
}

.about-text p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-quote {
  border-left: 2px solid var(--gold);
  padding: 20px 28px;
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0;
}

.about-quote .q-text {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.about-quote .q-author {
  font-size: 10px;
  font-weight: 400;
  color: var(--gold-dk);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.about-stats { display: flex; gap: 40px; margin-top: 32px; flex-wrap: wrap; }

.stat-num {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 300;
  color: var(--green-dark);
  line-height: 1;
}

.stat-label {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}

.instagram-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 12px 26px;
  border: 1px solid rgba(196,164,53,.50);
  color: var(--gold-dk);
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .2s, color .2s, border-color .2s;
}

.instagram-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ─── CONTACT SECTION ───────────────────────────────────────────── */
.contact-section { background: var(--white); padding: 80px 48px; border-top: 1px solid var(--border); }

.contact-section > h2 {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 400;
  text-align: center;
  color: var(--green-dark);
  letter-spacing: .02em;
  margin-bottom: 56px;
}

.contact-inner {
  max-width: 1020px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--green-dark);
  margin-bottom: 28px;
}

.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }

.ci-icon { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; color: var(--gold-dk); }

.contact-item h4 {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.65;
}

.contact-item a:hover { color: var(--gold-dk); }

/* ─── FORMULAIRE ────────────────────────────────────────────────── */
.devis-form {
  background: var(--green-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
}

.devis-form h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--green-dark);
  margin-bottom: 28px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 7px;
}

.form-group input:not([type="radio"]):not([type="checkbox"]),
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  outline: none;
  appearance: none;
  transition: border-color .2s, box-shadow .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(74,106,74,.08);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-required { color: #b03030; margin-left: 2px; }

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--green-dark);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}

.form-submit:hover { background: var(--green-mid); }

.form-rgpd {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-light);
  margin-top: 14px;
  text-align: center;
  line-height: 1.65;
}

.form-rgpd a { color: var(--gold-dk); }

.form-section-title {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 24px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.form-section-title:first-of-type { margin-top: 0; }

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  cursor: pointer;
}

.radio-label input[type="radio"] {
  accent-color: var(--green-mid);
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
}

.delivery-block {
  background: var(--green-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-top: 14px;
}

/* ─── FOOTER ────────────────────────────────────────────────────── */
.site-footer { background: var(--green-dark); color: rgba(255,255,255,.60); padding: 60px 48px 36px; }

.footer-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo img {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .65;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.40);
  margin-bottom: 18px;
}

.footer-col p,
.footer-col a {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.90;
  color: rgba(255,255,255,.52);
}

.footer-col a:hover { color: var(--gold-lt); }

.footer-socials { display: flex; gap: 10px; margin-top: 12px; }

.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: .10em;
  color: rgba(255,255,255,.48);
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  text-transform: uppercase;
  transition: border-color .2s, color .2s;
}

.footer-socials a:hover { color: var(--gold-lt); border-color: var(--gold); }

.footer-bottom {
  max-width: 1160px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,.28);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom a { color: rgba(255,255,255,.28); }
.footer-bottom a:hover { color: rgba(255,255,255,.65); }

/* ─── BOUTONS PARTAGÉS ──────────────────────────────────────────── */
.btn-outline {
  display: inline-block;
  padding: 13px 36px;
  border: 1px solid var(--green-dark);
  color: var(--green-dark);
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background .2s, color .2s;
}

.btn-outline:hover { background: var(--green-dark); color: var(--white); }

/* ─── PAGE CATÉGORIE ────────────────────────────────────────────── */

/* Bannière catégorie */
.cat-page-hero {
  position: relative;
  height: 300px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.cat-page-hero .cat-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}

.cat-page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,32,20,.18) 0%, rgba(20,32,20,.65) 100%);
}

.cat-page-hero .cat-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 56px 44px;
  color: var(--white);
  max-width: 800px;
}

.breadcrumb {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: .10em;
  color: rgba(255,255,255,.55);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a { color: rgba(255,255,255,.55); transition: color .2s; }
.breadcrumb a:hover { color: rgba(255,255,255,.90); }
.breadcrumb .sep { opacity: .4; }

.cat-page-hero h1 {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  letter-spacing: .06em;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.1;
}

.cat-page-hero .cat-desc {
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,.70);
  font-family: var(--font-serif);
}

/* Fond spécifique par catégorie */
.cat-hero-bg.vaisselle    { background: linear-gradient(155deg, #5a826a 0%, #263e2e 100%); }
.cat-hero-bg.equipement   { background: linear-gradient(155deg, #4a7060 0%, #1e3828 100%); }
.cat-hero-bg.tables     { background: linear-gradient(155deg, #6a7e5a 0%, #2e3e22 100%); }
.cat-hero-bg.nappage    { background: linear-gradient(155deg, #8a7654 0%, #4a3820 100%); }
.cat-hero-bg.decoration { background: linear-gradient(155deg, #9a8850 0%, #5a4a18 100%); }
.cat-hero-bg.eclairage  { background: linear-gradient(155deg, #7a6e62 0%, #3c3228 100%); }
.cat-hero-bg.mobilier   { background: linear-gradient(155deg, #527068 0%, #1e3430 100%); }

/* Grille produits */
.products-section {
  background: var(--green-pale);
  padding: 64px 56px;
}

.products-header {
  max-width: 1160px;
  margin: 0 auto 40px;
}

.products-header h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.products-header p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
}

.products-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Carte produit */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}

.product-card:hover { box-shadow: 0 8px 28px rgba(42,58,42,.10); transform: translateY(-3px); }

.product-img-wrap {
  height: 210px;
  overflow: hidden;
  position: relative;
}

.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.product-img-placeholder svg { opacity: .30; }

.product-img-label {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255,255,255,.40);
}

.product-body { padding: 20px 22px 18px; }

.product-name {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 400;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.product-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 18px;
}

/* ── Bandeau bas produit (ref / qty / DEVIS) ── */
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 9px 12px 10px;
  border-top: 1px solid var(--border);
  background: var(--green-bg);
  flex-wrap: wrap;
}
.pf-ref {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.pf-right {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
}
.pf-qty-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
}
.pf-qty {
  width: 38px;
  height: 30px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  text-align: center;
  font-size: 0.85rem;
  font-family: var(--font-body);
  color: var(--green-dark);
  background: #fff;
  padding: 0;
  -moz-appearance: textfield;
}
.pf-qty::-webkit-inner-spin-button,
.pf-qty::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.pf-plus {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #4a9a5a;
  color: #fff;
  border: none;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  flex-shrink: 0;
}
.pf-plus:hover { background: #3a8a4a; }
.pf-devis-btn {
  height: 30px;
  padding: 0 12px;
  background: transparent;
  color: var(--green-dark);
  border: 1.5px solid var(--green-dark);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .15s, color .15s;
  white-space: nowrap;
  font-family: var(--font-body);
}
.pf-devis-btn:hover {
  background: var(--green-dark);
  color: #fff;
}

/* Badge compteur "Mon devis" */
.btn-devis { position: relative; }
.tef-devis-badge {
  display: none;
  position: absolute;
  top: -7px;
  right: -10px;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  background: var(--gold);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  pointer-events: none;
}

/* Ancien style conservé pour compatibilité */
.product-unit { display: none; }
.btn-product-devis { display: none; }

/* ── Bouton "Voir la fiche" sur la carte ── */
.pf-voir-fiche {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-dk);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-body);
  letter-spacing: .04em;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}
.pf-voir-fiche:hover { color: var(--green-dark); }

/* ── Tiroir fiche produit (slide-up) ── */
#tef-fiche-drawer {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
}
#tef-fiche-drawer.open { pointer-events: all; }

#tef-fiche-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,34,20,.52);
  opacity: 0;
  transition: opacity .28s ease;
  cursor: pointer;
}
#tef-fiche-drawer.open #tef-fiche-overlay { opacity: 1; }

#tef-fiche-panel {
  position: relative;
  background: #fff;
  border-radius: 18px 18px 0 0;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform .3s cubic-bezier(.32,.72,0,1);
  box-shadow: 0 -8px 40px rgba(20,34,20,.18);
}
#tef-fiche-drawer.open #tef-fiche-panel { transform: translateY(0); }

/* Handle bar */
#tef-fiche-panel::before {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin: 12px auto 0;
  flex-shrink: 0;
}

/* Header du tiroir */
.tef-fiche-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px 12px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.tef-fiche-back {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-dark);
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 10px 6px 4px;
  border-radius: 6px;
  font-family: var(--font-body);
  transition: background .15s;
  flex-shrink: 0;
}
.tef-fiche-back:hover { background: var(--green-bg); }
.tef-fiche-back svg { width: 16px; height: 16px; }
.tef-fiche-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--green-dark);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Corps scrollable */
.tef-fiche-body {
  overflow-y: auto;
  flex: 1;
  padding: 20px 20px 0;
  -webkit-overflow-scrolling: touch;
}

/* Grande image */
.tef-fiche-img {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--green-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.tef-fiche-img .product-img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.tef-fiche-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tef-fiche-nom {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--green-dark);
  margin-bottom: 8px;
  line-height: 1.25;
}
.tef-fiche-desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
}
.tef-fiche-meta {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Footer collant avec bandeau devis */
.tef-fiche-footer {
  flex-shrink: 0;
  padding: 16px 20px 20px;
  border-top: 1px solid var(--border);
  background: var(--green-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.tef-fiche-footer .pf-ref { font-size: 0.78rem; font-weight: 700; color: var(--text-mid); flex-shrink:0; }
.tef-fiche-footer .pf-right { display:flex; align-items:center; gap:6px; margin-left:auto; }
.tef-fiche-footer .pf-qty  { width:42px; height:34px; border:1.5px solid var(--border); border-radius:4px; text-align:center; font-size:.9rem; }
.tef-fiche-footer .pf-plus { width:34px; height:34px; border-radius:50%; background:#4a9a5a; color:#fff; border:none; font-size:1.2rem; cursor:pointer; }
.tef-fiche-footer .pf-devis-btn {
  height:34px; padding:0 16px;
  background: var(--green-dark); color:#fff;
  border: none; border-radius:4px;
  font-size:0.78rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase;
  cursor:pointer; font-family:var(--font-body);
  transition: background .15s;
}
.tef-fiche-footer .pf-devis-btn:hover { background: var(--gold-dk); }

@media (min-width: 640px) {
  #tef-fiche-panel { max-width: 540px; margin: 0 auto; border-radius: 18px 18px 0 0; }
}

/* CTA bas de page catégorie */
.cat-page-cta {
  background: var(--green-dark);
  padding: 64px 48px;
  text-align: center;
}

.cat-page-cta h2 {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
}

.cat-page-cta p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,.58);
  margin-bottom: 28px;
}

.btn-cta {
  display: inline-block;
  padding: 13px 36px;
  border: 1px solid rgba(196,164,53,.70);
  color: var(--gold-lt);
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background .25s, border-color .25s;
}

.btn-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ─── PAGES LÉGALES (CGV, Mentions légales) ────────────────────── */
.legal-page-hero {
  background: var(--green-pale);
  padding: 52px 56px;
  border-bottom: 1px solid var(--border);
}

.legal-page-hero h1 {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 300;
  color: var(--green-dark);
  letter-spacing: .04em;
  margin-bottom: 6px;
}

.legal-page-hero p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-light);
  font-family: var(--font-sans);
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 48px 80px;
}

.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--green-dark);
  margin: 40px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.legal-content h2:first-of-type { margin-top: 0; }

.legal-content p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 12px;
}

.legal-content ul {
  margin: 8px 0 14px 20px;
  list-style: disc;
}

.legal-content ul li {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.80;
  margin-bottom: 4px;
}

.legal-content strong {
  font-weight: 500;
  color: var(--green-dark);
}

.legal-intro {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 36px;
  padding: 20px 24px;
  background: var(--green-pale);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}

@media (max-width: 720px) {
  .legal-page-hero { padding: 40px 20px; }
  .legal-page-hero h1 { font-size: 30px; }
  .legal-content { padding: 40px 20px 60px; }
}

/* ─── PAGE CONTACT (standalone) ─────────────────────────────────── */
.contact-page-hero {
  background: var(--green-pale);
  padding: 60px 56px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.contact-page-hero h1 {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--green-dark);
  letter-spacing: .04em;
  margin-bottom: 10px;
}

.contact-page-hero p {
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  color: var(--text-mid);
  font-family: var(--font-serif);
}

/* ─── SCROLL REVEAL ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .60s ease, transform .60s ease;
}

.reveal.visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1060px) {
  .cat-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(3,270px); }
  .usp-grid { grid-template-columns: repeat(2,1fr); }
  .produits-cols { grid-template-columns: 1fr; gap: 40px; }
  .produits-gallery { grid-template-columns: repeat(4,1fr); grid-template-rows: repeat(2,110px); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-inner { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .products-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 720px) {
  .header-top { padding: 0 20px; height: 76px; }
  .nav-main { display: none; position: absolute; top: 76px; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--border); z-index: 200; }
  .nav-main.open { display: block; }
  .nav-main.open ul { flex-direction: column; gap: 0; }
  .nav-main.open a { display: block; padding: 15px 28px; border-bottom: 1px solid var(--border); }
  .nav-burger { display: block; }
  .cat-nav-inner a { height: 60px; font-size: 13px; min-width: 120px; }
  .cat-grid-wrapper { padding: 0 12px 12px; }
  .cat-grid { grid-template-columns: 1fr; grid-template-rows: repeat(6,200px); gap: 10px; }
  .info-grid { grid-template-columns: 1fr; gap: 32px; }
  .usp-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .products-grid { grid-template-columns: 1fr; }
  .cat-page-hero h1 { font-size: 34px; }
  .cat-page-hero .cat-hero-content { padding: 0 24px 32px; }
  .products-section { padding: 40px 20px; }
  .cat-page-cta { padding: 48px 24px; }
  .info-section, .usp-section, .produits-section, .process-section,
  .avis-section, .about-section, .contact-section, .site-footer,
  .contact-page-hero { padding-left: 20px; padding-right: 20px; }
  .section-intro { padding-left: 20px; padding-right: 20px; }
  .hero h1 .h1-top { font-size: 72px; }
  .about-photo-placeholder { height: 280px; }
}
