/* =============================================
   mousti.fr — main.css
   Variables + Reset + Composants + Pages
   ============================================= */

/* Variables */
:root {
  --tc:        #D85A30;
  --tc-dark:   #712B13;
  --tc-darker: #4A1B0C;
  --tc-mid:    #F0997B;
  --tc-light:  #FAECE7;
  --tc-pale:   #FDF6F0;
  --tc-border: #F5C4B3;
  --gold:      #FAC775;
  --gold-mid:  #EF9F27;
  --text:      #4A1B0C;
  --text-soft: #993C1D;
  --white:     #ffffff;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--tc-pale);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* Typography */
.serif { font-family: 'Playfair Display', serif; }
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.15; color: var(--tc-dark); }
h1 { font-size: 2.2rem; font-weight: 900; }
h2 { font-size: 1.6rem; font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 700; }

/* ──────────────── NAV ──────────────── */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--tc-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  gap: 1rem;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
  color: var(--text);
  padding: 0.9rem 0;
  flex-shrink: 0;
}
.nav-logo em { color: var(--tc); font-style: italic; }
.nav-links { display: flex; gap: 0; }
.nav-link {
  padding: 0.9rem 0.8rem;
  font-size: 0.85rem;
  color: var(--text-soft);
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--tc); }
.nav-link.active { color: var(--tc); border-bottom-color: var(--tc); font-weight: 500; }
.nav-cta {
  background: var(--tc);
  color: var(--white);
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 500;
  transition: background 0.15s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--tc-dark); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.4rem; color: var(--text); cursor: pointer; }

/* ──────────────── FOOTER ──────────────── */
.footer { background: var(--tc-darker); margin-top: 4rem; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 2.5rem 2rem;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.footer-logo em { color: var(--gold); font-style: italic; }
.footer-tagline { font-size: 0.8rem; color: var(--tc-border); line-height: 1.6; }
.footer-col-title { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 0.8rem; font-weight: 500; }
.footer-link { display: block; font-size: 0.82rem; color: var(--tc-border); margin-bottom: 0.4rem; transition: color 0.15s; }
.footer-link:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--tc-border);
}

/* ──────────────── COMPOSANTS ──────────────── */

/* Boutons */
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; border-radius: var(--radius-sm); font-size: 0.88rem; font-weight: 500; font-family: 'DM Sans', sans-serif; cursor: pointer; border: none; transition: all 0.15s; }
.btn-primary { background: var(--tc); color: var(--white); }
.btn-primary:hover { background: var(--tc-dark); }
.btn-secondary { background: var(--white); color: var(--tc); border: 1px solid var(--tc-border); }
.btn-secondary:hover { border-color: var(--tc); }
.btn-gold { background: var(--gold); color: var(--tc-darker); }
.btn-gold:hover { background: var(--gold-mid); }
.btn-lg { padding: 13px 28px; font-size: 0.95rem; }

/* Badge */
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 0.72rem; font-weight: 500; }
.badge-tc { background: var(--tc-dark); color: var(--tc-border); }
.badge-light { background: var(--tc-light); color: var(--tc-dark); }
.badge-gold { background: var(--tc-dark); color: var(--gold); }

