/* =====================================================
   ESCA STYLE V2 — CSS Catalogue & Pages intérieures
   ===================================================== */

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--deep);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #120C06 0%, #1E1408 40%, #0E0A06 100%);
}

.page-hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 30% 50%, rgba(196,154,108,0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 30%, rgba(196,154,108,0.04) 0%, transparent 45%),
    repeating-linear-gradient(
      -45deg,
      transparent, transparent 40px,
      rgba(196,154,108,0.015) 40px,
      rgba(196,154,108,0.015) 41px
    );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--sp-md);
  animation: fadeUp 0.9s var(--ease) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.page-hero-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  font-style: italic;
  font-family: var(--font-display);
}

.page-hero-scroll {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 2;
}

.page-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(196,154,108,0.4));
}

/* ===== FILTRES ===== */
.filtres-sticky {
  position: sticky;
  top: 64px;
  z-index: 100;
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(196,154,108,0.12);
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(28,21,16,0.06);
}

.filtres-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.filtres-cats {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.filtre-cat {
  padding: 0.45rem 1.1rem;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  border: 1px solid transparent;
  background: transparent;
  transition: all var(--dur-fast);
  cursor: pointer;
}

.filtre-cat:hover {
  color: var(--gold);
  border-color: rgba(196,154,108,0.2);
}

.filtre-cat.active {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.filtres-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.filtre-select {
  padding: 0.45rem 0.875rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--text);
  border: 1px solid rgba(196,154,108,0.2);
  background: var(--white);
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%239E948A' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}

.filtres-count {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

/* ===== CATALOGUE GRID ===== */
.section-catalogue {
  padding: 4rem 0 var(--sp-xl);
  background: var(--cream);
}

.produits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  /* Sans ceci, une carte "large" (2 lignes de contenu en plus) étire par défaut (grid
     align-items:stretch) les petites cartes de sa même rangée à sa hauteur — le contenu
     de .produit-info (justify-content:center) se retrouve alors centré dans un espace
     trop grand, ce qui fait chevaucher visuellement le titre et le texte tissu. */
  align-items: start;
}

/* Carte large occupe 2 colonnes */
.produit-card.large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
}

/* CARTE PRODUIT */
.produit-card {
  background: var(--white);
  overflow: hidden;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
  position: relative;
}

.produit-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.produit-img {
  position: relative;
  overflow: hidden;
}

.produit-card:not(.large) .produit-img {
  aspect-ratio: 3/4;
}

.produit-card.large .produit-img {
  aspect-ratio: auto;
  min-height: 480px;
}

/* PLACEHOLDERS PRODUITS */
.produit-ph {
  width: 100%;
  height: 100%;
  min-height: inherit;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.c1 { background: linear-gradient(150deg, #1C1208 0%, #2E1A08 50%, #1A1006 100%); }
.c2 { background: linear-gradient(150deg, #18120E 0%, #2A1E16 50%, #18120E 100%); }
.c3 { background: linear-gradient(150deg, #0E0A06 0%, #1C1408 50%, #120E08 100%); }
.c4 { background: linear-gradient(150deg, #141008 0%, #201808 50%, #141008 100%); }
.c5 { background: linear-gradient(150deg, #1A0806 0%, #280E08 50%, #160806 100%); }
.c6 { background: linear-gradient(150deg, #0C1018 0%, #141A24 50%, #0C1018 100%); }
.c7 { background: linear-gradient(150deg, #100814 0%, #1A0E20 50%, #100814 100%); }
.c8 { background: linear-gradient(150deg, #18100E 0%, #261816 50%, #180E0C 100%); }

.produit-ph-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent, transparent 35px,
      rgba(196,154,108,0.02) 35px,
      rgba(196,154,108,0.02) 36px
    );
}

.produit-ph-pattern.kente {
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 12px, rgba(196,154,108,0.04) 12px, rgba(196,154,108,0.04) 13px),
    repeating-linear-gradient(90deg, transparent, transparent 12px, rgba(196,154,108,0.04) 12px, rgba(196,154,108,0.04) 13px);
}

.produit-ph-silhouette {
  position: relative;
  z-index: 2;
  width: 55%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 24px rgba(196,154,108,0.08));
  transition: filter var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.produit-ph-silhouette svg {
  width: 100%;
  height: 100%;
}

.produit-card:hover .produit-ph-silhouette {
  filter: drop-shadow(0 0 40px rgba(196,154,108,0.2));
  transform: translateY(-6px) scale(1.02);
}

/* BADGES */
.produit-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  z-index: 3;
}

.badge-type {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(18,12,6,0.85);
  color: var(--gold-light);
  backdrop-filter: blur(8px);
}

.badge-type.mesure {
  background: rgba(196,154,108,0.85);
  color: var(--dark);
}

.badge-new {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--gold-dark);
  align-self: flex-start;
}

.badge-new.afro {
  background: rgba(30,58,95,0.9);
  color: var(--gold-light);
}

/* HOVER ACTIONS */
.produit-hover-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 3;
  transform: translateY(100%);
  transition: transform var(--dur) var(--ease);
}

.produit-card:hover .produit-hover-actions {
  transform: translateY(0);
}

.ph-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(18,12,6,0.92);
  color: rgba(255,255,255,0.8);
  transition: background var(--dur-fast);
  backdrop-filter: blur(8px);
}

.ph-action:hover { background: rgba(28,21,16,0.98); color: var(--white); }

.ph-action.gold {
  background: var(--gold);
  color: var(--dark);
}

.ph-action.gold:hover { background: var(--gold-dark); color: var(--white); }

/* PRODUIT INFO */
.produit-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.produit-card.large .produit-info { padding: 2.5rem; }

.produit-collection {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.produit-collection::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--gold);
}

.produit-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.produit-card.large .produit-name { font-size: 2rem; }

.produit-tissue {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.produit-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--cream-2);
  margin-top: auto;
}

.produit-prix {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-light);
}

.produit-prix.prix-affiche {
  font-style: normal;
  font-weight: 500;
  color: var(--gold-dark);
}

.btn-produit-cmd {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border-bottom: 1px solid rgba(196,154,108,0.3);
  padding-bottom: 2px;
  transition: all var(--dur-fast);
}

.btn-produit-cmd:hover {
  color: var(--gold);
  border-color: var(--gold);
  padding-right: 0.25rem;
}

/* HIDDEN */
.produit-card.hidden {
  display: none;
}

/* ===== CTA CATALOGUE ===== */
.catalogue-cta {
  margin-top: 4rem;
  overflow: hidden;
}

.catalogue-cta-inner {
  position: relative;
  background: var(--deep-2);
  padding: 5rem;
  text-align: center;
  overflow: hidden;
}

.cta-bg-lines {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(196,154,108,0.02) 60px,
      rgba(196,154,108,0.02) 61px
    ),
    radial-gradient(ellipse at 50% 50%, rgba(196,154,108,0.05) 0%, transparent 60%);
}

.catalogue-cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.catalogue-cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.catalogue-cta-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

/* =====================================================
   CSS FORMULAIRE COMMANDE
   ===================================================== */
.section-form {
  padding: var(--sp-xl) 0;
  background: var(--cream);
}

.form-wrap {
  max-width: 860px;
  margin: 0 auto;
}

/* PROGRESS */
.form-progress-bar {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.form-progress-bar::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--cream-3);
  z-index: 0;
}

.fp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.fp-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--cream-3);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  transition: all var(--dur) var(--ease);
}

.fp-step.active .fp-circle {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--dark);
}

.fp-step.done .fp-circle {
  border-color: var(--gold-dark);
  background: var(--gold-dark);
  color: var(--white);
}

.fp-label {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

.fp-step.active .fp-label { color: var(--gold-dark); }

/* FORM CARD */
.form-card {
  background: var(--white);
  border: 1px solid rgba(196,154,108,0.1);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
}

.form-step { display: none; }
.form-step.active { display: block; }

.form-step-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--cream-2);
}

.form-step-header h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.form-step-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* CHAMPS */
.fgroup {
  margin-bottom: 1.5rem;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.flabel {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.flabel .req { color: var(--gold-dark); }
.flabel .opt { color: var(--text-muted); font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 0.62rem; }

.finput,
.fselect,
.ftextarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--dark);
  background: var(--cream);
  border: 1px solid var(--cream-3);
  outline: none;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  appearance: none;
}

.finput:focus,
.fselect:focus,
.ftextarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,154,108,0.1);
  background: var(--white);
}

