/* ============================================================
   iClinique × Repair Club — styles
   Implémentation du design « Site iClinique.dc.html »
   ============================================================ */

:root {
  --red: #E8354D;
  --red2: #F0426A;
  --ink: #23272F;
  --text: #2E3340;
  --text2: #4A4F5C;
  --muted: #6B7080;
  --muted2: #8A8F9C;
  --muted3: #9AA0AC;
  --grey-on-dark: #B8BDC9;
  --pink-bg: #FFF6F7;
  --pink-bg2: #FFF0F2;
  --pink-border: #F0E2E5;
  --pink-border2: #FFD3DB;
  --line: #ECEDF1;
}

* { box-sizing: border-box; }

html { scroll-behavior: auto; }

body {
  margin: 0;
  background: #fff;
  font-family: 'Nunito', system-ui, sans-serif;
  color: var(--text);
}

input::placeholder, textarea::placeholder { color: #B4B9C4; }

img { max-width: 100%; }

@keyframes icFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

.page { animation: icFadeUp .35s ease both; }
.hero-slide { animation: icFadeUp .45s ease both; }

/* ===== layout shell ===== */
.site { min-height: 100vh; display: flex; flex-direction: column; }
.site-main { flex: 1; }

/* ===== promo bar ===== */
.promo-bar {
  background: var(--ink); color: #D9DCE3;
  font-size: 12.5px; font-weight: 700; text-align: center;
  padding: 9px 16px;
}
.promo-bar a { color: var(--red2); cursor: pointer; text-decoration: underline; }

/* ===== nav ===== */
.nav {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 10px clamp(14px, 2vw, 28px);
  padding: 10px clamp(20px, 3vw, 44px);
  min-height: 46px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.nav-logo { height: 30px; width: auto; cursor: pointer; }
.nav-links {
  display: flex; flex-wrap: wrap;
  gap: 8px clamp(10px, 1.6vw, 24px);
  font-size: clamp(12px, 1.15vw, 13.5px);
  font-weight: 700; color: var(--text2);
  margin-left: auto; align-items: center;
}
.nav-links a { cursor: pointer; white-space: nowrap; color: inherit; text-decoration: none; }
.nav-links a:hover { color: var(--red); }
.nav-actions { display: flex; align-items: center; gap: clamp(8px, 1.2vw, 14px); flex: none; }
.nav-lang { font-size: 12px; font-weight: 700; color: var(--muted2); cursor: pointer; white-space: nowrap; }

/* ===== buttons ===== */
.btn { display: inline-block; border-radius: 99px; cursor: pointer; text-decoration: none; white-space: nowrap; text-align: center; }
.btn-primary {
  background: linear-gradient(120deg, var(--red), var(--red2));
  color: #fff; font-weight: 800;
  box-shadow: 0 8px 24px rgba(232,53,77,.35);
  transition: box-shadow .2s;
}
.btn-primary:hover { box-shadow: 0 10px 30px rgba(232,53,77,.5); }
.btn-primary.sm { font-size: 13px; padding: 9px 18px; box-shadow: 0 4px 14px rgba(232,53,77,.35); }
.btn-primary.sm:hover { box-shadow: 0 6px 20px rgba(232,53,77,.5); }
.btn-primary.md { font-size: 14px; padding: 12px 26px; }
.btn-primary.lg { font-size: 16px; padding: 15px 30px; }
.btn-primary.form { font-size: 15px; padding: 14px 32px; }
.btn-outline-ink {
  border: 1.5px solid var(--ink); color: var(--ink);
  font-size: 13px; font-weight: 800; padding: 8px 17px;
  transition: background .2s, color .2s;
}
.btn-outline-ink:hover { background: var(--ink); color: #fff; }
.btn-outline-soft {
  background: #fff; border: 1.5px solid #EDD5D9; color: var(--text);
  font-size: 16px; font-weight: 800; padding: 15px 30px;
}
.btn-outline-red {
  border: 1.5px solid var(--red); color: var(--red);
  font-size: 14px; font-weight: 800; padding: 12px 24px;
  transition: background .2s, color .2s;
}
.btn-outline-red:hover { background: var(--red); color: #fff; }
.btn-white-on-dark { background: #fff; color: var(--ink); font-size: 14px; font-weight: 800; padding: 12px 24px; }
.btn-ghost-on-dark { border: 1.5px solid rgba(255,255,255,.25); color: #fff; font-size: 14px; font-weight: 800; padding: 12px 24px; }
.btn-dark { background: var(--ink); color: #fff; font-size: 16px; font-weight: 800; padding: 15px 30px; }

/* ===== hero ===== */
.hero {
  position: relative;
  background: radial-gradient(120% 140% at 85% 0%, #FFE9ED 0%, #FFF6F7 45%, #FFF9FA 100%);
  overflow: hidden;
}
.hero-slide {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 48px; align-items: center;
  padding: 64px 64px 40px;
  min-height: 480px;
}
.hero-slide[hidden] { display: none; }
.hero h1 { font-size: 58px; font-weight: 900; line-height: 1.04; letter-spacing: -.02em; color: var(--ink); margin: 0; }
.hero h1.promo { font-size: 52px; line-height: 1.06; }
.hero .grad-text {
  background: linear-gradient(120deg, var(--red), var(--red2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { font-size: 19px; font-weight: 600; color: var(--muted); margin: 22px 0 0; line-height: 1.55; max-width: 520px; }
.hero-ctas { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-media, .hero video {
  height: 380px; width: 100%; object-fit: cover;
  border-radius: 28px; box-shadow: 0 20px 50px rgba(232,53,77,.15);
  display: block;
}
.hero-media { background-size: cover; background-position: center; }
.badge-soft {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--pink-border2); color: var(--red);
  font-size: 12.5px; font-weight: 800; padding: 7px 14px;
  border-radius: 99px; margin-bottom: 22px; cursor: pointer;
}
.badge-red { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: #fff; font-size: 12.5px; font-weight: 800; padding: 7px 14px; border-radius: 99px; margin-bottom: 22px; }
.badge-ink { display: inline-flex; align-items: center; gap: 8px; background: var(--ink); color: #fff; font-size: 12.5px; font-weight: 800; padding: 7px 14px; border-radius: 99px; margin-bottom: 22px; }
.hero-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin-top: 26px; max-width: 560px; }
.hero-checks > div { display: flex; gap: 10px; align-items: baseline; }
.hero-checks .tick { color: var(--red); font-weight: 900; }
.hero-checks .txt { font-size: 15.5px; font-weight: 700; color: var(--text2); }
.hero-label-img {
  position: absolute; top: -34px; right: 30px;
  width: 118px; height: 118px; transform: rotate(-9deg);
  filter: drop-shadow(0 10px 24px rgba(35,39,47,.25));
  z-index: 2;
}

.hero-dots { display: flex; gap: 10px; justify-content: center; align-items: center; padding: 6px 0 26px; }
.hero-dots span { width: 8px; height: 8px; border-radius: 99px; background: #EFD2D7; cursor: pointer; transition: all .3s; }
.hero-dots span.on { width: 26px; background: var(--red); }

.hero-stats { display: flex; gap: 28px; justify-content: center; padding: 0 64px 34px; flex-wrap: wrap; }
.hero-stats > div { display: flex; gap: 8px; align-items: baseline; }
.hero-stats .num { font-size: 20px; font-weight: 900; color: var(--red); }
.hero-stats .lbl { font-size: 12px; font-weight: 700; color: var(--muted3); }

/* ===== quote teaser (home) ===== */
.teaser-wrap { padding: 64px; background: linear-gradient(180deg, #FFF9FA 0%, #FFFDFD 45%, #FFFFFF 100%); }
.teaser-card {
  max-width: 1000px; margin: 0 auto;
  background: #fff; border: 1px solid var(--pink-border);
  border-radius: 28px; box-shadow: 0 12px 40px rgba(35,39,47,.08);
  padding: 36px 40px;
}
.teaser-head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.teaser-head h2 { font-size: 24px; font-weight: 900; margin: 0; }
.teaser-head .note { font-size: 13px; font-weight: 700; color: var(--muted3); }
.brands-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 12px; margin-top: 22px; }
.brand-card {
  border: 1.5px solid var(--line); border-radius: 16px;
  padding: 16px 10px; text-align: center; cursor: pointer; background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.brand-card:hover { border-color: var(--red); box-shadow: 0 6px 18px rgba(232,53,77,.12); }
.brand-card .img { height: 64px; border-radius: 8px; background-size: contain; background-position: center; background-repeat: no-repeat; }
.brand-card .name { font-size: 14px; font-weight: 800; margin-top: 8px; }
.brand-card .sub { font-size: 11.5px; font-weight: 700; color: var(--muted3); }
.teaser-note { font-size: 12.5px; font-weight: 600; color: var(--muted3); margin-top: 18px; }

/* ===== microsoudure dark band (home) ===== */
.micro-band {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
  background: var(--ink); padding: 72px 64px; color: #fff;
}
.micro-band .photo { height: 340px; border-radius: 24px; background-size: cover; background-position: center; }
.kicker { font-size: 13px; font-weight: 800; letter-spacing: .1em; color: var(--red2); text-transform: uppercase; }
.kicker.red { color: var(--red); }
.micro-band h2 { font-size: 42px; font-weight: 900; line-height: 1.1; margin: 12px 0 0; }
.micro-band p { font-size: 16px; font-weight: 600; color: var(--grey-on-dark); margin: 18px 0 0; line-height: 1.6; }
.micro-band .ctas { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }

/* ===== avis ===== */
.reviews { padding: 64px; background: var(--pink-bg); }
.reviews h2 { text-align: center; font-size: 36px; font-weight: 900; color: var(--ink); margin: 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1020px; margin: 36px auto 0; }
.review-card { background: #fff; border-radius: 20px; padding: 26px; box-shadow: 0 2px 10px rgba(232,53,77,.07); }
.review-card .stars { color: var(--red); font-size: 14px; }
.review-card .quote { font-size: 14.5px; font-weight: 600; line-height: 1.55; color: var(--text2); margin-top: 10px; }
.review-card .who { font-size: 12.5px; font-weight: 800; color: var(--muted3); margin-top: 12px; }
.reviews .more { text-align: center; margin-top: 26px; }
.reviews .more a { font-size: 13.5px; font-weight: 800; color: var(--red); text-decoration: none; }

/* ===== blog teaser + blog ===== */
.blogteaser { padding: 64px; background: #F7F8FA; }
.blogteaser-head { display: flex; align-items: baseline; justify-content: space-between; max-width: 1020px; margin: 0 auto; }
.blogteaser-head h2 { font-size: 30px; font-weight: 900; margin: 0; }
.link-red { font-size: 14px; font-weight: 800; color: var(--red); cursor: pointer; text-decoration: none; }
.blogteaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1020px; margin: 28px auto 0; }
.article-card {
  display: block; background: #fff; border-radius: 20px; overflow: hidden; cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
  transition: box-shadow .25s;
  text-decoration: none; color: inherit;
}
.article-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,.1); }
.ph-img {
  background: repeating-linear-gradient(45deg, #F2F3F6 0 10px, #FAFBFC 10px 20px);
  display: flex; align-items: center; justify-content: center;
  font: 11px ui-monospace, monospace; color: var(--muted3);
}
.article-card .ph-img { height: 130px; }
.article-card .body { padding: 20px 22px; }
.tag-red { font-size: 11.5px; font-weight: 800; color: var(--red); text-transform: uppercase; letter-spacing: .05em; }
.article-card .title { font-size: 16.5px; font-weight: 800; line-height: 1.35; margin-top: 6px; }

.blog-header { text-align: center; padding: 66px 32px 20px; }
.blog-header h1 { font-size: 44px; font-weight: 900; margin: 12px 0 0; color: var(--ink); }
.blog-header p { font-size: 16px; font-weight: 600; color: var(--muted); margin: 12px 0 0; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 960px; margin: 36px auto 0; padding: 0 32px 80px; }
.blog-card { display: block; background: #fff; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; cursor: pointer; transition: box-shadow .25s; text-decoration: none; color: inherit; }
.blog-card:hover { box-shadow: 0 14px 40px rgba(0,0,0,.1); }
.blog-card .ph-img { height: 180px; }
.blog-card .body { padding: 24px 26px; }
.blog-card .meta { display: flex; gap: 10px; align-items: baseline; }
.blog-card .date { font-size: 11.5px; font-weight: 700; color: var(--muted3); }
.blog-card .title { font-size: 20px; font-weight: 900; line-height: 1.3; margin-top: 8px; }
.blog-card .excerpt { font-size: 14px; font-weight: 600; color: var(--muted); line-height: 1.55; margin-top: 8px; }
.blog-card .read { font-size: 13.5px; font-weight: 800; color: var(--red); margin-top: 14px; }

/* ===== article ===== */
.article-wrap { max-width: 720px; margin: 0 auto; padding: 56px 32px 80px; }
.article-wrap .back { font-size: 13.5px; font-weight: 800; color: var(--red); cursor: pointer; text-decoration: none; }
.article-wrap .meta { display: flex; gap: 10px; align-items: baseline; margin-top: 22px; }
.article-wrap .meta .tag { font-size: 12px; font-weight: 800; color: var(--red); text-transform: uppercase; letter-spacing: .05em; }
.article-wrap .meta .date { font-size: 12px; font-weight: 700; color: var(--muted3); }
.article-wrap h1 { font-size: 38px; font-weight: 900; line-height: 1.15; margin: 12px 0 0; color: var(--ink); }
.article-wrap .ph-img { height: 260px; border-radius: 20px; margin-top: 28px; }
.article-wrap h2 { font-size: 22px; font-weight: 900; margin: 30px 0 0; }
.article-wrap p { font-size: 16px; font-weight: 600; color: var(--text2); line-height: 1.75; margin: 18px 0 0; }
.article-cta {
  margin-top: 44px; background: var(--pink-bg); border-radius: 20px; padding: 28px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.article-cta .txt { flex: 1; min-width: 260px; }
.article-cta .txt .t { font-size: 17px; font-weight: 900; }
.article-cta .txt .s { font-size: 13.5px; font-weight: 600; color: var(--muted); margin-top: 4px; }

/* ===== devis ===== */
.devis-bg { background: radial-gradient(120% 60% at 50% 0%, #FFF0F2 0%, #FFFFFF 60%); min-height: 70vh; }
.devis-wrap { max-width: 1000px; margin: 0 auto; padding: 56px 32px 90px; }
.devis-head { text-align: center; }
.devis-head h1 { font-size: 44px; font-weight: 900; letter-spacing: -.01em; margin: 0; color: var(--ink); }
.devis-head p { font-size: 16.5px; font-weight: 600; color: var(--muted); margin: 14px 0 0; }

.steps { display: flex; justify-content: center; gap: 10px; margin: 32px 0 40px; flex-wrap: wrap; }
.steps .step { display: flex; align-items: center; gap: 8px; }
.steps .num {
  width: 26px; height: 26px; border-radius: 99px;
  background: #F3E4E7; color: #C48B96;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900;
}
.steps .step.on .num { background: var(--red); color: #fff; }
.steps .lbl { font-size: 13px; font-weight: 800; color: var(--text2); }
.steps .bar { width: 34px; height: 1.5px; background: #ECDDE0; align-self: center; }

.panel {
  background: #fff; border: 1px solid var(--pink-border);
  border-radius: 24px; padding: 32px 34px;
  box-shadow: 0 8px 30px rgba(35,39,47,.06);
}
.panel-title { font-size: 19px; font-weight: 900; }
.panel-titlebar { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.link-back { font-size: 13px; font-weight: 800; color: var(--red); cursor: pointer; }

.devis-brands-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 20px; }
.devis-brands-grid .brand-card { padding: 18px 10px; }
.devis-brands-grid .brand-card .img { height: 70px; }
.devis-brands-grid .brand-card .sub { font-size: 11px; }

.models-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 20px; }
.model-card {
  border: 1.5px solid var(--line); border-radius: 14px;
  padding: 15px 14px; font-size: 14px; font-weight: 800;
  cursor: pointer; text-align: center;
  transition: border-color .2s, color .2s;
}
.model-card:hover { border-color: var(--red); color: var(--red); }
.other-model { font-size: 12.5px; font-weight: 600; color: var(--muted3); margin-top: 16px; }
.other-model span { color: var(--red); font-weight: 800; cursor: pointer; text-decoration: underline; }

.issues-list { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.issue-card {
  display: grid; grid-template-columns: 40px 1fr auto;
  gap: 16px; align-items: center;
  border: 1.5px solid var(--line); border-radius: 16px;
  padding: 16px 20px; cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}
.issue-card:hover { border-color: var(--red); box-shadow: 0 6px 18px rgba(232,53,77,.1); }
.issue-card .icon { font-size: 22px; }
.issue-card .name { font-size: 15.5px; font-weight: 800; }
.issue-card .desc { font-size: 13px; font-weight: 600; color: var(--muted2); }
.issue-card .price { font-size: 15px; font-weight: 900; color: var(--red); }

.devis-final { display: grid; grid-template-columns: 340px 1fr; gap: 22px; align-items: start; }
.recap { background: var(--ink); color: #fff; border-radius: 24px; padding: 28px; }
.recap .kicker2 { font-size: 12px; font-weight: 800; letter-spacing: .08em; color: var(--red2); text-transform: uppercase; }
.recap .model { font-size: 21px; font-weight: 900; margin-top: 10px; }
.recap .issue { font-size: 14.5px; font-weight: 700; color: var(--grey-on-dark); margin-top: 4px; }
.recap .price-row {
  border-top: 1px solid rgba(255,255,255,.12);
  margin: 18px 0; padding-top: 18px;
  display: flex; justify-content: space-between; align-items: baseline;
}
.recap .price-lbl { font-size: 13px; font-weight: 700; color: var(--muted2); }
.recap .price-val { font-size: 24px; font-weight: 900; color: var(--red2); }
.recap .note { font-size: 12px; font-weight: 600; color: var(--muted2); line-height: 1.5; }
.recap .edit { display: inline-block; margin-top: 14px; font-size: 12.5px; font-weight: 800; color: var(--red2); cursor: pointer; }

.form-panel { background: #fff; border: 1px solid var(--pink-border); border-radius: 24px; padding: 28px 30px; box-shadow: 0 8px 30px rgba(35,39,47,.06); }
.form-panel .q { font-size: 17px; font-weight: 900; }
.deliv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 14px; }
.deliv-card { border: 1.5px solid var(--line); background: #fff; border-radius: 14px; padding: 14px; cursor: pointer; text-align: center; }
.deliv-card.on { border-color: var(--red); background: var(--pink-bg2); }
.deliv-card .icon { font-size: 20px; }
.deliv-card .lbl { font-size: 13.5px; font-weight: 800; margin-top: 4px; }
.deliv-card .sub { font-size: 11.5px; font-weight: 600; color: var(--muted2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.contact-grid input, .contact-grid textarea {
  border: 1.5px solid var(--line); border-radius: 12px;
  padding: 13px 16px; font: 700 14px 'Nunito', sans-serif;
  color: var(--text); outline: none; width: 100%;
}
.contact-grid textarea { font-weight: 600; resize: vertical; }
.contact-grid .full { grid-column: 1 / -1; }
.form-error { margin-top: 12px; font-size: 13px; font-weight: 800; color: var(--red); }

.confirm-card {
  max-width: 560px; margin: 40px auto 0; text-align: center;
  background: #fff; border: 1px solid var(--pink-border);
  border-radius: 28px; padding: 52px 44px;
  box-shadow: 0 12px 40px rgba(35,39,47,.08);
}
.confirm-card .check {
  width: 74px; height: 74px; border-radius: 99px;
  background: linear-gradient(120deg, var(--red), var(--red2));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto; font-size: 34px; color: #fff;
}
.confirm-card h1 { font-size: 32px; font-weight: 900; margin: 22px 0 0; }
.confirm-card p { font-size: 15.5px; font-weight: 600; color: var(--muted); line-height: 1.6; margin: 12px 0 0; }
.confirm-card p b { color: var(--ink); }
.confirm-card .ref { display: inline-block; margin-top: 20px; background: var(--pink-bg2); color: var(--red); font-size: 14px; font-weight: 900; padding: 10px 22px; border-radius: 99px; }
.confirm-card .again { font-size: 13.5px; font-weight: 800; color: var(--red); cursor: pointer; text-decoration: underline; }

/* ===== fusion ===== */
.fusion-hero { text-align: center; padding: 76px 32px 56px; background: radial-gradient(120% 100% at 50% 0%, #FFE9ED 0%, #FFFFFF 70%); }
.fusion-hero h1 { font-size: 52px; font-weight: 900; letter-spacing: -.02em; margin: 14px 0 0; color: var(--ink); }
.fusion-hero p { font-size: 18px; font-weight: 600; color: var(--muted); max-width: 640px; margin: 20px auto 0; line-height: 1.6; }
.fusion-logos { display: flex; align-items: center; justify-content: center; gap: 34px; margin-top: 40px; flex-wrap: wrap; }
.fusion-logos img { height: 52px; width: auto; }
.fusion-logos .x { font-size: 30px; font-weight: 900; color: var(--red); }
.fusion-body { max-width: 860px; margin: 0 auto; padding: 56px 32px; }

.timeline-row { display: grid; grid-template-columns: 120px 24px 1fr; gap: 18px; }
.timeline-row .year { font-size: 20px; font-weight: 900; color: var(--red); text-align: right; }
.timeline-row .rail { display: flex; flex-direction: column; align-items: center; }
.timeline-row .dot { width: 12px; height: 12px; border-radius: 99px; background: var(--red); flex: none; }
.timeline-row .dot.ink { background: var(--ink); }
.timeline-row .line { width: 2px; flex: 1; background: var(--pink-border2); }
.timeline-row .content { padding-bottom: 36px; }
.timeline-row:last-child .content { padding-bottom: 0; }
.timeline-row .t { font-size: 18px; font-weight: 900; }
.timeline-row .d { font-size: 14.5px; font-weight: 600; color: var(--muted); line-height: 1.6; margin-top: 6px; }

.fusion-body h2 { font-size: 26px; font-weight: 900; margin: 56px 0 0; }
.changes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 22px; }
.change-card { background: var(--pink-bg); border-radius: 18px; padding: 24px; }
.change-card .t { font-size: 15.5px; font-weight: 900; }
.change-card .d { font-size: 13.5px; font-weight: 600; color: var(--muted); line-height: 1.55; margin-top: 6px; }
.fusion-cta { text-align: center; margin-top: 48px; }

/* ===== micro page ===== */
.micro-hero { background: var(--ink); color: #fff; padding: 76px 64px; }
.micro-hero-inner { max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr .9fr; gap: 52px; align-items: center; }
.micro-hero h1 { font-size: 48px; font-weight: 900; line-height: 1.08; margin: 14px 0 0; }
.micro-hero p { font-size: 17px; font-weight: 600; color: var(--grey-on-dark); line-height: 1.65; margin: 20px 0 0; }
.micro-hero .ctas { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.micro-hero .photo { height: 360px; border-radius: 26px; background-size: cover; background-position: center; }
.micro-cards { max-width: 980px; margin: 0 auto; padding: 64px 32px; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.info-card { border: 1px solid var(--line); border-radius: 22px; padding: 30px; }
.info-card .icon { font-size: 26px; }
.info-card .t { font-size: 18px; font-weight: 900; margin-top: 12px; }
.info-card .d { font-size: 14px; font-weight: 600; color: var(--muted); line-height: 1.6; margin-top: 8px; }
.subtraitant-band {
  margin-top: 40px; background: var(--pink-bg); border-radius: 22px; padding: 32px 36px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.subtraitant-band .txt { flex: 1; min-width: 300px; }
.macao-logo-box { background: #fff; border-radius: 16px; padding: 16px 20px; flex: none; box-shadow: 0 4px 14px rgba(35,39,47,.08); }
.macao-logo-box img { height: 46px; width: auto; display: block; }
.offer-row .macao-icon { height: 22px; width: auto; display: block; }
.subtraitant-band .t { font-size: 19px; font-weight: 900; }
.subtraitant-band .d { font-size: 14px; font-weight: 600; color: var(--muted); line-height: 1.6; margin-top: 6px; }

/* ===== b2b ===== */
.b2b-hero { text-align: center; padding: 72px 32px 48px; background: radial-gradient(120% 100% at 50% 0%, #FFE9ED 0%, #FFFFFF 70%); }
.b2b-hero h1 { font-size: 48px; font-weight: 900; letter-spacing: -.01em; margin: 14px 0 0; color: var(--ink); }
.b2b-hero p { font-size: 17px; font-weight: 600; color: var(--muted); max-width: 600px; margin: 16px auto 0; line-height: 1.6; }
.b2b-body { max-width: 980px; margin: 0 auto; padding: 20px 32px 72px; }
.b2b-body h2 { font-size: 28px; font-weight: 900; margin: 52px 0 0; color: var(--ink); }
.b2b-body h2.first { margin-top: 56px; }

.offer-list { margin-top: 22px; border-top: 1px solid rgba(0,0,0,.08); }
.offer-row {
  display: grid; grid-template-columns: 44px 1fr 1.4fr;
  gap: 20px; align-items: center;
  padding: 20px 0; border-bottom: 1px solid rgba(0,0,0,.08);
}
.offer-row .icon { font-size: 22px; }
.offer-row .t { font-size: 17px; font-weight: 900; }
.offer-row .d { font-size: 14px; font-weight: 600; color: var(--muted2); line-height: 1.55; }

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 20px; }
.who-card { background: var(--pink-bg); border-radius: 18px; padding: 22px; }
.who-card .t { font-size: 15px; font-weight: 900; }
.who-card .d { font-size: 13px; font-weight: 600; color: var(--muted); line-height: 1.55; margin-top: 6px; }
.how-card { border: 1px solid var(--line); border-radius: 18px; padding: 22px; }
.how-card .n { font-size: 26px; font-weight: 900; color: var(--red); }
.how-card .t { font-size: 15px; font-weight: 900; margin-top: 8px; }
.how-card .d { font-size: 13px; font-weight: 600; color: var(--muted); line-height: 1.55; margin-top: 6px; }

.b2b-testimonial {
  margin-top: 52px; background: #fff; border: 1px solid var(--pink-border);
  border-radius: 22px; padding: 32px 36px;
  box-shadow: 0 8px 30px rgba(35,39,47,.05);
}
.b2b-testimonial .stars { color: var(--red); font-size: 15px; }
.b2b-testimonial .quote { font-size: 17px; font-weight: 700; line-height: 1.6; color: var(--text); margin-top: 10px; }
.b2b-testimonial .who { font-size: 13px; font-weight: 800; color: var(--muted3); margin-top: 12px; }

.b2b-cta {
  margin-top: 36px; background: var(--ink); color: #fff;
  border-radius: 26px; padding: 40px 44px;
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.b2b-cta .txt { flex: 1; min-width: 300px; }
.b2b-cta .t { font-size: 24px; font-weight: 900; }
.b2b-cta .d { font-size: 14.5px; font-weight: 600; color: var(--grey-on-dark); margin-top: 8px; line-height: 1.6; }
.b2b-cta .btns { display: flex; gap: 12px; flex-wrap: wrap; }
.b2b-cta .btn-mail { background: linear-gradient(120deg, var(--red), var(--red2)); color: #fff; font-size: 15px; font-weight: 800; padding: 14px 28px; border-radius: 99px; text-decoration: none; }
.b2b-cta .btn-tel { border: 1.5px solid rgba(255,255,255,.25); color: #fff; font-size: 15px; font-weight: 800; padding: 14px 28px; border-radius: 99px; text-decoration: none; }

/* ===== ateliers ===== */
.ateliers-head { text-align: center; padding: 66px 32px 40px; }
.ateliers-head h1 { font-size: 44px; font-weight: 900; margin: 12px 0 0; color: var(--ink); }
.ateliers-head p { font-size: 16px; font-weight: 600; color: var(--muted); margin: 12px 0 0; }
.ateliers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1060px; margin: 0 auto; padding: 0 32px; }
.atelier-card { border: 1px solid var(--line); border-radius: 22px; overflow: hidden; position: relative; }
.badge-soon {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: linear-gradient(120deg, var(--red), var(--red2));
  color: #fff; font-size: 12px; font-weight: 800;
  padding: 6px 14px; border-radius: 99px;
  box-shadow: 0 4px 14px rgba(232,53,77,.35);
}
.map-wrap { position: relative; height: 180px; overflow: hidden; }
/* l'iframe est plus haute que son conteneur : la barre d'attribution OSM est rognée */
.atelier-card .map { display: block; width: 100%; height: 248px; border: 0; }
.map-credit {
  position: absolute; bottom: 6px; right: 8px; z-index: 2;
  background: rgba(255,255,255,.88);
  font-size: 10.5px; font-weight: 700; color: var(--muted);
  padding: 2px 9px; border-radius: 99px;
}
.map-credit a { color: inherit; text-decoration: none; }
.atelier-card .itin { display: inline-block; margin-top: 12px; font-size: 13.5px; font-weight: 800; color: var(--red); text-decoration: none; }
.atelier-card .body { padding: 24px 26px; }
.atelier-card .brand { font-size: 12px; font-weight: 800; color: var(--red); text-transform: uppercase; letter-spacing: .05em; }
.atelier-card .addr { font-size: 17px; font-weight: 900; margin-top: 6px; }
.atelier-card .info { font-size: 13.5px; font-weight: 600; color: var(--muted); margin-top: 10px; line-height: 1.6; }
.ateliers-extra { max-width: 1060px; margin: 28px auto 72px; padding: 0 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.extra-card { background: var(--pink-bg); border-radius: 22px; padding: 30px 32px; }
.extra-card.dark { background: var(--ink); color: #fff; }
.extra-card .t { font-size: 19px; font-weight: 900; }
.extra-card .d { font-size: 14px; font-weight: 600; color: var(--muted); line-height: 1.65; margin-top: 8px; }
.extra-card.dark .d { color: var(--grey-on-dark); }
.extra-card .link { display: inline-block; margin-top: 14px; font-size: 13.5px; font-weight: 800; color: var(--red); text-decoration: none; }
.btn-whatsapp { display: inline-block; margin-top: 14px; background: #25D366; color: #fff; font-size: 13.5px; font-weight: 800; padding: 11px 22px; border-radius: 99px; text-decoration: none; }

/* ===== boutique ===== */
.nav-cart { position: relative; font-size: 19px; text-decoration: none; line-height: 1; }
.cart-count {
  position: absolute; top: -7px; right: -10px;
  background: linear-gradient(120deg, var(--red), var(--red2));
  color: #fff; font-size: 10.5px; font-weight: 900;
  min-width: 17px; height: 17px; border-radius: 99px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 4px; box-sizing: border-box;
}
.cart-count[hidden] { display: none; }

.shop-header { text-align: center; padding: 66px 32px 8px; }
.shop-header h1 { font-size: 44px; font-weight: 900; margin: 12px 0 0; color: var(--ink); }
.shop-header p { font-size: 16px; font-weight: 600; color: var(--muted); margin: 12px auto 0; max-width: 640px; }
.shop-wrap { max-width: 1060px; margin: 0 auto; padding: 28px 32px 80px; }

.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap; margin-bottom: 24px;
}
.shop-toolbar .chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  border: 1.5px solid var(--line); border-radius: 99px;
  padding: 8px 18px; font-size: 13.5px; font-weight: 800;
  color: var(--text2); cursor: pointer; background: #fff;
  transition: all .2s;
}
.chip:hover { border-color: var(--red); color: var(--red); }
.chip.on { background: var(--ink); border-color: var(--ink); color: #fff; }
.shop-toolbar .controls { display: flex; gap: 8px; flex-wrap: wrap; }
.shop-toolbar input[type="search"], .shop-toolbar select {
  border: 1.5px solid var(--line); border-radius: 99px;
  padding: 9px 16px; font: 700 13px 'Nunito', sans-serif;
  color: var(--text); outline: none; background: #fff;
}
.shop-toolbar input[type="search"] { width: 230px; }
.shop-toolbar input[type="search"]:focus, .shop-toolbar select:focus { border-color: var(--red); }

.shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product-card {
  position: relative; background: #fff;
  border: 1.5px solid var(--line); border-radius: 20px;
  overflow: hidden; cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}
.product-card:hover { border-color: var(--red); box-shadow: 0 10px 30px rgba(232,53,77,.12); }
.product-card.sold-out { opacity: .62; }
.product-card .ph {
  height: 150px; margin: 18px 18px 0;
  background-size: contain; background-position: center; background-repeat: no-repeat;
}
.product-card .body { padding: 14px 18px 18px; }
.product-card .brand { font-size: 11px; font-weight: 800; color: var(--muted3); text-transform: uppercase; letter-spacing: .05em; }
.product-card .title { font-size: 16px; font-weight: 900; margin-top: 2px; }
.product-card .subtitle { font-size: 12.5px; font-weight: 700; color: var(--muted2); }
.product-card .meta { display: flex; align-items: center; gap: 8px; margin-top: 9px; flex-wrap: wrap; }
.product-card .battery { font-size: 11.5px; font-weight: 700; color: var(--muted2); }
.product-card .price-row { display: flex; align-items: baseline; gap: 8px; margin-top: 9px; }
.product-card .price { font-size: 19px; font-weight: 900; color: var(--red); }
.old-price { font-size: 13px; font-weight: 700; color: var(--muted3); text-decoration: line-through; }

.stock-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: 11px; font-weight: 800; padding: 4px 11px; border-radius: 99px;
}
.stock-badge.in { background: #E6F9EE; color: #128A47; }
.stock-badge.low { background: #FFF3E0; color: #C46A00; }
.stock-badge.last { background: var(--ink); color: #fff; }
.stock-badge.out { background: #EEEFF2; color: var(--muted2); }

.grade-badge {
  font-size: 11px; font-weight: 900; padding: 4px 11px; border-radius: 99px;
  background: var(--pink-bg2); color: var(--red); cursor: help;
}
.grade-badge.gBp, .grade-badge.gB, .grade-badge.gBm { background: #F1F2F5; color: var(--text2); }

/* skeletons (chargement API) */
@keyframes shopPulse { 0%, 100% { opacity: .55; } 50% { opacity: 1; } }
.skeleton-bar { height: 44px; border-radius: 14px; background: #F2F3F6; animation: shopPulse 1.2s ease infinite; }
.product-card.skeleton { cursor: default; pointer-events: none; }
.product-card.skeleton .ph, .product-card.skeleton .l1, .product-card.skeleton .l2, .product-card.skeleton .l3 {
  background: #F2F3F6; animation: shopPulse 1.2s ease infinite;
}
.product-card.skeleton .l1 { height: 15px; margin: 16px 18px 0; border-radius: 6px; }
.product-card.skeleton .l2 { height: 12px; margin: 8px 40px 0 18px; border-radius: 6px; }
.product-card.skeleton .l3 { height: 18px; margin: 12px 90px 18px 18px; border-radius: 6px; }

.shop-empty { text-align: center; padding: 56px 20px; }
.shop-empty .t { font-size: 20px; font-weight: 900; color: var(--ink); }
.shop-empty .d { font-size: 14.5px; font-weight: 600; color: var(--muted); margin: 10px auto 20px; max-width: 440px; line-height: 1.6; }

.shop-reassure {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(0,0,0,.07);
}
.shop-reassure .item { font-size: 13px; font-weight: 600; color: var(--text2); line-height: 1.5; }

/* fiche produit */
.product-detail { display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; align-items: start; margin-top: 22px; }
.product-detail .gallery {
  position: relative; background: var(--pink-bg);
  border-radius: 26px; padding: 40px;
}
.product-detail .gallery .ph { height: 320px; background-size: contain; background-position: center; background-repeat: no-repeat; }
.product-detail .infos .brand { font-size: 12px; font-weight: 800; color: var(--muted3); text-transform: uppercase; letter-spacing: .06em; }
.product-detail h1 { font-size: 32px; font-weight: 900; color: var(--ink); margin: 6px 0 0; line-height: 1.15; }
.product-detail h1 .sub { font-size: 19px; font-weight: 700; color: var(--muted2); }
.product-detail .meta { display: flex; align-items: center; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.product-detail .grade-desc { font-size: 13px; font-weight: 600; color: var(--muted); }
.battery-line { font-size: 14px; font-weight: 600; color: var(--text2); margin-top: 10px; }
.product-detail .price-row { display: flex; align-items: baseline; gap: 12px; margin-top: 16px; }
.product-detail .price { font-size: 34px; font-weight: 900; color: var(--red); }
.product-detail .save { font-size: 12.5px; font-weight: 800; background: var(--pink-bg2); color: var(--red); padding: 4px 11px; border-radius: 99px; }
.product-detail .desc { font-size: 15px; font-weight: 600; color: var(--muted); line-height: 1.65; margin: 16px 0 0; }
.product-detail .specs { margin: 16px 0 0; padding: 0 0 0 2px; list-style: none; }
.product-detail .specs li { font-size: 14px; font-weight: 600; color: var(--text2); padding: 5px 0; }
.product-detail .specs li::before { content: '✓  '; color: var(--red); font-weight: 900; }
.buy-row { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; align-items: center; }
.product-reassure {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px;
  margin-top: 26px; padding: 18px 20px;
  background: var(--pink-bg); border-radius: 16px;
  font-size: 13px; font-weight: 700; color: var(--text2);
}

/* panier */
.cart-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 24px; align-items: start; }
.cart-row {
  display: grid; grid-template-columns: 74px 1fr auto auto 24px;
  gap: 16px; align-items: center;
  background: #fff; border: 1.5px solid var(--line);
  border-radius: 18px; padding: 14px 18px; margin-bottom: 10px;
}
.cart-row .ph { height: 64px; background-size: contain; background-position: center; background-repeat: no-repeat; }
.cart-row .title { font-size: 15px; font-weight: 900; }
.cart-row .subtitle { font-size: 12.5px; font-weight: 700; color: var(--muted2); }
.cart-row .stock-note { font-size: 11.5px; font-weight: 700; color: #C46A00; margin-top: 3px; }
.cart-row .qty { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.cart-row .step {
  width: 28px; height: 28px; border-radius: 99px;
  border: 1.5px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 900; cursor: pointer; user-select: none;
}
.cart-row .step:hover { border-color: var(--red); color: var(--red); }
.cart-row .step[aria-disabled="true"] { opacity: .35; pointer-events: none; }
.cart-row .line-price { font-size: 16px; font-weight: 900; color: var(--red); white-space: nowrap; }
.cart-row .remove { color: var(--muted3); cursor: pointer; font-weight: 800; text-align: center; }
.cart-row .remove:hover { color: var(--red); }

.cart-summary {
  background: #fff; border: 1px solid var(--pink-border);
  border-radius: 22px; padding: 26px 28px;
  box-shadow: 0 8px 30px rgba(35,39,47,.06);
  position: sticky; top: 84px;
}
.cart-summary .t { font-size: 17px; font-weight: 900; }
.cart-summary .row { display: flex; justify-content: space-between; font-size: 14px; font-weight: 600; color: var(--text2); margin-top: 12px; }
.cart-summary .row.total { border-top: 1px solid var(--line); padding-top: 12px; font-size: 16px; font-weight: 900; color: var(--ink); }
.cart-summary .note { font-size: 12px; font-weight: 600; color: var(--muted3); margin-top: 10px; line-height: 1.5; }
.cart-form { display: grid; gap: 10px; margin-top: 12px; }
.cart-form input, .cart-form select {
  border: 1.5px solid var(--line); border-radius: 12px;
  padding: 12px 15px; font: 700 13.5px 'Nunito', sans-serif;
  color: var(--text); outline: none; background: #fff; width: 100%; box-sizing: border-box;
}
.cart-form input:focus, .cart-form select:focus { border-color: var(--red); }

/* ===== blog : à la une + filtres ===== */
.blog-featured-card {
  display: grid; grid-template-columns: 1fr 1.2fr;
  max-width: 960px; margin: 28px auto 0; padding: 0;
  background: #fff; border: 1.5px solid var(--pink-border);
  border-radius: 26px; overflow: hidden; cursor: pointer;
  text-decoration: none; color: inherit;
  box-shadow: 0 12px 40px rgba(232,53,77,.08);
  transition: box-shadow .25s;
}
.blog-featured-card:hover { box-shadow: 0 18px 50px rgba(232,53,77,.16); }
.blog-featured-card .ph-img { min-height: 260px; height: 100%; }
.blog-featured-card .body { padding: 34px 38px; }
.blog-featured-card .meta { display: flex; gap: 10px; align-items: baseline; }
.blog-featured-card .date { font-size: 12px; font-weight: 700; color: var(--muted3); }
.blog-featured-card .title { font-size: 27px; font-weight: 900; line-height: 1.2; margin-top: 10px; color: var(--ink); }
.blog-featured-card .excerpt { font-size: 15px; font-weight: 600; color: var(--muted); line-height: 1.6; margin-top: 10px; }
.blog-featured-card .read { font-size: 14px; font-weight: 800; color: var(--red); margin-top: 16px; }
.blog-toolbar { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; max-width: 960px; margin: 26px auto 0; padding: 0 32px; }

/* ===== presse ===== */
.press-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.press-card {
  display: block; background: #fff; border: 1px solid var(--line);
  border-radius: 22px; padding: 28px; text-decoration: none; color: inherit;
  transition: box-shadow .25s, border-color .25s;
}
a.press-card:hover { border-color: var(--red); box-shadow: 0 12px 34px rgba(232,53,77,.12); }
.press-card .outlet { font-size: 12px; font-weight: 900; color: var(--red); text-transform: uppercase; letter-spacing: .07em; }
.press-card .title { font-size: 17px; font-weight: 900; line-height: 1.3; margin-top: 8px; color: var(--ink); }
.press-card .quote { font-size: 14px; font-weight: 600; color: var(--muted); line-height: 1.6; margin-top: 10px; }
.press-card .date { font-size: 12px; font-weight: 700; color: var(--muted3); margin-top: 12px; }
.press-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 36px; background: var(--pink-bg); border-radius: 22px; padding: 30px;
}
.press-stats .num { font-size: 26px; font-weight: 900; color: var(--red); }
.press-stats .lbl { font-size: 12.5px; font-weight: 700; color: var(--muted); margin-top: 4px; }

/* ===== paiement ===== */
.pay-methods { font-size: 11.5px; font-weight: 600; color: var(--muted3); margin-top: 12px; text-align: center; line-height: 1.5; }

/* ===== pages légales ===== */
.legal-wrap { max-width: 760px; margin: 0 auto; padding: 56px 32px 80px; }
.legal-wrap h1 { font-size: 36px; font-weight: 900; color: var(--ink); margin: 0 0 8px; }
.legal-wrap .lead { font-size: 14.5px; font-weight: 700; color: var(--muted); line-height: 1.65; background: var(--pink-bg); border-radius: 14px; padding: 16px 20px; }
.legal-wrap h2 { font-size: 21px; font-weight: 900; color: var(--ink); margin: 34px 0 0; }
.legal-wrap h3 { font-size: 16px; font-weight: 900; color: var(--ink); margin: 24px 0 0; }
.legal-wrap p { font-size: 14.5px; font-weight: 600; color: var(--text2); line-height: 1.75; margin: 10px 0 0; }
.legal-wrap a { color: var(--red); font-weight: 700; }
.legal-wrap code { background: #F2F3F6; border-radius: 6px; padding: 1px 6px; font-size: 13px; }
.footer-bottom a { color: var(--muted2); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* ===== footer ===== */
.footer { background: var(--ink); color: var(--grey-on-dark); padding: 56px 64px 0; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; max-width: 1180px; margin: 0 auto; }
.footer-logo-box { background: #fff; border-radius: 14px; padding: 12px 18px; display: inline-block; }
.footer-logo-box img { height: 26px; width: auto; display: block; }
.footer-about { font-size: 13.5px; font-weight: 600; line-height: 1.7; margin-top: 16px; max-width: 300px; }
.footer-socials { display: flex; gap: 10px; margin-top: 16px; font-size: 12.5px; font-weight: 700; flex-wrap: wrap; }
.footer-socials a { color: #fff; text-decoration: none; border: 1px solid rgba(255,255,255,.2); border-radius: 99px; padding: 7px 14px; }
.footer-col-title { font-size: 13px; font-weight: 900; color: #fff; text-transform: uppercase; letter-spacing: .06em; }
.footer-links { display: flex; flex-direction: column; gap: 9px; margin-top: 14px; font-size: 13.5px; font-weight: 600; }
.footer-links a, .footer-links span { cursor: pointer; color: var(--grey-on-dark); text-decoration: none; }
.footer-links a:hover, .footer-links span:hover { color: #fff; }
.footer-links .static { cursor: default; }
.footer-links .static:hover { color: var(--grey-on-dark); }
.footer-bottom {
  max-width: 1180px; margin: 40px auto 0;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0 26px;
  display: flex; gap: 24px;
  font-size: 12px; font-weight: 600; color: var(--muted2);
  flex-wrap: wrap;
}
.footer-bottom .right { margin-left: auto; }

/* ===== whatsapp bubble ===== */
.wa-bubble {
  position: fixed; right: 22px; bottom: 22px; z-index: 100;
  background: #25D366; color: #fff;
  width: 54px; height: 54px; border-radius: 99px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 8px 24px rgba(0,0,0,.25);
  text-decoration: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-slide { padding: 48px 36px 32px; gap: 32px; }
  .hero h1 { font-size: 44px; }
  .hero h1.promo { font-size: 40px; }
  .micro-band { padding: 56px 36px; gap: 36px; }
  .reviews, .blogteaser, .teaser-wrap { padding: 48px 36px; }
  .footer { padding: 48px 36px 0; }
  .devis-brands-grid { grid-template-columns: repeat(4, 1fr); }
  .models-grid { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .micro-hero { padding: 56px 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .shop-grid { grid-template-columns: repeat(3, 1fr); }
  .product-detail { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 760px) {
  .hero-slide { grid-template-columns: 1fr; min-height: 0; padding: 36px 22px 24px; }
  .hero h1, .hero h1.promo { font-size: 34px; }
  .hero-sub { font-size: 16.5px; }
  .hero-media, .hero video { height: 240px; }
  .hero-checks { grid-template-columns: 1fr; }
  .hero-stats { padding: 0 22px 28px; gap: 16px; }
  .hero-label-img { width: 84px; height: 84px; top: -20px; right: 12px; }
  .teaser-wrap { padding: 36px 18px; }
  .teaser-card { padding: 26px 22px; }
  .micro-band { grid-template-columns: 1fr; padding: 44px 22px; }
  .micro-band h2 { font-size: 30px; }
  .micro-band .photo { height: 220px; }
  .reviews { padding: 44px 22px; }
  .reviews h2 { font-size: 28px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .blogteaser { padding: 44px 22px; }
  .blogteaser-grid { grid-template-columns: 1fr; }
  .fusion-band { flex-direction: column; text-align: center; }
  .fusion-band .btn-outline-red { margin-left: 0 !important; }
  .devis-wrap { padding: 40px 18px 64px; }
  .devis-head h1 { font-size: 32px; }
  .steps .lbl { display: none; }
  .panel { padding: 22px 18px; }
  .devis-brands-grid { grid-template-columns: repeat(2, 1fr); }
  .models-grid { grid-template-columns: repeat(2, 1fr); }
  .devis-final { grid-template-columns: 1fr; }
  .deliv-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid .full { grid-column: auto; }
  .fusion-hero h1 { font-size: 34px; }
  .fusion-body h2 { font-size: 22px; }
  .timeline-row { grid-template-columns: 56px 20px 1fr; gap: 10px; }
  .timeline-row .year { font-size: 15px; }
  .changes-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; padding: 0 18px 56px; }
  .blog-header h1 { font-size: 32px; }
  .article-wrap { padding: 40px 18px 56px; }
  .article-wrap h1 { font-size: 28px; }
  .micro-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .micro-hero h1 { font-size: 32px; }
  .micro-hero .photo { height: 220px; }
  .cards-3 { grid-template-columns: 1fr; }
  .b2b-hero h1 { font-size: 32px; }
  .b2b-body h2 { font-size: 22px; }
  .offer-row { grid-template-columns: 34px 1fr; }
  .offer-row .d { grid-column: 2; }
  .grid-4 { grid-template-columns: 1fr; }
  .ateliers-grid { grid-template-columns: 1fr; }
  .ateliers-extra { grid-template-columns: 1fr; }
  .ateliers-head h1 { font-size: 32px; }
  .footer { padding: 40px 22px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom .right { margin-left: 0; }
  .shop-header h1 { font-size: 32px; }
  .shop-wrap { padding: 20px 18px 56px; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-card .ph { height: 110px; margin: 12px 12px 0; }
  .product-card .body { padding: 10px 12px 14px; }
  .shop-toolbar input[type="search"] { width: 100%; }
  .shop-toolbar .controls { width: 100%; }
  .shop-reassure { grid-template-columns: 1fr 1fr; }
  .product-detail .gallery .ph { height: 220px; }
  .product-detail h1 { font-size: 26px; }
  .cart-layout { grid-template-columns: 1fr; }
  .blog-featured-card { grid-template-columns: 1fr; }
  .blog-featured-card .ph-img { min-height: 160px; }
  .blog-featured-card .body { padding: 24px 22px; }
  .press-grid { grid-template-columns: 1fr; }
  .press-stats { grid-template-columns: 1fr 1fr; }
  .cart-summary { position: static; }
  .cart-row { grid-template-columns: 56px 1fr auto; grid-template-areas: "ph info remove" "ph qty price"; }
  .cart-row .ph { grid-area: ph; }
  .cart-row .info { grid-area: info; }
  .cart-row .qty { grid-area: qty; }
  .cart-row .line-price { grid-area: price; text-align: right; }
  .cart-row .remove { grid-area: remove; }
}