/* Card */
.card {
  background: var(--white);
  border: 1px solid var(--tc-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.card:hover { border-color: var(--tc); }

/* Section */
.section { padding: 3rem 2rem; }
.section-title { margin-bottom: 0.4rem; }
.section-sub { font-size: 0.9rem; color: var(--text-soft); margin-bottom: 1.8rem; }

/* Page hero interne */
.page-hero {
  background: var(--tc-light);
  padding: 2rem;
  border-bottom: 1px solid var(--tc-border);
}
.page-hero h1 { font-size: 1.8rem; margin-bottom: 0.4rem; }
.page-hero p { font-size: 0.9rem; color: var(--text-soft); }

/* Formulaire */
.form-group { display: grid; gap: 4px; margin-bottom: 12px; }
.form-group label { font-size: 0.75rem; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.4px; font-weight: 500; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--tc-pale);
  border: 1px solid var(--tc-border);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  width: 100%;
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--tc); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Tip / callout */
.tip {
  background: var(--tc-light);
  border-left: 3px solid var(--tc);
  padding: 0.7rem 1rem;
  font-size: 0.82rem;
  color: var(--tc-dark);
  margin-bottom: 1.2rem;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.tip i { color: var(--tc); flex-shrink: 0; margin-top: 1px; }

/* ──────────────── HOME ──────────────── */
.hero {
  background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1400&q=80');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 6rem 2rem 5rem;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(140, 40, 10, 0.78);
}
.hero > * { position: relative; z-index: 1; }
.hero-content { color: var(--white); max-width: 680px; margin: 0 auto; text-align: center; }
.hero-content h1 { color: var(--white); font-size: 3.2rem; margin-bottom: 1rem; }
.hero-content h1 em { color: var(--gold); font-style: italic; }
.hero-content p { color: #F5C4B3; font-size: 1.05rem; margin-bottom: 2rem; line-height: 1.7; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero-tags { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.hero-tag { background: rgba(0,0,0,0.35); color: var(--gold); font-size: 0.78rem; padding: 5px 14px; border-radius: 20px; font-weight: 500; border: 1px solid rgba(250,199,117,0.3); }
.hero-visual { display: none; }

.stats-bar {
  background: var(--white);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--tc-border);
}
.stat { padding: 1.2rem; text-align: center; border-right: 1px solid var(--tc-border); }
.stat:last-child { border-right: none; }
.stat-num { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 1.6rem; color: var(--tc); }
.stat-label { font-size: 0.75rem; color: var(--text-soft); margin-top: 2px; }

.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.product-card { transition: border-color 0.15s, transform 0.15s; }
.product-card:hover { transform: translateY(-2px); }
.product-card-img { background: var(--tc-light); height: 90px; display: flex; align-items: center; justify-content: center; }
.product-card-img i { font-size: 2.2rem; color: var(--tc); }
.product-card-body { padding: 0.9rem 1rem; }
.product-card-name { font-size: 0.9rem; font-weight: 500; margin-bottom: 3px; }
.product-card-desc { font-size: 0.78rem; color: var(--text-soft); margin-bottom: 6px; }
.product-card-price { font-size: 0.82rem; color: var(--tc); font-weight: 500; }

.how-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 1.5rem; }
.how-step { text-align: center; }
.how-num { width: 32px; height: 32px; background: var(--tc); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 500; margin: 0 auto 8px; }
.how-label { font-size: 0.8rem; color: var(--text-soft); line-height: 1.5; }

.cta-band {
  background: var(--tc-dark);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.cta-band-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.cta-band-sub { font-size: 0.8rem; color: var(--tc-border); }

.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.review-card { padding: 1rem; }
.review-stars { color: var(--gold-mid); font-size: 0.85rem; margin-bottom: 6px; }
.review-text { font-size: 0.82rem; font-style: italic; line-height: 1.6; margin-bottom: 8px; }
.review-author { font-size: 0.72rem; color: var(--text-soft); font-weight: 500; }

/* ──────────────── MODELES ──────────────── */
.model-card { margin-bottom: 16px; }
.model-head { background: var(--tc); padding: 1rem 1.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.model-head-left { display: flex; align-items: center; gap: 14px; }
.model-head h3 { color: var(--white); font-size: 1.1rem; }
.model-price { background: var(--tc-dark); color: var(--gold); font-size: 0.82rem; padding: 4px 12px; border-radius: 20px; }
.model-body { display: grid; grid-template-columns: 1fr 1fr; }
.model-info { padding: 1.2rem; border-right: 1px solid var(--tc-border); }
.model-desc { font-size: 0.85rem; line-height: 1.6; margin-bottom: 0.8rem; }
.model-features { display: flex; flex-direction: column; gap: 5px; }
.model-feature { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--text-soft); }
.model-feature i { color: var(--tc); font-size: 0.9rem; }
.model-dims { padding: 1.2rem; }
.dim-row { margin-bottom: 8px; }
.dim-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.4px; color: var(--text-soft); }
.dim-val { font-size: 0.85rem; font-weight: 500; }
.model-colors { display: flex; gap: 5px; margin-top: 4px; }
.color-swatch { width: 14px; height: 14px; border-radius: 50%; }
.model-foot { background: var(--tc-light); padding: 0.8rem 1.4rem; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--tc-border); }
.model-foot-note { font-size: 0.78rem; color: var(--text-soft); }

/* ──────────────── POSE ──────────────── */
.zones-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 1.5rem 0; }
.zone-card { background: var(--white); border: 1px solid var(--tc-border); border-radius: var(--radius-sm); padding: 0.9rem; text-align: center; }
.zone-name { font-size: 0.88rem; font-weight: 500; }
.zone-dep { font-size: 0.75rem; color: var(--text-soft); margin-top: 2px; }