.finput::placeholder, .ftextarea::placeholder { color: var(--text-muted); font-size: 0.82rem; }
.ftextarea { resize: vertical; min-height: 120px; }

/* TYPE CARDS */
.type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.type-label {
  display: block;
  cursor: pointer;
}

.type-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.type-box {
  padding: 1.75rem 1.25rem;
  border: 1.5px solid var(--cream-3);
  text-align: center;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

.type-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196,154,108,0.03), transparent);
  opacity: 0;
  transition: opacity var(--dur);
}

.type-label:hover .type-box { border-color: rgba(196,154,108,0.4); }
.type-label:hover .type-box::before { opacity: 1; }

.type-label input:checked + .type-box {
  border-color: var(--gold);
  background: rgba(196,154,108,0.04);
}

.type-label input:checked + .type-box::before { opacity: 1; }

.type-emoji { font-size: 2rem; display: block; margin-bottom: 0.875rem; }

.type-title {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.type-desc { font-size: 0.75rem; color: var(--text-muted); line-height: 1.6; }

/* OUI/NON */
.yesno {
  display: flex;
  gap: 0.75rem;
}

.yesno-btn {
  flex: 1;
  padding: 0.875rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid var(--cream-3);
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--dur-fast);
}

.yesno-btn:hover { border-color: var(--gold); color: var(--gold); }
.yesno-btn.on { background: var(--gold); border-color: var(--gold); color: var(--dark); }