.devis-card { background: var(--white); border: 1px solid var(--tc-border); border-radius: var(--radius-md); overflow: hidden; margin-top: 1.5rem; }
.devis-head { background: var(--tc-dark); padding: 1rem 1.4rem; }
.devis-head h2 { color: var(--white); font-size: 1rem; }
.devis-body { padding: 1.4rem; }
.devis-submit { width: 100%; margin-top: 4px; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 1.5rem; }
.team-card { text-align: center; padding: 1.2rem; }
.team-avatar { width: 48px; height: 48px; background: var(--tc); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.7rem; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; color: var(--white); }
.team-name { font-size: 0.88rem; font-weight: 500; margin-bottom: 2px; }
.team-role { font-size: 0.75rem; color: var(--text-soft); }

/* ──────────────── FAQ ──────────────── */
.faq-list { display: grid; gap: 8px; }
.faq-item { background: var(--white); border: 1px solid var(--tc-border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-question { padding: 1rem 1.2rem; font-size: 0.9rem; font-weight: 500; cursor: pointer; display: flex; justify-content: space-between; align-items: center; user-select: none; }
.faq-question i { color: var(--tc); font-size: 1rem; transition: transform 0.2s; flex-shrink: 0; }
.faq-question.open i { transform: rotate(180deg); }
.faq-answer { padding: 0 1.2rem; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.2s; font-size: 0.85rem; color: var(--text-soft); line-height: 1.7; }
.faq-answer.open { padding: 0 1.2rem 1rem; max-height: 200px; }

/* ──────────────── CONTACT ──────────────── */
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 2rem; }
.contact-card { text-align: center; padding: 1.2rem; }
.contact-icon { font-size: 1.6rem; color: var(--tc); margin-bottom: 8px; }
.contact-label { font-size: 0.85rem; font-weight: 500; margin-bottom: 4px; }
.contact-val { font-size: 0.8rem; color: var(--text-soft); }

/* ──────────────── RESPONSIVE ──────────────── */
@media (max-width: 680px) {
  .nav { padding: 0 1rem; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 56px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--tc-border); padding: 0.5rem 0; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  /* hero responsive ok */
  .hero-visual { display: none; }
  h1 { font-size: 2rem; }
  .products-grid,
  .reviews-grid,
  .team-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .model-body { grid-template-columns: 1fr; }
  .model-info { border-right: none; border-bottom: 1px solid var(--tc-border); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 4px; text-align: center; }
  .cta-band { flex-direction: column; text-align: center; }
  .section { padding: 2rem 1.2rem; }
}

/* ──────────────── BANDEAU ──────────────── */
.mousti-band { background: #2A0E05; overflow: hidden; }
.mousti-band-inner { display: grid; grid-template-columns: 110px 1fr; min-height: 140px; }
.mousti-band-accent { background: #D85A30; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 1rem 0.8rem; }
.mousti-band-logo { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 15px; color: #FDF6F0; line-height: 1; white-space: nowrap; }
.mousti-band-logo em { color: #FAC775; font-style: italic; }
.mousti-band-content { padding: 1.2rem 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: center; }
.mousti-band-headline { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 900; color: #FDF6F0; line-height: 1.15; }
.mousti-band-headline em { color: #FAC775; font-style: italic; }
.mousti-band-sub { font-size: 11px; color: #F0997B; margin-top: 8px; line-height: 1.6; }
.mousti-band-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mousti-band-card { background: rgba(216,90,48,0.15); border: 1px solid rgba(216,90,48,0.3); border-radius: 6px; padding: 8px 10px; }
.mousti-band-num { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 900; color: #FAC775; line-height: 1; }
.mousti-band-label { font-size: 10px; color: #F0997B; margin-top: 2px; }
@media (max-width: 680px) {
  .mousti-band-inner { grid-template-columns: 80px 1fr; }
  .mousti-band-content { grid-template-columns: 1fr; gap: 1rem; padding: 1rem; }
  .mousti-band-headline { font-size: 18px; }
}

/* ──────────────── HERO UNIFIÉ ──────────────── */
.hero-unified { background: #2A0E05; padding: 2rem 3rem 2rem; overflow: hidden; }
.hero-unified-top { display: flex; justify-content: flex-end; margin-bottom: 1.5rem; }
.hero-unified-badge { background: #D85A30; color: #FDF6F0; font-size: 11px; font-weight: 500; padding: 5px 14px; border-radius: 20px; }
.hero-unified-layout { display: inline-grid; grid-template-columns: auto auto auto auto; gap: 3rem; align-items: center; position: relative; left: 50%; transform: translateX(-50%); }
.hero-unified-title { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 3rem; color: #FDF6F0; line-height: 1.05; margin-bottom: 12px; }
.hero-unified-title em { color: #FAC775; font-style: italic; }
.hero-unified-sub { font-size: 14px; color: #F0997B; margin-bottom: 24px; line-height: 1.7; }
.hero-unified-btns { display: flex; gap: 10px; align-items: center; }
.hero-unified-btn-s { background: transparent; color: #FDF6F0; border: 1px solid rgba(255,255,255,0.25); padding: 12px 26px; border-radius: 8px; font-size: 14px; text-decoration: none; font-family: 'DM Sans', sans-serif; white-space: nowrap; }
.hero-unified-stats { display: flex; flex-direction: column; gap: 0; border-left: 2px solid #D85A30; min-width: 160px; }
.hero-unified-stat { padding: 10px 16px; border-bottom: 1px solid rgba(216,90,48,0.2); }
.hero-unified-stat:last-child { border-bottom: none; }
.hero-unified-num { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 900; color: #FAC775; line-height: 1; }
.hero-unified-lbl { font-size: 10px; color: #F0997B; margin-top: 3px; text-transform: uppercase; letter-spacing: 0.5px; }
@media (max-width: 680px) {
  .hero-unified { padding: 1.5rem 1.2rem; }
  .hero-unified-layout { grid-template-columns: 1fr; }
  .hero-unified-stats { flex-direction: row; border-left: none; border-top: 1px solid rgba(216,90,48,0.2); min-width: unset; }
  .hero-unified-stat { flex: 1; border-bottom: none; border-right: 1px solid rgba(216,90,48,0.2); padding: 10px; }
  .hero-unified-stat:last-child { border-right: none; }
  .hero-unified-title { font-size: 2rem; }
  .hero-unified-btns { flex-wrap: wrap; }
}

/* Hero icônes produits */
.hero-unified-icons { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.hero-icon-card { display: flex; flex-direction: column; align-items: center; gap: 6px; background: rgba(216,90,48,0.1); border: 1px solid rgba(216,90,48,0.2); border-radius: 8px; padding: 10px 12px; text-decoration: none; transition: border-color 0.15s; }
.hero-icon-card:hover { border-color: #D85A30; }
.hero-icon-card span { font-size: 10px; color: #F0997B; font-family: 'DM Sans', sans-serif; text-transform: uppercase; letter-spacing: 0.5px; }
/* Hero trust */
.hero-unified-trust { display: flex; flex-direction: column; gap: 10px; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 11px; color: #F0997B; font-family: 'DM Sans', sans-serif; white-space: nowrap; }
.hero-trust-dot { width: 5px; height: 5px; background: #D85A30; border-radius: 50%; flex-shrink: 0; }

/* ── Photos produits ── */
.product-card-img--photo { height: 160px; background: #FAECE7; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product-card-img--photo img { height: 100%; width: auto; display: block; }
.model-photo { background: #FAECE7; display: flex; align-items: center; justify-content: center; padding: 1rem; border-bottom: 1px solid #F5C4B3; }
.model-photo img { height: 220px; width: auto; display: block; }

/* ── Photo dans zone blanche à côté du texte ── */
.product-card-body--photo { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 8px; }
.product-card-photo { display: flex; align-items: center; justify-content: center; }
.product-card-photo img { max-height: 90px; width: auto; display: block; }
.model-info-photo { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--tc-border); }
.model-info-photo img { max-height: 160px; width: auto; display: block; }

/* ── Card accueil : photo collée à droite hors du bloc ── */
.product-card-with-photo { display: grid; grid-template-columns: 1fr auto; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--tc-border); text-decoration: none; transition: border-color 0.15s; }
.product-card-with-photo:hover { border-color: var(--tc); }
.product-card-main { background: var(--white); min-width: 0; }
.product-card-photo-side { width: 110px; overflow: hidden; flex-shrink: 0; border-left: 1px solid var(--tc-border); }
.product-card-photo-side img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Card modèles : photo collée à droite hors du bloc ── */
.model-card-with-photo { display: grid; grid-template-columns: 1fr auto; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--tc-border); margin-bottom: 16px; }
.model-card-with-photo .card { border: none; border-radius: 0; margin-bottom: 0; }
.model-card-photo-side { width: 160px; overflow: hidden; flex-shrink: 0; border-left: 1px solid var(--tc-border); }
.model-card-photo-side img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Uniformisation photos produits ── */
.product-card-with-photo { height: 160px; }
.product-card-main { height: 100%; }
.product-card-photo-side { width: 120px; flex-shrink: 0; }
.product-card-photo-side img { width: 100%; height: 100%; object-fit: cover; display: block; }
.model-card-photo-side { width: 200px; flex-shrink: 0; }
.model-card-photo-side img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Cards produits : plus grandes + pas d'arrondi côté photo ── */
.product-card-with-photo { height: 200px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--tc-border); }
.product-card-main { border-radius: 0 !important; border: none !important; height: 100%; display: flex; flex-direction: column; }
.product-card-img { flex-shrink: 0; }
.product-card-body { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.product-card-photo-side { width: 130px; flex-shrink: 0; border-radius: 0 !important; }
.product-card-photo-side img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 0; }

/* ── Page modèles : layout final ── */
.model-card-outer { display: grid; grid-template-columns: 1fr 200px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--tc-border); margin-bottom: 8px; }
.model-card-with-photo { display: flex !important; flex-direction: column !important; background: var(--white); min-width: 0; border: none !important; border-radius: 0 !important; margin-bottom: 0 !important; }
.model-card-photo-side { overflow: hidden; border-left: 1px solid var(--tc-border); }
.model-card-photo-side img { width: 100%; height: 100%; object-fit: cover; display: block; }
.model-card-btn-row { display: flex; justify-content: flex-end; margin-bottom: 2rem; padding-top: 8px; }

/* ── Bouton header modèles ── */
.model-head-btn { background: #fff; color: #D85A30; border: none; padding: 6px 14px; border-radius: 6px; font-size: 12px; font-weight: 500; text-decoration: none; font-family: 'DM Sans', sans-serif; white-space: nowrap; }
.model-head-btn:hover { background: #FDF6F0; }

/* ── Mobile : page modèles ── */
@media (max-width: 680px) {
  .model-card-outer { grid-template-columns: 1fr; }
  .model-card-photo-side { width: 100%; height: 200px; border-left: none; border-top: 1px solid var(--tc-border); }
  .model-card-photo-side img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
  .model-head { flex-wrap: wrap; gap: 8px; }
  .model-head-left { flex: 1; min-width: 0; }
  .model-head h3 { font-size: 0.95rem; }
  .model-body { grid-template-columns: 1fr; }
  .model-info { border-right: none; border-bottom: 1px solid var(--tc-border); }
}

/* ── Mobile : fix prix + bouton dans model-head ── */
@media (max-width: 680px) {
  .model-head { flex-wrap: wrap; }
  .model-head > div:last-child { width: 100%; display: flex; justify-content: space-between; align-items: center; margin-top: 6px; }
  .model-price { font-size: 12px; }
  .model-head-btn { font-size: 11px; padding: 5px 10px; }
}

/* ── Mobile : cacher les icônes SVG hero ── */
@media (max-width: 680px) {
  .hero-unified-icons { display: none; }
}

/* ── Mobile modeles : fix header ── */
@media (max-width: 680px) {
  .model-head-right { display: none !important; }
  .model-head-left img { display: block !important; }
  .model-head-left { display: flex !important; align-items: center; gap: 8px; }
  .model-mobile-bar { display: flex !important; }
}

/* ── Barre mobile prix + bouton ── */
.model-mobile-bar {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1rem;
  background: #fff;
  border-bottom: 1px solid #F5C4B3;
  gap: 8px;
}
.model-price-mobile {
  color: #D85A30;
  font-size: 14px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
}
.model-btn-mobile {
  background: #D85A30;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  white-space: nowrap;
}
@media (max-width: 680px) {
  .model-mobile-bar { display: flex !important; }
}

/* ── Mobile : burger à gauche ── */
@media (max-width: 680px) {
  .nav-logo { margin-right: auto; }
}

/* ── Mobile : burger gauche, logo centre, configurer droite ── */
@media (max-width: 680px) {
}

/* ── Mobile nav : ☰ + mousti.fr à gauche · Configurer à droite ── */
@media (max-width: 680px) {

}

/* ── Mobile nav : logo+burger gauche · configurer droite ── */
@media (max-width: 680px) {

}

/* ── Mobile : aligner burger et logo ── */
@media (max-width: 680px) {
  .nav { align-items: center; }
}

/* ── Mobile : burger aligné avec logo ── */
@media (max-width: 680px) {
  .nav-toggle { padding: 0; line-height: 1; display: flex; align-items: center; }
}