/* GRILLE MESURES */
.mesures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.mesures-grid .fgroup { margin-bottom: 0; }

/* OCCASIONS */
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.occasion-btn {
  padding: 0.875rem 0.5rem;
  border: 1.5px solid var(--cream-3);
  background: transparent;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
  cursor: pointer;
  transition: all var(--dur-fast);
}

.occasion-btn:hover { border-color: var(--gold); color: var(--gold); }
.occasion-btn.on { background: var(--gold); border-color: var(--gold); color: var(--dark); }

/* UPLOAD */
.upload-zone {
  border: 2px dashed var(--cream-3);
  padding: 3rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  background: var(--cream);
}

.upload-zone:hover, .upload-zone.has-file { border-color: var(--gold); background: rgba(196,154,108,0.03); }

.upload-icon { font-size: 2.5rem; margin-bottom: 1rem; opacity: 0.4; }
.upload-text { font-size: 0.82rem; color: var(--text-muted); line-height: 1.75; }
.upload-text strong { color: var(--gold-dark); }
.upload-preview { margin-top: 1rem; max-height: 180px; overflow: hidden; }
.upload-preview img { max-height: 180px; margin: 0 auto; object-fit: contain; }

/* NOTE BOX */
.note-box {
  background: rgba(196,154,108,0.06);
  border-left: 2px solid var(--gold);
  padding: 1rem 1.25rem;
  margin: 1rem 0;
}
.note-box p { font-size: 0.82rem; color: var(--text); line-height: 1.75; }
.note-box strong { color: var(--gold-dark); }
.note-box a { color: var(--gold); text-decoration: underline; }

/* FORM NAV */
.form-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-2);
}

.btn-form-prev {
  padding: 0.875rem 2rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--cream-3);
  color: var(--text-light);
  background: transparent;
  cursor: pointer;
  transition: all var(--dur-fast);
}
.btn-form-prev:hover { border-color: var(--text-light); color: var(--dark); }

.btn-form-next {
  padding: 0.875rem 2.5rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--dark);
  border: none;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-form-next::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-dark);
  transform: translateX(-101%);
  transition: transform var(--dur) var(--ease);
}

.btn-form-next:hover::before { transform: translateX(0); }
.btn-form-next:hover { color: var(--white); box-shadow: var(--shadow-gold); }
.btn-form-next span { position: relative; z-index: 1; }

/* RECAP */
.recap-block { margin-bottom: 1.75rem; }
.recap-block-title {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.875rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--cream-2);
}

.recap-row {
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(238,233,226,0.6);
}
.recap-row:last-child { border-bottom: none; }
.recap-row span:first-child { color: var(--text-muted); }
.recap-row span:last-child { color: var(--dark); font-weight: 500; text-align: right; max-width: 58%; }

/* CONFIRMATION */
.form-confirmation {
  text-align: center;
  padding: 3rem 1rem;
}

.confirm-icon { font-size: 4rem; margin-bottom: 1.5rem; }

.confirm-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 0.875rem;
}

.confirm-ref {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.confirm-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.85;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

/* =====================================================
   CSS PAGE CONTACT
   ===================================================== */
.section-contact {
  padding: var(--sp-xl) 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 0.875rem;
}

.contact-info h2 em { font-style: italic; color: var(--gold); }

.contact-info > p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.contact-items { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }

.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.ci-icon {
  width: 48px;
  height: 48px;
  background: rgba(196,154,108,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: all var(--dur-fast);
}

.contact-item:hover .ci-icon {
  background: var(--gold);
  color: var(--dark);
}

.ci-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark);
  display: block;
  margin-bottom: 0.25rem;
}

.ci-val { font-size: 0.9rem; color: var(--text-light); }
.ci-val a { color: var(--text-light); }
.ci-val a:hover { color: var(--gold); }

.contact-form-card {
  background: var(--white);
  border: 1px solid rgba(196,154,108,0.1);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .produits-grid { grid-template-columns: repeat(2, 1fr); }
  .produit-card.large { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .produits-grid { grid-template-columns: 1fr; }
  .produit-card.large { grid-column: span 1; grid-template-columns: 1fr; }
  .produit-card.large .produit-img { min-height: 380px; }
  .type-grid { grid-template-columns: 1fr; }
  .mesures-grid { grid-template-columns: 1fr 1fr; }
  .occasions-grid { grid-template-columns: repeat(2, 1fr); }
  .frow { grid-template-columns: 1fr; }
  .form-card { padding: 1.75rem; }
  .catalogue-cta-inner { padding: 3rem 1.5rem; }
  .filtres-inner { flex-direction: column; align-items: flex-start; }
  .filtres-cats { overflow-x: auto; width: 100%; flex-wrap: nowrap; padding-bottom: 0.25rem; }
}

@media (max-width: 480px) {
  .mesures-grid { grid-template-columns: 1fr; }
  .occasions-grid { grid-template-columns: 1fr 1fr; }
  .page-hero-title { font-size: 2.5rem; }
}
