/* ═══════════════════════════════════════════════════════════════════════════
   INTERloft WordPress Theme — Main CSS
   Design System: Beige Gradient Palette + Cormorant Garamond + Inter
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ─────────────────────────────────────────────────── */
:root {
  /* Colors */
  --background:        #F8F5F0;
  --foreground:        #1A1614;
  --card:              #F5F1EB;
  --card-foreground:   #1A1614;
  --primary:           #1A1614;
  --primary-foreground:#F8F5F0;
  --secondary:         #EDE7DC;
  --muted:             #EDE7DC;
  --muted-foreground:  #7A6F65;
  --accent:            #DDD3C5;
  --accent-foreground: #1A1614;
  --border:            #E2DAD0;
  --input:             #E2DAD0;
  --ring:              #7A6F65;
  --radius:            0rem;

  /* Zone colors */
  --color-navbar:       #F8F5F0;
  --color-mobile-menu:  #F8F5F0;
  --color-footer-bg:    #EDE7DC;

  /* Gradient tokens */
  --grad-page-from:   #F8F5F0;
  --grad-page-to:     #EDE7DC;
  --grad-footer-from: #EDE7DC;
  --grad-footer-to:   #E4D9CA;

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans:  'Inter', ui-sans-serif, system-ui, sans-serif;

  /* Spacing — aligné Next.js (px-8 md:px-16 lg:px-24, py-24 md:py-32, max-w-4xl/6xl) */
  --nav-height:  64px;
  --section-pad: clamp(4rem, 8vw, 8rem);
  --il-content-top-gap: clamp(2rem, 5vw, 4rem);
  --il-page-pad-x: clamp(2rem, 5vw, 6rem);
  /* py-24 md:py-32 (Next) */
  --il-page-pad-y: clamp(6rem, 10vw, 8rem);
  --il-max-w-4xl: 56rem;
  --il-max-w-5xl: 64rem;
  --il-max-w-6xl: 72rem;
  --il-max-w-7xl: 80rem;
}

/* ── Ambiance Variants ──────────────────────────────────────────────────────── */
[data-ambiance="ivoire"], :root {
  --background: #F8F5F0; --color-navbar: #F8F5F0; --color-mobile-menu: #F8F5F0;
  --color-footer-bg: #EDE7DC; --grad-page-from: #F8F5F0; --grad-page-to: #EDE7DC;
  --grad-footer-from: #EDE7DC; --grad-footer-to: #E4D9CA; --border: #E2DAD0;
}
[data-ambiance="creme"] {
  --background: #F2EDE4; --color-navbar: #F2EDE4; --color-mobile-menu: #F2EDE4;
  --color-footer-bg: #E4D9CA; --grad-page-from: #F2EDE4; --grad-page-to: #DDD3C5;
  --grad-footer-from: #DDD3C5; --grad-footer-to: #D4C8B8; --border: #D8CEC0;
}
[data-ambiance="lin"] {
  --background: #E8E0D5; --color-navbar: #E8E0D5; --color-mobile-menu: #E8E0D5;
  --color-footer-bg: #DDD3C5; --grad-page-from: #E8E0D5; --grad-page-to: #D4C8B8;
  --grad-footer-from: #D4C8B8; --grad-footer-to: #C8BAA8; --border: #CFC4B4;
}
[data-ambiance="greige"] {
  --background: #D9CFBF; --color-navbar: #D9CFBF; --color-mobile-menu: #D9CFBF;
  --color-footer-bg: #C8BAA8; --grad-page-from: #D9CFBF; --grad-page-to: #C5B9A5;
  --grad-footer-from: #C5B9A5; --grad-footer-to: #B8A994; --border: #C0B4A2;
}

/* ── Reset + Base ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--nav-height) + var(--il-content-top-gap) + 0.5rem);
}

body {
  font-family: var(--font-sans);
  color: var(--foreground);
  background: linear-gradient(160deg, var(--grad-page-from) 0%, var(--grad-page-to) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font-family: inherit; color: inherit; }
input, textarea, select { font-family: inherit; color: inherit; }
ul, ol { list-style: none; }

/* ── Utility Classes ────────────────────────────────────────────────────────── */
.nav-link {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
}

/* ── Navbar nav-link — matches Next.js "nav-link text-foreground/70 hover:text-foreground transition-colors" */
.il-nav-link {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(26,22,20,0.70);
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
  cursor: pointer;
}
.il-nav-link:hover { color: var(--foreground); }

/* ── Icon buttons (Search, User) in navbar */
.il-icon-btn {
  background: none; border: none; padding: 0; cursor: pointer;
  color: rgba(26,22,20,0.70); text-decoration: none;
  display: flex; align-items: center;
  transition: color 0.2s;
}
.il-icon-btn:hover { color: var(--foreground); }

/* ── Hamburger — animated 3-bar */
.il-hamburger {
  background: none; border: none; cursor: pointer;
  padding: 4px; display: flex; flex-direction: column; gap: 6px;
  color: rgba(26,22,20,0.70);
}
.il-hamburger__bar {
  display: block; width: 24px; height: 1px;
  background: currentColor; transition: transform 0.3s, opacity 0.3s, width 0.3s;
}
.il-hamburger.is-open .il-hamburger__bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.il-hamburger.is-open .il-hamburger__bar:nth-child(2) { opacity: 0; }
.il-hamburger.is-open .il-hamburger__bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.label-text {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  display: block;
}

.display-text {
  font-family: var(--font-serif);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 0.9;
}

.divider { border-top: 1px solid var(--border); }

.bg-background { background-color: var(--background); }

.footer-gradient {
  background: linear-gradient(to bottom, var(--grad-footer-from) 0%, var(--grad-footer-to) 100%);
}

/* ── Layout Containers ──────────────────────────────────────────────────────── */
.il-container {
  width: 100%;
  max-width: min(1400px, 100%);
  margin: 0 auto;
  padding: 0 var(--il-page-pad-x);
}
.il-container--narrow { max-width: min(var(--il-max-w-4xl), 100%); }
.il-container--collections { max-width: min(var(--il-max-w-6xl), 100%); }
.il-container--collaborations { max-width: min(var(--il-max-w-7xl), 100%); }

.il-section { padding: var(--section-pad) 0; }
/* Même enveloppe verticale / horizontale que les pages Next (py-24 md:py-32, px-8 … lg:px-24) */
.il-section--padded { padding: var(--il-page-pad-y) var(--il-page-pad-x); }
/* Bloc pleine largeur avec les mêmes repères (Introduction, Collections, etc.) */
.il-page-section {
  padding: var(--il-page-pad-y) var(--il-page-pad-x);
}
.il-section--muted { background-color: var(--muted); }
.il-section--large { padding: clamp(6rem, 12vw, 12rem) var(--il-page-pad-x); }
.il-section--center { text-align: center; display: flex; flex-direction: column; align-items: center; }

/* Première section sous la navbar : pas de double marge verticale avec --il-content-top-gap */
body .il-page > .il-page-section:first-child,
body .il-page > .il-section.il-section--large:first-child {
  padding-top: var(--section-pad);
}

/* Introduction — même rythme vertical que Next (py-24 md:py-32 sous la navbar, sans double --il-content-top-gap) */
body.il-page-intro .il-page {
  padding-top: calc(var(--nav-height) + env(safe-area-inset-top, 0px));
}
body.il-page-intro .il-page > .il-page-section.il-intro:first-child {
  padding-top: var(--il-page-pad-y);
  padding-bottom: var(--il-page-pad-y);
}

/* Liste collections — même rythme que app/collections/page.tsx (py-24 md:py-32 sous navbar) */
body.il-page-collections .il-page {
  padding-top: calc(var(--nav-height) + env(safe-area-inset-top, 0px));
}
body.il-page-collections .il-page > .il-page-section.il-collections:first-child {
  padding-top: var(--il-page-pad-y);
  padding-bottom: var(--il-page-pad-y);
}

/* Archive collaborations — app/collaborations/page.tsx (pt-32 pb-16 header, grille md:2 lg:3) */
body.il-page-collaborations .il-page {
  padding-top: calc(var(--nav-height) + env(safe-area-inset-top, 0px));
}
body.il-page-collaborations .il-collaborations-section {
  padding-top: var(--il-page-pad-y);
  padding-bottom: var(--il-page-pad-y);
}

body.il-page-inscription .il-page {
  padding-top: calc(var(--nav-height) + env(safe-area-inset-top, 0px));
}
/* Inscription + merci : pas de navbar — même colonne que Next auth */
body.il-auth-minimal .il-page.bg-background {
  padding-top: 0 !important;
}
body.il-auth-minimal {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.il-auth-minimal #il-main.il-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
body.il-auth-minimal .il-auth-inscription-page.il-page {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.il-auth-simple-header {
  padding: 2rem 1.5rem;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  background: var(--background);
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .il-auth-simple-header { padding: 2rem 3rem; }
}
.il-auth-simple-header__brand {
  display: block;
  height: 3rem;
  width: 8rem;
}
.il-auth-simple-header__brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.il-auth-inscription__shell {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  box-sizing: border-box;
}
.il-auth-inscription__card {
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
}
.il-auth-inscription__head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.il-auth-inscription__card--success .il-auth-inscription__head {
  margin-bottom: 1.5rem;
}
.il-auth-inscription__title {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 5vw, 2.25rem);
  font-weight: 300;
  color: var(--foreground);
  margin: 0 0 0.75rem;
  line-height: 1.15;
}
.il-auth-inscription__subtitle {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
  line-height: 1.5;
}

.il-auth-inscription-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.il-auth-inscription-form__grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 479px) {
  .il-auth-inscription-form__grid2 { grid-template-columns: 1fr; }
}
.il-auth-inscription-form__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}
.il-auth-inscription-form__input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--foreground);
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.il-auth-inscription-form__input::placeholder {
  color: var(--muted-foreground);
}
.il-auth-inscription-form__input:focus {
  border-color: var(--foreground);
}

.il-auth-inscription__submit {
  display: block;
  width: 100%;
  padding: 1rem 1rem;
  margin-top: 0.25rem;
  border: none;
  background: var(--foreground);
  color: var(--primary-foreground);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
  box-sizing: border-box;
}
.il-auth-inscription__submit:hover { opacity: 0.9; }

.il-auth-inscription__switch {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 2rem 0 0;
}
.il-auth-inscription__switch a {
  color: var(--foreground);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.il-auth-inscription__switch a:hover { opacity: 0.7; }

.il-auth-inscription__closed {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.625;
  margin: 0;
  text-align: center;
}

.il-auth-inscription__home-wrap {
  text-align: center;
  margin-top: 1.5rem;
}
.il-auth-inscription__home-link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
}
.il-auth-inscription__home-link:hover {
  color: var(--foreground);
}
.il-auth-inscription__home-link--block {
  display: block;
}

/* Page inscription-succes — aligné app/auth/inscription-succes/page.tsx */
body.il-auth-minimal .il-page.il-auth-success-page {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.il-auth-success-hero {
  flex-shrink: 0;
  padding: 3rem var(--il-page-pad-x) 4rem;
  border-bottom: 1px solid var(--border);
  box-sizing: border-box;
}
.il-auth-success-hero__kicker {
  margin-bottom: 1rem;
}
.il-auth-success-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--foreground);
  margin: 0;
}
.il-auth-success-main {
  flex: 1;
  width: 100%;
  max-width: 36rem;
  margin: 0 auto;
  padding: 5rem var(--il-page-pad-x);
  text-align: center;
  box-sizing: border-box;
}
.il-auth-success__btn-primary {
  letter-spacing: 0.2em;
}
.il-auth-success__btn-ghost {
  margin-top: 0;
}

.il-auth-success__rule {
  width: 3rem;
  height: 1px;
  background: var(--foreground);
  margin: 0 auto 2rem;
  opacity: 0.85;
}
.il-auth-success__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--foreground);
  opacity: 0.8;
}
.il-auth-success__text {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
  text-align: center;
  margin: 0 0 2.5rem;
}
.il-auth-success__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}

/* Connexion (mon compte déconnecté) — aligné app/auth/connexion/page.tsx */
.il-auth-connexion__notice {
  margin-bottom: 1.5rem;
  text-align: left;
}
.il-auth-connexion-alert {
  border: 1px solid rgba(180, 0, 32, 0.3);
  background: rgba(180, 0, 32, 0.05);
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.il-auth-connexion-alert p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.5;
  color: #8a1530;
}
.il-auth-connexion-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.il-auth-connexion-form__label {
  margin-bottom: 0.75rem;
}
.il-auth-connexion-form__label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.il-auth-connexion-form__label--inline {
  margin-bottom: 0;
}
.il-auth-connexion-forgot {
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
}
.il-auth-connexion-forgot:hover {
  color: var(--foreground);
}
.il-auth-connexion-form__input {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  padding: 0.75rem 0;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--foreground);
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.il-auth-connexion-form__input::placeholder {
  color: var(--muted-foreground);
}
.il-auth-connexion-form__input:focus {
  border-bottom-color: var(--foreground);
}
.il-auth-connexion__submit {
  width: 100%;
  padding: 1.25rem 1rem;
  border: none;
  background: var(--foreground);
  color: var(--primary-foreground);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
  box-sizing: border-box;
}
.il-auth-connexion__submit:hover {
  opacity: 0.8;
}

/* ── Page ───────────────────────────────────────────────────────────────────── */
.il-page { min-height: 100vh; }
.il-main { /* cleared by header */ }

/*
 * Espace fixe sous la navbar + même marge haute que sur Collaborations (titres)
 * pour toutes les pages avec .il-page (Introduction, archives, contact, etc.).
 */
body .il-page {
  padding-top: calc(var(--nav-height) + env(safe-area-inset-top, 0px) + var(--il-content-top-gap));
}

/* ── Page Header ────────────────────────────────────────────────────────────── */
.il-page-header {
  padding: 0 var(--il-page-pad-x) 4rem;
  border-bottom: 1px solid var(--border);
}

.il-page-header__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--foreground);
  margin-top: 1rem;
}

.il-page-header__intro {
  max-width: 42rem;
  margin: 1rem auto 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted-foreground);
}

.il-page-header__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  transition: color 0.2s;
}
.il-page-header__back:hover { color: var(--foreground); }

/* Contenu éditeur (blocs WP) — responsive, pas de débordement horizontal */
.il-page-content,
.entry-content {
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.il-page-content img,
.il-page-content iframe,
.il-page-content video,
.entry-content img,
.entry-content iframe,
.entry-content video {
  max-width: 100%;
  height: auto;
}
.il-page-content .wp-block-image,
.entry-content .wp-block-image {
  margin-left: 0;
  margin-right: 0;
}

/* ── Preloader — logo minimal, léger effet « respiration » (sans compteur) ─── */
#il-preloader {
  position: fixed; inset: 0; z-index: 200;
  background-color: var(--background);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden; pointer-events: none;
  transform: translateY(0);
  transition: none;
}
#il-preloader.is-exit {
  transform: translateY(-100%);
  transition: transform 700ms cubic-bezier(0.76, 0, 0.24, 1);
}
#il-preloader.is-done { display: none; }
.il-preloader__body {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center;
}
.il-preloader__logo {
  position: relative;
  height: 4rem;
  width: 10rem;
  max-width: 14rem;
  transition: opacity 0.35s ease;
}
.il-preloader__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: il-preloader-breathe 2.2s ease-in-out infinite;
  will-change: opacity, transform;
}
.il-preloader__logo.is-exit img {
  animation: none;
  opacity: 0;
}
.il-preloader__logo.is-exit { opacity: 0; }

@keyframes il-preloader-breathe {
  0%, 100% {
    opacity: 0.72;
    transform: scale(0.985);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .il-preloader__logo img {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 768px) {
  .il-preloader__logo { height: 5rem; width: 14rem; }
}

/* ── Navbar ─────────────────────────────────────────────────────────────────── */
.il-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-height);
  background-color: var(--color-navbar);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background-color 0.3s;
}
/* Next.js: "flex items-center justify-between px-6 md:px-12 h-16" */
.il-navbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; padding: 0 1.5rem;
}
@media (min-width: 768px) { .il-navbar__inner { padding: 0 3rem; } }
.il-navbar__nav {
  display: none; align-items: center;
  gap: 2.5rem; /* Next.js gap-10 = 40px */
}
@media (min-width: 768px) {
  .il-navbar__nav { display: flex; gap: 2.5rem; }
}
.il-navbar__mobile-controls {
  display: flex; align-items: center; gap: 0.75rem;
}
@media (min-width: 768px) { .il-navbar__mobile-controls { display: none; } }

/* Header logo ratio lock to avoid stretch with custom logos */
.il-navbar__brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 134px;
  height: 48px;
  flex-shrink: 0;
}
.il-navbar__brand img {
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ── Dropdown — exact Next.js ProductsDropdown / CollectionsDropdown ─────────── */
.il-dropdown { position: relative; }

/* Trigger button: inherits il-nav-link styles */
.il-dropdown__btn {
  display: flex; align-items: center; gap: 0.375rem;
  background: none; border: none; padding: 0; cursor: pointer;
}

/* Chevron: transition-transform duration-300 */
.il-dropdown__chevron { transition: transform 300ms; flex-shrink: 0; }
.il-dropdown.is-open .il-dropdown__chevron { transform: rotate(180deg); }

/* Panel: absolute top-full left-0 mt-4 min-w-[220px] py-4 transition-all duration-300 z-[60] */
.il-dropdown__panel {
  position: absolute; left: 0; top: 100%; margin-top: 1rem;
  min-width: 220px; padding: 1rem 0;
  z-index: 60;
  opacity: 0; transform: translateY(-8px);
  visibility: hidden;
  transition: opacity 300ms ease, transform 300ms ease, visibility 300ms;
}
/* Dark variant: bg-background/95 backdrop-blur-sm border border-border */
.il-dropdown__panel--dark {
  background: rgba(248,245,240,0.97);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
}
.il-dropdown.is-open .il-dropdown__panel {
  opacity: 1; transform: translateY(0); visibility: visible;
}

/* Items: px-5 py-2.5 text-xs tracking-[0.2em] uppercase transition-colors */
.il-dropdown__item {
  display: block;
  padding: 0.625rem 1.25rem;
  font-family: var(--font-sans); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none;
  color: rgba(26,22,20,0.70);
  transition: color 0.15s, background 0.15s;
}
.il-dropdown__item:hover { color: var(--foreground); background: rgba(26,22,20,0.04); }

/* Sous-menus imbriqués (profondeur illimitée) — panneau latéral */
.il-dropdown__panel .il-dropdown--nested {
  position: relative;
  width: 100%;
}
.il-dropdown__panel .il-dropdown--nested > .il-dropdown__trigger {
  width: 100%;
  justify-content: space-between;
  text-align: left;
  padding: 0.625rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26,22,20,0.70);
}
.il-dropdown__panel .il-dropdown--nested > .il-dropdown__panel {
  position: absolute;
  left: 100%;
  top: 0;
  margin-left: 2px;
  margin-top: 0;
  min-width: 200px;
  z-index: 80;
}

/* Divider (between "Tous les produits" and categories) */
.il-dropdown__divider {
  margin: 0.5rem 1.25rem;
  height: 1px; background: currentColor; opacity: 0.1;
}

/* ── Hamburger ──────────────────────────────────────────────────────────────── */
.il-hamburger {
  display: flex; flex-direction: column; gap: 6px; padding: 4px; border: none;
  background: none; cursor: pointer;
}
.il-hamburger span {
  display: block; width: 24px; height: 1px;
  background: var(--foreground); transition: all 0.3s;
}
.il-hamburger--light span { background: rgba(255,255,255,0.8); }
.il-hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.il-hamburger.is-open span:nth-child(2) { opacity: 0; }
.il-hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Search Trigger ─────────────────────────────────────────────────────────── */
.il-search-trigger, .il-account-link {
  display: flex; align-items: center; justify-content: center;
  color: rgba(26,22,20,0.7); transition: color 0.2s;
  background: none; border: none; padding: 4px;
}
.il-search-trigger:hover, .il-account-link:hover { color: var(--foreground); }

/* ── Mobile Menu ────────────────────────────────────────────────────────────── */
.il-mobile-menu {
  position: fixed; inset: 0; z-index: 250;
  background-color: var(--color-mobile-menu);
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transition: all 0.4s ease;
}
.il-mobile-menu.is-open { opacity: 1; visibility: visible; }
.il-mobile-menu__close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  color: var(--foreground); opacity: 0.6; transition: opacity 0.2s;
  background: none; border: none; padding: 4px;
}
.il-mobile-menu__close:hover { opacity: 1; }
.il-mobile-menu__nav {
  flex: 1; display: flex; flex-direction: column;
  justify-content: center; align-items: center; gap: 2rem;
  overflow-y: auto; padding: 6rem 2rem 2rem;
}
.il-mobile-menu__link {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 300; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--foreground); transition: opacity 0.2s;
  background: none; border: none;
}
.il-mobile-menu__link:hover { opacity: 0.5; }
.il-mobile-menu__group { text-align: center; }
/* Next.js mobile: Produits / Collections row + chevron */
.il-mobile-menu__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
}
.il-mobile-menu__toggle .il-mobile-menu__chev {
  flex-shrink: 0;
  opacity: 0.85;
  transition: transform 0.3s ease;
}
.il-mobile-menu__toggle.is-open .il-mobile-menu__chev {
  transform: rotate(180deg);
}
.il-mobile-menu__toggle--styled {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--foreground);
  background: none;
  border: none;
  transition: opacity 0.2s;
  width: 100%;
}
.il-mobile-menu__toggle--styled:hover { opacity: 0.5; }
.il-mobile-menu__toggle--nested {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--foreground);
  background: none;
  border: none;
  width: 100%;
  justify-content: center;
  opacity: 0.92;
}
.il-mobile-menu__sub .il-mobile-menu__sub {
  align-items: center;
  margin-top: 0.35rem;
  padding-left: 0.6rem;
  border-left: 1px solid rgba(26, 22, 20, 0.08);
}
.il-mobile-menu__sub {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem; padding-top: 0;
}
.il-mobile-menu__sub.is-open {
  max-height: min(85vh, 2000px);
  padding-top: 1rem;
}
/* Match Next.js sub links: text-sm, sans, tracking widened */
.il-mobile-menu__sub-link {
  font-family: var(--font-sans), system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(26, 22, 20, 0.6);
  transition: color 0.2s;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
}
.il-mobile-menu__sub-link:hover { color: var(--foreground); }
.il-mobile-menu__footer {
  padding: 2rem; display: flex; justify-content: center; gap: 2rem;
  border-top: 1px solid var(--border);
}
.il-mobile-menu__footer a { color: var(--foreground); opacity: 0.7; transition: opacity 0.2s; }
.il-mobile-menu__footer a:hover { opacity: 1; }

/* ── Search Modal ─ matches Next.js search-modal.tsx ─────────────────────────── */
/* Outer wrapper: full-screen with top padding like Next.js pt-20 md:pt-32 */
.il-search-modal {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 5rem;
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
@media (min-width: 768px) { .il-search-modal { padding-top: 8rem; } }
.il-search-modal.is-open { opacity: 1; visibility: visible; }

/* Backdrop: bg-foreground/80 backdrop-blur-sm */
.il-search-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(26,22,20,0.80); backdrop-filter: blur(4px);
}

/* Inner panel: relative w-full max-w-2xl mx-4 bg-background shadow-2xl */
.il-search-modal__inner {
  position: relative; width: 100%; max-width: 672px; margin: 0 1rem;
  background: var(--background);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  z-index: 10; display: flex; flex-direction: column;
}

/* Input row: flex items-center border-b border-border */
.il-search-modal__input-wrap {
  display: flex; align-items: center;
  border-bottom: 1px solid var(--border);
}
/* Search icon left: ml-6 text-muted-foreground */
.il-search-modal__icon {
  margin-left: 1.5rem; color: var(--muted-foreground); flex-shrink: 0;
}
/* Input: flex-1 px-4 py-5 text-lg bg-transparent outline-none */
.il-search-modal__input {
  flex: 1; padding: 1.25rem 1rem;
  font-family: var(--font-sans); font-size: 1.125rem; font-weight: 300;
  background: transparent; border: none; outline: none;
  color: var(--foreground); -webkit-appearance: none;
}
.il-search-modal__input::placeholder { color: var(--muted-foreground); }
/* Close button: p-4 text-muted-foreground */
.il-search-modal__close {
  padding: 1rem; color: var(--muted-foreground); transition: color 0.2s; flex-shrink: 0;
}
.il-search-modal__close:hover { color: var(--foreground); }

/* Results scrollable area: max-h-[60vh] overflow-y-auto */
.il-search-modal__results {
  max-height: 60vh; overflow-y: auto;
}
.il-search-modal__dynamic { min-height: 0; }
.il-search-modal__popular-wrap.is-hidden { display: none !important; }

/* Loading / vide — aligné Next (p-8 text-center text-sm text-muted) */
.il-search-modal__loading {
  padding: 2rem; text-align: center;
  font-family: var(--font-sans); font-size: 0.875rem; color: var(--muted-foreground);
}
.il-search-modal__empty {
  padding: 2rem; text-align: center;
  font-family: var(--font-sans); font-size: 0.875rem; color: var(--muted-foreground);
}
.il-search-modal__empty-query { margin: 0; }

/* Category results section: p-4 border-b border-border */
.il-search-modal__cats-section {
  padding: 1rem; border-bottom: 1px solid var(--border);
}
.il-search-modal__section-label {
  padding: 0 0.5rem; margin-bottom: 0.75rem;
  font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted-foreground);
}
.il-search-modal__section-label--popular { margin-bottom: 1rem; }
/* Category pills: px-4 py-2 text-sm bg-secondary hover:bg-accent */
.il-search-modal__cats { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.il-search-modal__cat-pill {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-family: var(--font-sans); font-size: .875rem;
  background: var(--secondary); color: var(--foreground);
  transition: background 0.2s; cursor: pointer;
  text-decoration: none; border: none;
}
.il-search-modal__cat-pill:hover { background: var(--accent, var(--secondary)); }

/* Product results section: p-4 + space-y-2 */
.il-search-modal__products-section { padding: 1rem; }
.il-search-modal__products-list { display: flex; flex-direction: column; gap: 0.5rem; }
/* Product row: w-full flex items-center gap-4 p-3 hover:bg-secondary */
.il-search-result-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.75rem; width: 100%; cursor: pointer;
  transition: background 0.15s; text-decoration: none;
}
.il-search-result-item:hover { background: var(--secondary); }
/* Product image: relative w-16 h-16 bg-secondary */
.il-search-result-item__img {
  width: 64px; height: 64px; flex-shrink: 0;
  background: var(--secondary); overflow: hidden;
}
.il-search-result-item__img img { width: 100%; height: 100%; object-fit: cover; }
/* Product info */
.il-search-result-item__info { flex: 1; min-width: 0; text-align: left; }
.il-search-result-item__name {
  font-family: var(--font-serif); font-size: 1.125rem;
  color: var(--foreground); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.il-search-result-item__cat {
  font-family: var(--font-sans); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted-foreground);
}

/* Popular categories: p-6 grid when no query */
.il-search-modal__popular { padding: 1.5rem; }
.il-search-modal__popular-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin-top: 1rem;
}
@media (min-width: 768px) { .il-search-modal__popular-grid { grid-template-columns: repeat(3, 1fr); } }
/* Popular category card: relative aspect-[4/3] overflow-hidden group */
.il-search-modal__pop-item {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  display: block; text-decoration: none;
}
.il-search-modal__pop-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 500ms ease;
}
.il-search-modal__pop-item:hover img { transform: scale(1.05); }
.il-search-modal__pop-overlay {
  position: absolute; inset: 0; background: rgba(26,22,20,0.30);
  transition: background 0.2s;
}
.il-search-modal__pop-item:hover .il-search-modal__pop-overlay { background: rgba(26,22,20,0.20); }
.il-search-modal__pop-label {
  position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 0.75rem;
  font-family: var(--font-sans); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase; color: #fff;
}

/* ── WhatsApp Button (discret — léger, peu visible) ─────────────────────────── */
.il-whatsapp-btn {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: auto;
  z-index: 40;
  width: 32px;
  height: 32px;
  padding: 0;
  background: rgba(248, 245, 240, 0.88);
  color: rgba(47, 111, 84, 0.55);
  border: 1px solid rgba(26, 22, 20, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  opacity: 0.52;
  transition: opacity 0.25s ease, transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.il-whatsapp-btn svg {
  width: 15px;
  height: 15px;
}
.il-whatsapp-btn:hover,
.il-whatsapp-btn:focus-visible {
  opacity: 0.92;
  color: rgba(47, 111, 84, 0.9);
  border-color: rgba(26, 22, 20, 0.18);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transform: scale(1.04);
}
@media (max-width: 767px) {
  .il-whatsapp-btn {
    width: 30px;
    height: 30px;
    bottom: 0.75rem;
    left: 0.75rem;
    opacity: 0.48;
  }
  .il-whatsapp-btn svg {
    width: 14px;
    height: 14px;
  }
}

/* ── Hero (Home Page) ───────────────────────────────────────────────────────── */
.il-hero {
  position: relative; width: 100%; height: 100svh; min-height: 600px;
  overflow: hidden; background: var(--foreground);
}
.il-hero__slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1s ease-in-out; z-index: 1;
}
.il-hero__slide.is-active { opacity: 1; z-index: 2; }
.il-hero__slide-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.il-hero__slide-overlay { position: absolute; inset: 0; background: rgba(26,22,20,0.25); }

.il-hero__topbar {
  position: absolute; top: 0; left: 0; right: 0; z-index: 20;
  padding-top: 2rem;
}
.il-hero__logo-wrap { display: flex; justify-content: center; pointer-events: none; }
.il-hero__logo { display: block; height: 88px; width: 211px; pointer-events: auto; position: relative; }
.il-hero__logo-img { object-fit: contain; width: 100%; height: 100%; }
.il-hero__nav-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 2rem clamp(1.5rem, 4vw, 3rem) 0;
}
.il-hero__nav-left {
  display: none; flex-direction: column; gap: 1rem;
}
@media (min-width: 768px) { .il-hero__nav-left { display: flex; } }
/* Match Next.js home: hamburger is mobile-only */
@media (min-width: 768px) {
  .il-hero__nav-row .il-hamburger { display: none; }
}

.il-hero__nav-link {
  font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); transition: color 0.2s;
  background: none; border: none;
  display: flex; align-items: center; gap: 0.375rem;
}
.il-hero__nav-link:hover { color: rgba(255,255,255,1); }
.il-hero__nav-right { display: flex; align-items: center; gap: 1.25rem; }
.il-hero__icon-btn {
  color: rgba(255,255,255,0.8); transition: color 0.2s;
  display: flex; align-items: center; background: none; border: none;
}
.il-hero__icon-btn:hover { color: #fff; }

/* Hero dropdown (overlaid on dark bg) */
.il-hero-dropdown { position: relative; }
.il-hero-dropdown__trigger { display: flex; align-items: center; gap: 0.375rem; }
.il-hero-dropdown__chevron { transition: transform 0.25s; }
.il-hero-dropdown.is-open .il-hero-dropdown__chevron { transform: rotate(180deg); }
.il-hero-dropdown__panel {
  position: absolute; left: 0; top: 100%; margin-top: 0.75rem;
  background: rgba(248,245,240,0.97); backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  min-width: 180px; padding: 0.75rem 0;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all 0.25s; z-index: 50;
}
.il-hero-dropdown.is-open .il-hero-dropdown__panel {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.il-hero-dropdown__item {
  display: block; padding: 0.5rem 1.25rem;
  font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(26,22,20,0.7); transition: all 0.15s;
}
.il-hero-dropdown__item:hover { color: var(--foreground); background: rgba(26,22,20,0.04); }

.il-hero-dropdown__panel .il-hero-dropdown--nested {
  position: relative;
  width: 100%;
}
.il-hero-dropdown__panel .il-hero-dropdown--nested > .il-hero-dropdown__trigger {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(26,22,20,0.7);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.il-hero-dropdown__panel .il-hero-dropdown--nested > .il-hero-dropdown__panel {
  position: absolute;
  left: 100%;
  top: 0;
  margin-left: 2px;
  min-width: 180px;
  z-index: 80;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Produits — archive + catégorie (aligné app/produits/page.tsx & /[category])
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Header minimal — pt-28 pb-12 px-6 md:px-12 (PAS de border-bottom) ─── */
.il-produits-archive .il-page,
.il-category-archive .il-page {
  padding-top: calc(var(--nav-height) + env(safe-area-inset-top, 0px));
}

.il-produits-header {
  padding: 7rem 1.5rem 3rem;       /* pt-28 pb-12 px-6 */
}
@media (min-width: 768px) {
  .il-produits-header {
    padding: 7rem 3rem 3rem;        /* md:px-12 */
  }
}
.il-produits-header--flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
/* Mobile : titre pleine largeur, lien en dessous (évite débordement / texte à droite) */
@media (max-width: 767px) {
  .il-produits-header--flex {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .il-produits-header__all-link {
    margin-left: 0;
    align-self: stretch;
    white-space: normal;
    padding-bottom: 0;
    line-height: 1.4;
  }
}
.il-produits-header__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);   /* text-[clamp(2.5rem,5vw,4rem)] */
  font-weight: 300;
  color: var(--foreground);
  line-height: 1;
  margin: 0;
}
/* "Toutes les collections" link — text-xs tracking-[0.15em] uppercase text-muted-foreground pb-2 */
.il-produits-header__all-link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  text-decoration: none;
  padding-bottom: 0.5rem;
  transition: color 0.2s;
  white-space: nowrap;
  margin-left: 2rem;
}
.il-produits-header__all-link:hover {
  color: var(--foreground);
}
@media (max-width: 767px) {
  .il-produits-header--flex {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .il-produits-header__all-link {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-top: 0.5rem;
    align-self: stretch;
    white-space: normal;
    padding-bottom: 0;
    line-height: 1.4;
    overflow-wrap: anywhere;
  }
}

/* ── Grid wrapper — px-6 md:px-12 pb-24 ───────────────────────────────── */
.il-produits-grid-wrap {
  padding: 0 1.5rem 6rem;           /* px-6 pb-24 */
}
@media (min-width: 768px) {
  .il-produits-grid-wrap {
    padding: 0 3rem 6rem;            /* md:px-12 */
  }
}

/* ── Categories grid (archive) — grid-cols-1 md:grid-cols-2 gap-4 ─────── */
.il-cats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;                         /* gap-4 */
}
@media (min-width: 768px) {
  .il-cats-grid {
    grid-template-columns: repeat(2, 1fr);  /* md:grid-cols-2 */
  }
}

/* Category card — <Link> = toute la carte, aspect-[4/3], relative, overflow-hidden */
.il-cats-grid__card {
  display: block;
  position: relative;
  aspect-ratio: 4/3;                  /* aspect-[4/3] */
  overflow: hidden;
  background: var(--secondary);      /* bg-secondary */
  text-decoration: none;
}
/* Image fill — object-cover hover:scale-105 */
.il-cats-grid__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.il-cats-grid__card:hover .il-cats-grid__img {
  transform: scale(1.05);
}
/* Overlay — bg-foreground/20 → /10 au hover */
.il-cats-grid__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 22, 20, 0.20);   /* bg-foreground/20 */
  transition: background 0.5s;
}
.il-cats-grid__card:hover .il-cats-grid__overlay {
  background: rgba(26, 22, 20, 0.10);   /* hover:bg-foreground/10 */
}
/* Label — absolute bottom-0 left-0 right-0 p-6 */
.il-cats-grid__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;                       /* p-6 */
}
/* h2 — font-serif text-2xl md:text-3xl font-light text-background */
.il-cats-grid__label-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;                     /* text-2xl */
  font-weight: 300;
  color: var(--background);             /* text-background (blanc/ivoire) */
  margin: 0;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .il-cats-grid__label-title {
    font-size: 1.875rem;                 /* md:text-3xl */
  }
}

/* ── Products grid (catégorie) — grid-cols-1 md:2 lg:3 gap-4 ─────────── */
.il-products-grid-v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;                           /* gap-4 */
}
@media (min-width: 768px) {
  .il-products-grid-v2 {
    grid-template-columns: repeat(2, 1fr);   /* md:grid-cols-2 */
  }
}
@media (min-width: 1024px) {
  .il-products-grid-v2 {
    grid-template-columns: repeat(3, 1fr);   /* lg:grid-cols-3 */
  }
}

/* Product card — <Link group block> (entier cliquable) */
.il-product-card-v2 {
  display: block;
  text-decoration: none;
}
/* Image wrap — relative aspect-[4/5] overflow-hidden bg-secondary */
.il-product-card-v2__image-wrap {
  position: relative;
  aspect-ratio: 4/5;                   /* aspect-[4/5] */
  overflow: hidden;
  background: var(--secondary);
}
/* Image fill */
.il-product-card-v2__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.il-product-card-v2:hover .il-product-card-v2__img {
  transform: scale(1.05);
}
/* Overlay — bg-foreground/0 hover:bg-foreground/5 */
.il-product-card-v2__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 22, 20, 0);      /* bg-foreground/0 */
  transition: background 0.5s;
}
.il-product-card-v2:hover .il-product-card-v2__overlay {
  background: rgba(26, 22, 20, 0.05);   /* hover:bg-foreground/5 */
}
/* Favorite button wrap — absolute top-4 right-4 z-20 */
.il-product-card-v2__fav-wrap {
  position: absolute;
  top: 1rem;                            /* top-4 */
  right: 1rem;                          /* right-4 */
  z-index: 20;
}
/* Favorite button — toujours visible (contrairement à l'ancien btn caché) */
.il-favorite-btn-v2 {
  width: 36px;
  height: 36px;
  background: var(--background);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--foreground);
  opacity: 0;
  transition: opacity 0.2s;
}
.il-product-card-v2:hover .il-favorite-btn-v2,
.il-favorite-btn-v2.is-active {
  opacity: 1;
}
.il-favorite-btn-v2.is-active svg {
  fill: #e11d48;
  stroke: #e11d48;
}
/* Info below image — pt-4 */
.il-product-card-v2__info {
  padding-top: 1rem;                    /* pt-4 */
}
/* Title — font-serif text-lg font-light text-foreground */
.il-product-card-v2__title {
  font-family: var(--font-serif);
  font-size: 1.125rem;                  /* text-lg */
  font-weight: 300;
  color: var(--foreground);
  margin: 0;
  transition: opacity 0.2s;
}
.il-product-card-v2:hover .il-product-card-v2__title {
  opacity: 0.7;
}

/* ── Legacy cat-card (conservé pour rétro-compatibilité si utilisé ailleurs) */
.il-products-cats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) { .il-products-cats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .il-products-cats-grid { grid-template-columns: repeat(3, 1fr); } }
.il-cat-card { display: block; cursor: pointer; }
.il-cat-card__image-wrap { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--secondary); }
.il-cat-card__image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.il-cat-card:hover .il-cat-card__image { transform: scale(1.04); }
.il-cat-card__info { margin-top: 1.25rem; }
.il-cat-card__title { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 300; color: var(--foreground); margin-top: 0.5rem; }
.il-cat-card__count { font-size: 10px; letter-spacing: 0.1em; color: var(--muted-foreground); margin-top: 0.25rem; }

/* ── Legacy product-grid (single produit, front-page, etc.) ─────────────── */
.il-products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 640px) { .il-products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .il-products-grid:not(.il-products-grid--2):not(.il-products-grid--3) { grid-template-columns: repeat(3, 1fr); }
  .il-products-grid--2 { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .il-products-grid--3 { grid-template-columns: repeat(3, 1fr); }
}
.il-product-card { }
.il-product-card__image-link { display: block; }
.il-product-card__image-wrap { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--secondary); }
.il-product-card__image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.il-product-card:hover .il-product-card__image { transform: scale(1.04); }
.il-product-card__info { margin-top: 1.25rem; }
.il-product-card__title { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 300; color: var(--foreground); margin-top: 0.375rem; transition: opacity 0.2s; }
.il-product-card__title a { color: inherit; }
.il-product-card:hover .il-product-card__title { opacity: 0.6; }
.il-product-card__desc { font-size: 0.8125rem; color: var(--muted-foreground); margin-top: 0.375rem; line-height: 1.5; }

/* Legacy favorite button */
.il-favorite-btn {
  position: absolute; top: 0.75rem; right: 0.75rem;
  width: 32px; height: 32px;
  background: var(--background); border: none;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
  color: var(--foreground);
}
.il-product-card__image-wrap:hover .il-favorite-btn,
.il-favorite-btn.is-active { opacity: 1; }
.il-favorite-btn.is-active svg { fill: #e11d48; stroke: #e11d48; }

/* ── Single Product ─────────────────────────────────────────────────────────── */
.il-product-detail {
  display: grid; grid-template-columns: 1fr;
  min-height: calc(100vh - var(--nav-height));
}
@media (min-width: 768px) {
  .il-product-detail { grid-template-columns: 2fr 1fr; align-items: start; }
}

.il-product-detail__media {
  padding: clamp(1.5rem, 4vw, 4rem);
  position: sticky;
  top: calc(var(--nav-height) + env(safe-area-inset-top, 0px));
}
@media (max-width: 767px) { .il-product-detail__media { position: static; } }

.il-product-detail__image-main { aspect-ratio: 4/3; overflow: hidden; background: var(--secondary); }
.il-product-detail__img { width: 100%; height: 100%; object-fit: cover; }
.il-product-detail__gallery {
  display: flex; gap: 0.75rem; margin-top: 1rem;
  overflow-x: auto; scrollbar-width: none;
}
.il-product-detail__gallery::-webkit-scrollbar { display: none; }
.il-product-detail__thumb {
  flex-shrink: 0; width: 80px; height: 80px; overflow: hidden;
  border: 1px solid transparent; transition: border-color 0.2s;
  background: none; padding: 0;
}
.il-product-detail__thumb.is-active { border-color: var(--foreground); }
.il-product-detail__thumb img { width: 100%; height: 100%; object-fit: cover; }

.il-product-detail__info {
  padding: clamp(3rem, 5vw, 6rem) clamp(1.5rem, 4vw, 4rem) clamp(3rem, 5vw, 6rem) clamp(1.5rem, 3vw, 3rem);
  border-left: 1px solid var(--border);
}
@media (max-width: 767px) { .il-product-detail__info { border-left: none; border-top: 1px solid var(--border); } }

.il-product-detail__back { display: inline-block; margin-bottom: 1.5rem; }
.il-product-detail__title {
  font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 300;
  color: var(--foreground); margin-top: 0.5rem; line-height: 1.1;
}
.il-product-detail__desc { font-size: 0.9375rem; line-height: 1.8; color: var(--muted-foreground); margin-top: 1rem; }
.il-product-detail__content { font-size: 0.875rem; line-height: 1.8; color: var(--muted-foreground); }
.il-product-detail__meta { }
.il-product-detail__materials { list-style: none; display: flex; flex-direction: column; gap: 0.375rem; }
.il-product-detail__materials li { font-size: 0.875rem; color: var(--muted-foreground); }
.il-product-detail__dimensions { font-size: 0.875rem; color: var(--muted-foreground); }
.il-product-detail__collections { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.il-product-detail__col-link {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--foreground);
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.il-product-detail__col-link:hover {
  background: var(--foreground);
  color: var(--background);
}
.il-product-detail__cta { display: flex; flex-direction: column; gap: 0.75rem; }

/* Single product — showcase (galerie / 360 / CTA éditorial) */
.il-product-showcase .il-product-detail__image-main { aspect-ratio: 4/5; }
.il-product-showcase__mode-bar {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--border);
  align-self: flex-start;
}
.il-product-showcase__mode {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.65rem 1.35rem;
  background: transparent;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.il-product-showcase__mode + .il-product-showcase__mode { border-left: 1px solid var(--border); }
.il-product-showcase__mode.is-active,
.il-product-showcase__mode:hover {
  background: var(--foreground);
  color: var(--background);
}
.il-product-showcase__stages { position: relative; width: 100%; }
.il-product-showcase__stage.is-hidden { display: none !important; }
.il-product-showcase__iframe-shell {
  aspect-ratio: 4/5;
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}
.il-product-showcase__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.il-product-showcase__thumbs .il-product-detail__thumb {
  width: 88px;
  height: 88px;
}
.il-product-showcase__back { margin-bottom: 1rem; }
.il-product-showcase__eyebrow { margin-top: 0; margin-bottom: 0.25rem; }
.il-product-showcase__rule { margin: 1.25rem 0 1.5rem; }
.il-product-showcase__lead {
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--muted-foreground);
  margin-top: 0;
  max-width: 36rem;
}
.il-product-showcase__enquire-wrap { margin-top: 2rem; }
.il-product-showcase__enquire {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  width: 100%;
  max-width: 22rem;
  padding: 1.2rem 1.35rem;
  border: 1px solid var(--foreground);
  text-decoration: none;
  color: var(--foreground);
  transition: background 0.35s ease, color 0.35s ease;
}
.il-product-showcase__enquire:hover {
  background: var(--foreground);
  color: var(--background);
}
.il-product-showcase__enquire-label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.il-product-showcase__enquire-hint {
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--muted-foreground);
  transition: color 0.35s ease, opacity 0.35s ease;
}
.il-product-showcase__enquire:hover .il-product-showcase__enquire-hint {
  color: var(--background);
  opacity: 0.82;
}
.il-product-showcase__wa {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.il-product-showcase__wa:hover {
  color: var(--foreground);
  border-bottom-color: var(--foreground);
}
.il-product-showcase__spec { margin-top: 2rem; }
.il-product-showcase__spec-title { margin-bottom: 0.65rem; }
.il-product-showcase__materials li {
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.il-product-showcase__dimensions {
  font-family: ui-monospace, 'Cousine', monospace;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--muted-foreground);
  white-space: pre-wrap;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  font-weight: 400;
}
.il-product-showcase__story {
  border-top: 1px solid var(--border);
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 4vw, 4rem);
}
.il-product-showcase__story-inner { max-width: 42rem; margin: 0 auto; }
.il-product-showcase__story-kicker { margin-bottom: 1.5rem; }
.il-product-showcase__story-body {
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--muted-foreground);
}
.il-product-showcase__story-body > * + * { margin-top: 1rem; }

/* ── Buttons ────────────────────────────────────────────────────────────────── */
.il-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  padding: 1rem 2.5rem;
  transition: opacity 0.2s; border: none; cursor: pointer;
}
.il-btn--primary { background: var(--primary); color: var(--primary-foreground); }
.il-btn--primary:hover { opacity: 0.8; }
.il-btn--secondary { background: transparent; color: var(--foreground); border: 1px solid var(--border); }
.il-btn--secondary:hover { border-color: var(--foreground); }

/* ── Pagination ─────────────────────────────────────────────────────────────── */
.il-pagination {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--border);
}
.il-pagination__btn, .il-pagination__num {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.15em;
  color: var(--muted-foreground); transition: all 0.2s;
  border: 1px solid transparent;
}
.il-pagination__num:hover, .il-pagination__btn:hover { color: var(--foreground); border-color: var(--border); }
.il-pagination__num.is-active { color: var(--foreground); border-color: var(--foreground); }

/* ── Collaborations (archive) — app/collaborations/page.tsx ─────────────────── */
.il-collaborations-hero {
  padding: 8rem var(--il-page-pad-x) 4rem;
  border-bottom: 1px solid var(--border);
}
.il-collaborations-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1;
  color: var(--foreground);
  margin: 0;
}
.il-collaborations-section {
  width: 100%;
  background: var(--background);
}

.il-collab-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .il-collab-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .il-collab-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.il-collab-grid--3 { }

.il-collab-card { }
.il-collab-card__image-link {
  display: block;
}
.il-collab-card__image-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--muted);
  position: relative;
}
.il-collab-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.il-collab-card:hover .il-collab-card__image { transform: scale(1.05); }
.il-collab-card__info {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.il-collab-card__name {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--foreground);
}
.il-collab-card__city { font-size: 0.875rem; color: var(--muted-foreground); }
.il-collab-card__cta {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--foreground); padding-top: 0.5rem; transition: opacity 0.2s;
}
.il-collab-card__cta:hover { opacity: 0.6; }
.il-collab-card__cta-line {
  display: inline-block; height: 1px; width: 24px; background: currentColor;
  transition: width 0.3s;
}
.il-collab-card:hover .il-collab-card__cta-line { width: 40px; }

/* Single collaborateur — aligné app/collaborations/[slug]/page.tsx */
body .il-page.il-collab-single {
  padding-top: calc(var(--nav-height) + env(safe-area-inset-top, 0px));
}
.il-collab-single__header {
  padding: 8rem var(--il-page-pad-x) 4rem;
  border-bottom: 1px solid var(--border);
}
.il-collab-single__header-label {
  margin-bottom: 1rem;
}
.il-collab-single__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--foreground);
  margin: 0;
}
.il-collab-single__inner {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--il-page-pad-x);
  padding-right: var(--il-page-pad-x);
}
.il-collab-single__inner--wide {
  max-width: min(var(--il-max-w-6xl), 100%);
}
.il-collab-single__inner--7xl {
  max-width: min(var(--il-max-w-7xl), 100%);
}
.il-collab-single__inner--narrow {
  max-width: min(48rem, 100%);
}
.il-collab-single__profile {
  padding: 5rem 0;
}
@media (min-width: 768px) {
  .il-collab-single__profile {
    padding: 7rem 0;
  }
}
.il-collab-single__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .il-collab-single__grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}
.il-collab-single__portrait {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--muted);
}
/* Portrait fill — position:absolute pour remplir le conteneur aspect-ratio */
.il-collab-single__portrait-img,
.il-collab-single__portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.il-collab-single__bio-label {
  margin-bottom: 1.5rem;
}
.il-collab-single__bio-name {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--foreground);
  margin: 0 0 2rem;
}
.il-collab-single__bio-text {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
  margin: 0 0 2rem;
}
@media (min-width: 768px) {
  .il-collab-single__bio-text {
    font-size: 1rem;
  }
}
.il-collab-single__text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--foreground);
  text-decoration: none;
  padding-top: 1rem;
  transition: opacity 0.2s;
}
.il-collab-single__text-link:hover {
  opacity: 0.6;
}
.il-collab-single__text-link-line {
  display: inline-block;
  width: 1.5rem;
  height: 1px;
  background: currentColor;
  transition: width 0.3s;
}
.il-collab-single__text-link:hover .il-collab-single__text-link-line {
  width: 2.5rem;
}
.il-collab-single__text-link--archive {
  flex-shrink: 0;
}
.il-collab-single__story {
  padding: 5rem 0;
  background: var(--muted);
}
@media (min-width: 768px) {
  .il-collab-single__story {
    padding: 7rem 0;
  }
}
.il-collab-single__story-kicker {
  text-align: center;
  margin-bottom: 1.5rem;
}
.il-collab-single__story-title {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--foreground);
  margin: 0 0 2.5rem;
}
.il-collab-single__story-body--center {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
  text-align: center;
}
@media (min-width: 768px) {
  .il-collab-single__story-body--center {
    font-size: 1rem;
  }
}
.il-collab-single__story-body--center p {
  margin: 0;
}
.il-collab-single__story-body--center p + p {
  margin-top: 1rem;
}
.il-collab-single__products {
  padding: 5rem 0;
}
@media (min-width: 768px) {
  .il-collab-single__products {
    padding: 7rem 0;
  }
}
.il-collab-single__section-head {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .il-collab-single__section-head {
    margin-bottom: 4rem;
  }
}
.il-collab-single__section-head .label-text {
  margin-bottom: 1rem;
}
.il-collab-single__section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--foreground);
  margin: 0;
}
.il-collab-single__products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .il-collab-single__products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .il-collab-single__products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.il-collab-single__product {
  display: block;
  text-decoration: none;
  color: inherit;
}
.il-collab-single__product-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--muted);
  margin-bottom: 1.5rem;
}
.il-collab-single__product-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.il-collab-single__product:hover .il-collab-single__product-image {
  transform: scale(1.05);
}
.il-collab-single__product-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.il-collab-single__product-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin: 0;
  transition: opacity 0.2s;
}
.il-collab-single__product:hover .il-collab-single__product-name {
  opacity: 0.7;
}
.il-collab-single__product-cat {
  margin: 0;
}
.il-collab-single__others {
  padding: 5rem 0;
}
@media (min-width: 768px) {
  .il-collab-single__others {
    padding: 7rem 0;
  }
}
.il-collab-single__others-bar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .il-collab-single__others-bar {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
  }
}
.il-collab-single__others-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .il-collab-single__others-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.il-collab-single__other-image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--muted);
  margin-bottom: 1.25rem;
}
.il-collab-single__other-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.il-collab-single__other:hover .il-collab-single__other-image {
  transform: scale(1.05);
}
.il-collab-single__other .label-text {
  margin-bottom: 0.5rem;
}
.il-collab-single__other-name {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin: 0 0 0.75rem;
}
.il-collab-single__other-city {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0 0 0.75rem;
}
.il-collab-single__other-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--foreground);
  text-decoration: none;
  transition: opacity 0.2s;
}
.il-collab-single__other-cta:hover {
  opacity: 0.6;
}
.il-collab-single__other-cta-line {
  display: inline-block;
  width: 1rem;
  height: 1px;
  background: currentColor;
  transition: width 0.3s;
}
.il-collab-single__other:hover .il-collab-single__other-cta-line {
  width: 2rem;
}
.il-collab-single__back {
  padding: 4rem 0 5rem;
  background: var(--muted);
  border-top: 1px solid var(--border);
}
@media (min-width: 768px) {
  .il-collab-single__back {
    padding: 5rem 0 6rem;
  }
}
.il-collab-single__back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--foreground);
  text-decoration: none;
  transition: opacity 0.2s;
}
.il-collab-single__back-link:hover {
  opacity: 0.6;
}
.il-collab-single__back .il-collab-single__inner--narrow {
  text-align: center;
}
.il-collab-single__back-link-line {
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: currentColor;
}

.il-tag {
  display: inline-block; padding: 0.375rem 1rem; border: 1px solid var(--border);
  font-family: var(--font-sans); font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted-foreground);
}

.il-featured-project {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) { .il-featured-project { grid-template-columns: 3fr 2fr; } }
.il-featured-project__image { aspect-ratio: 4/3; overflow: hidden; background: var(--secondary); }
.il-featured-project__image img { width: 100%; height: 100%; object-fit: cover; }
.il-featured-project__title { font-family: var(--font-serif); font-size: 2rem; font-weight: 300; margin-top: 1rem; }
.il-featured-project__desc { font-size: 0.9375rem; line-height: 1.8; color: var(--muted-foreground); margin-top: 1rem; }

.il-projects-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
}
@media (min-width: 640px) { .il-projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .il-projects-grid { grid-template-columns: repeat(3, 1fr); } }
.il-project-card { }
.il-project-card__image { aspect-ratio: 4/3; overflow: hidden; background: var(--secondary); margin-bottom: 1rem; }
.il-project-card__image img { width: 100%; height: 100%; object-fit: cover; }
.il-project-card__name { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 300; margin-top: 0.375rem; }
.il-project-card__desc { font-size: 0.8125rem; color: var(--muted-foreground); margin-top: 0.375rem; line-height: 1.5; }

/* ── Collections ────────────────────────────────────────────────────────────── */
.il-collections-page__head {
  margin-bottom: clamp(4rem, 6vw, 6rem);
}
.il-collections-page__head .label-text {
  margin-bottom: 1rem;
}
.il-collections-page__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1;
  color: var(--foreground);
  margin-top: 0;
}

.il-collections-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .il-collections-grid { gap: 2.5rem; }
}
@media (min-width: 640px) { .il-collections-grid { grid-template-columns: repeat(2, 1fr); } }

.il-collection-card { display: block; }
.il-collection-card__image-wrap { aspect-ratio: 16/9; overflow: hidden; background: var(--secondary); }
.il-collection-card__placeholder { width: 100%; height: 100%; background: var(--muted); }
.il-collection-card__image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.il-collection-card:hover .il-collection-card__image { transform: scale(1.05); }
.il-collection-card__info { padding: 1.5rem 0 0; }
/* text-2xl (Next) */
.il-collection-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--foreground);
}
/* mt-2 text-sm text-muted-foreground leading-relaxed — app/collections/page.tsx */
.il-collection-card__desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}

.il-collection-hero { max-width: 700px; }
.il-collection-hero__title { font-size: clamp(2.5rem, 6vw, 5rem); margin-top: 1rem; }

/* ── Autres Collections — parity app/collections/[slug]/page.tsx ──────────── */
.il-other-collections-section {
  width: 100%;
  box-sizing: border-box;
  background-color: var(--muted);
  padding: 4rem 2rem; /* py-16 px-8 */
  overflow-x: hidden;
}
@media (min-width: 768px) {
  .il-other-collections-section {
    padding: 5rem 4rem; /* md:py-20 md:px-16 */
  }
}
@media (min-width: 1024px) {
  .il-other-collections-section {
    padding-left: 6rem;
    padding-right: 6rem; /* lg:px-24 */
  }
}
.il-other-collections-inner {
  max-width: 64rem; /* max-w-5xl */
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.il-other-collections__heading {
  font-family: var(--font-serif);
  font-size: 1.5rem; /* text-2xl */
  font-weight: 300;
  letter-spacing: 0.025em; /* tracking-wide */
  text-align: center;
  color: var(--foreground);
  margin: 0 0 2.5rem; /* mb-10 */
}
@media (min-width: 768px) {
  .il-other-collections__heading {
    font-size: 1.875rem; /* md:text-3xl */
  }
}
.il-other-collections {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 1.5rem; /* gap-6 */
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  padding-bottom: 0.35rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.il-other-collections__link {
  font-family: var(--font-sans);
  font-size: 0.75rem; /* text-xs */
  letter-spacing: 0.2em; /* tracking-[0.2em] */
  text-transform: uppercase;
  color: rgba(var(--foreground-rgb, 26, 22, 20), 0.6); /* text-foreground/60 */
  transition: color 0.15s ease;
  flex: 0 0 auto;
  white-space: nowrap;
  scroll-snap-align: start;
}
@media (min-width: 768px) {
  .il-other-collections {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
  }
}
.il-other-collections__link:hover {
  color: var(--foreground);
}

/* ── Introduction Page (aligné app/introduction/page.tsx) ───────────────────── */
/* Sous la ligne « DIRECTRICE GÉNÉRALE… », avant le corps de texte */
.il-intro-header .il-intro-profile {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 0;
}
.il-intro-profile {
  margin-left: auto;
  margin-right: auto;
  max-width: 17rem;
  text-align: center;
}
.il-intro-profile__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.25rem;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--border);
}
.il-intro-header { margin-bottom: clamp(4rem, 6vw, 6rem); margin-top: 0; }
.il-intro-header .label-text:first-of-type { margin-bottom: 1.5rem; }
.il-intro-header .label-text + .label-text { margin-bottom: 1rem; }
.il-intro-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}
.il-intro-content p {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--foreground);
  margin: 0;
}
@media (min-width: 768px) {
  .il-intro-content p { font-size: 1rem; }
}

/* ── Inscription (aligné app/auth/inscription/page.tsx) ───────────────────── */
.il-inscription-hero {
  padding: 8rem var(--il-page-pad-x) 4rem;
  border-bottom: 1px solid var(--border);
}
.il-inscription-hero .label-text {
  margin-bottom: 1rem;
}
.il-inscription-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1;
  color: var(--foreground);
  margin: 0;
}
.il-inscription-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  padding: 5rem var(--il-page-pad-x) 4rem;
  align-items: start;
}
@media (min-width: 768px) {
  .il-inscription-body {
    grid-template-columns: 1fr 1fr;
  }
}
.il-inscription-aside__lead {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
  max-width: 24rem;
  margin: 0 0 4rem;
}
.il-inscription-aside__blocks {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.il-inscription-aside__block {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}
.il-inscription-aside__block .label-text {
  margin-bottom: 0.75rem;
}
.il-inscription-aside__block a {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--foreground);
  text-decoration: none;
  transition: opacity 0.2s;
}
.il-inscription-aside__block a:hover {
  opacity: 0.6;
}
.il-inscription-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.il-inscription-form__grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 479px) {
  .il-inscription-form__grid2 {
    grid-template-columns: 1fr;
  }
}
.il-inscription-form label {
  display: block;
  margin-bottom: 0.75rem;
}
.il-inscription-form input[type="text"],
.il-inscription-form input[type="email"],
.il-inscription-form input[type="password"] {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  padding: 0.75rem 0;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--foreground);
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.il-inscription-form input:focus {
  border-bottom-color: var(--foreground);
}
.il-inscription-form__submit {
  width: 100%;
  padding: 1.25rem 1rem;
  border: none;
  background: var(--foreground);
  color: var(--primary-foreground);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}
.il-inscription-form__submit:hover:not(:disabled) {
  opacity: 0.85;
}
.il-inscription-form__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.il-inscription-foot {
  padding: 0 var(--il-page-pad-x) 4rem;
  text-align: center;
}
.il-inscription-foot a {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
}
.il-inscription-foot a:hover {
  color: var(--foreground);
}
.il-inscription-alert {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}
.il-inscription-alert--error {
  border-color: rgba(180, 0, 32, 0.35);
  background: rgba(180, 0, 32, 0.05);
  color: #8a1530;
}
.il-inscription-alert--ok {
  border-color: rgba(45, 122, 79, 0.4);
  background: rgba(45, 122, 79, 0.06);
  color: #2d7a4f;
}

body.il-page-inscription-success .il-page {
  padding-top: calc(var(--nav-height) + env(safe-area-inset-top, 0px));
}
.il-inscription-success-main {
  max-width: 36rem;
  margin: 0 auto;
  padding: 5rem var(--il-page-pad-x) 3rem;
  text-align: center;
}
.il-inscription-success-text {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
  margin: 0 0 2.5rem;
}
.il-inscription-success-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.il-inscription-success-btn {
  display: block;
  width: 100%;
  max-width: 28rem;
  padding: 1rem 1.25rem;
  background: var(--foreground);
  color: var(--primary-foreground);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s;
}
.il-inscription-success-btn:hover {
  opacity: 0.9;
}
.il-inscription-success-link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
}
.il-inscription-success-link:hover {
  color: var(--foreground);
}

/* ── Contact Page ───────────────────────────────────────────────────────────── */
.il-contact-layout {
  display: grid; grid-template-columns: 1fr;
  padding: var(--il-page-pad-y) var(--il-page-pad-x);
  gap: 5rem;
}
@media (min-width: 768px) { .il-contact-layout { grid-template-columns: 1fr 1fr; } }

.il-contact-info__intro { font-size: 0.9375rem; line-height: 1.7; color: var(--muted-foreground); max-width: 28rem; margin-bottom: 4rem; }
.il-contact-blocks { display: flex; flex-direction: column; gap: 0; }
.il-contact-block { border-top: 1px solid var(--border); padding: 1.5rem 0; }
.il-contact-block p.label-text { margin-bottom: 0.75rem; }
.il-contact-block__links { display: flex; flex-direction: column; gap: 0.5rem; }
.il-contact-block__link {
  font-family: var(--font-serif); font-size: 1.25rem; font-weight: 300;
  color: var(--foreground); transition: opacity 0.2s;
}
.il-contact-block__link:hover { opacity: 0.6; }
.il-contact-block__showrooms { display: flex; flex-direction: column; gap: 1rem; }
.il-contact-block__showrooms strong { font-family: var(--font-serif); font-size: 1rem; font-weight: 400; }
.il-contact-block__showrooms p { font-size: 0.875rem; color: var(--muted-foreground); }

/* Contact Form */
.il-contact-form { display: flex; flex-direction: column; gap: 2rem; }
.il-form-field { display: flex; flex-direction: column; gap: 0.75rem; }
.il-form-input, .il-form-textarea {
  background: none; border: none; border-bottom: 1px solid var(--border);
  padding: 0.5rem 0; font-family: var(--font-sans); font-size: 0.875rem;
  color: var(--foreground); outline: none; transition: border-color 0.2s;
  width: 100%; resize: none;
}
.il-form-input:focus, .il-form-textarea:focus { border-color: var(--foreground); }
.il-form-input::placeholder, .il-form-textarea::placeholder { color: var(--muted-foreground); }
.il-form-error { color: #b00020; font-size: 0.8125rem; padding: 0.75rem 0; }
.il-form-success { color: #2d7a4f; font-size: 0.875rem; padding: 0.75rem 0; }

/* Contact Form 7 (page Contact) — alignement thème INTERloft */
/* Bloc lecteur d’écran CF7 (doublon des erreurs) — retiré aussi en PHP (inc/cf7.php) ; filet AJAX */
.wpcf7 .screen-reader-response,
.wpcf7 .wpcf7-screen-reader-response {
  display: none !important;
}

/* CF7 6.x : champs cachés dans un <fieldset> — bordure / marge par défaut = faux “trait” entre les champs */
.il-contact-form-wrap--cf7 .wpcf7-form fieldset.hidden-fields-container,
.wpcf7-form fieldset.hidden-fields-container {
  border: none;
  margin: 0;
  padding: 0;
  min-width: 0;
  min-inline-size: 0;
  display: contents;
}
.il-contact-form-wrap--cf7 form.wpcf7-form,
form.wpcf7-form.il-cf7 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
/* Réponse globale (succès / échec envoi) : en haut du formulaire, sous les champs cachés */
.il-contact-form-wrap--cf7 form.wpcf7-form > input[type="hidden"],
form.wpcf7-form.il-cf7 > input[type="hidden"] {
  order: -3;
}
.il-contact-form-wrap--cf7 form.wpcf7-form > .wpcf7-response-output,
form.wpcf7-form.il-cf7 > .wpcf7-response-output {
  order: -2;
  margin-top: 0;
}
/* Bloc validation vide (message désactivé côté thème — erreurs détaillées sous chaque champ) */
.wpcf7-response-output.wpcf7-validation-errors:empty {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  min-height: 0 !important;
}
.il-contact-form-wrap--cf7 .wpcf7 label {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin: 0;
}
.il-contact-form-wrap--cf7 .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.il-contact-form-wrap--cf7 .wpcf7-form-control {
  width: 100%;
}
.il-contact-form-wrap--cf7 .wpcf7 input[type="text"],
.il-contact-form-wrap--cf7 .wpcf7 input[type="email"],
.il-contact-form-wrap--cf7 .wpcf7 input[type="tel"],
.il-contact-form-wrap--cf7 .wpcf7 textarea {
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--foreground);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  resize: none;
}
.il-contact-form-wrap--cf7 .wpcf7 input:focus,
.il-contact-form-wrap--cf7 .wpcf7 textarea:focus {
  border-color: var(--foreground);
}
/* Erreurs par champ (validation) — sous l’input, espacement + rouge */
.il-contact-form-wrap--cf7 .wpcf7-form-control-wrap.wpcf7-not-valid .wpcf7-form-control,
.wpcf7-form .wpcf7-form-control-wrap.wpcf7-not-valid .wpcf7-form-control {
  border-bottom-color: #b00020 !important;
}
.il-contact-form-wrap--cf7 .wpcf7-not-valid-tip,
.wpcf7-form .wpcf7-not-valid-tip {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #b00020;
  margin: 0.5rem 0 0;
  line-height: 1.45;
}

/* Messages globaux CF7 (échec envoi, spam…) — en haut du form (order), marge sous le bandeau */
.il-contact-form-wrap--cf7 .wpcf7-response-output,
.wpcf7-form .wpcf7-response-output {
  box-sizing: border-box;
  margin: 0 0 1.25rem;
  padding: 0;
  border: none;
  border-radius: 2px;
  font-size: 0.8125rem;
  line-height: 1.55;
  clear: both;
}
.il-contact-form-wrap--cf7 .wpcf7-response-output.wpcf7-mail-sent-ok,
.wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  margin-top: 0;
  margin-bottom: 1.25rem;
  padding: 1rem 1.125rem;
  color: #1e5c3a;
  background: rgba(45, 122, 79, 0.08);
  border: 1px solid rgba(45, 122, 79, 0.28);
}
.il-contact-form-wrap--cf7 .wpcf7-response-output.wpcf7-mail-sent-ng,
.il-contact-form-wrap--cf7 .wpcf7-response-output.wpcf7-validation-errors,
.il-contact-form-wrap--cf7 .wpcf7-response-output.wpcf7-acceptance-missing,
.il-contact-form-wrap--cf7 .wpcf7-response-output.wpcf7-spam-blocked,
.wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ng,
.wpcf7-form .wpcf7-response-output.wpcf7-validation-errors,
.wpcf7-form .wpcf7-response-output.wpcf7-acceptance-missing,
.wpcf7-form .wpcf7-response-output.wpcf7-spam-blocked {
  margin-top: 0;
  margin-bottom: 1.25rem;
  padding: 1rem 1.125rem;
  color: #b00020;
  font-weight: 500;
  background: rgba(176, 0, 32, 0.07);
  border: 1px solid rgba(176, 0, 32, 0.35);
}
.il-contact-form-wrap--cf7 .wpcf7 input[type="submit"] {
  display: inline-block;
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--foreground);
  color: var(--primary-foreground);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.il-contact-form-wrap--cf7 .wpcf7 input[type="submit"]:hover,
.il-contact-form-wrap--cf7 .wpcf7 input[type="submit"]:focus {
  opacity: 0.85;
}
.il-contact-form-wrap--cf7 .wpcf7-spinner {
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* ── Showrooms / Points de Vente ────────────────────────────────────────────── */
.il-showrooms { padding: var(--il-page-pad-y) var(--il-page-pad-x); display: flex; flex-direction: column; gap: 6rem; }
.il-showroom {
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
@media (min-width: 768px) { .il-showroom { grid-template-columns: 1fr 1fr; } }
.il-showroom--reversed > *:first-child { order: 2; }
.il-showroom--reversed > *:last-child { order: 1; }
@media (max-width: 767px) {
  .il-showroom--reversed > *:first-child { order: unset; }
  .il-showroom--reversed > *:last-child { order: unset; }
}
.il-showroom__image-wrap { aspect-ratio: 4/3; overflow: hidden; background: var(--secondary); }
.il-showroom__image { width: 100%; height: 100%; object-fit: cover; }
.il-showroom__city { font-family: var(--font-serif); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300; color: var(--foreground); line-height: 1.1; margin-top: 0.5rem; }
.il-showroom__country { font-size: 0.875rem; color: var(--muted-foreground); margin-top: 0.25rem; margin-bottom: 2.5rem; }
.il-showroom__meta { display: flex; flex-direction: column; gap: 0; }
.il-showroom__meta-item { border-top: 1px solid var(--border); padding: 1.25rem 0; }
.il-showroom__meta-item p.label-text { margin-bottom: 0.5rem; }
.il-showroom__meta-item > p:not(.label-text) { font-size: 0.875rem; color: var(--muted-foreground); }
.il-showroom__email { font-size: 0.875rem; color: var(--muted-foreground); display: block; margin-top: 0.25rem; transition: color 0.2s; }
.il-showroom__email:hover { color: var(--foreground); }

/* ── Legal Pages ────────────────────────────────────────────────────────────── */
.il-legal__intro { font-size: 1rem; line-height: 1.8; color: var(--muted-foreground); margin-bottom: 3rem; }
.il-legal__content h2 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 300; margin: 2.5rem 0 1rem; }
.il-legal__content h3 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 300; margin: 2rem 0 0.75rem; }
.il-legal__content p { font-size: 0.9375rem; line-height: 1.8; color: var(--muted-foreground); margin-bottom: 1rem; }
.il-legal__content ul { list-style: disc inside; display: flex; flex-direction: column; gap: 0.5rem; margin: 1rem 0; }
.il-legal__content li { font-size: 0.9375rem; color: var(--muted-foreground); line-height: 1.7; }

/* ── Rich legal content from meta (WYSIWYG/plain text) ───────────────────── */
.il-legal-rich h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--foreground);
  margin: 2.5rem 0 1rem;
}
.il-legal-rich h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--foreground);
  margin: 2rem 0 0.75rem;
}
.il-legal-rich p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--foreground);
  margin-bottom: 1rem;
}
.il-legal-rich ul {
  list-style: disc;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
}
.il-legal-rich li {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--foreground);
}

/* ── Empty State ────────────────────────────────────────────────────────────── */
.il-empty { text-align: center; padding: 4rem 0; }
.il-empty__text { font-size: 0.9375rem; color: var(--muted-foreground); }

/* ── Footer ─────────────────────────────────────────────────────────────────── */
.il-footer { width: 100%; border-top: 1px solid rgba(26,22,20,0.1); }
.il-footer__newsletter {
  overflow: hidden; max-height: 0; opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}
.il-footer__newsletter.is-open { max-height: 200px; opacity: 1; }
.il-footer__newsletter-inner {
  padding: 1.75rem clamp(2rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(26,22,20,0.1);
}
.il-newsletter-form { display: flex; align-items: baseline; gap: 1rem; max-width: 320px; }
.il-newsletter-form label { font-size: 10px; letter-spacing: 0.1em; color: rgba(26,22,20,0.4); flex-shrink: 0; }
.il-newsletter-form__input {
  flex: 1; background: none; border: none; border-bottom: 1px solid rgba(26,22,20,0.2);
  font-family: var(--font-sans); font-size: 10px; color: var(--foreground);
  padding-bottom: 2px; outline: none;
  transition: border-color 0.2s;
}
.il-newsletter-form__input:focus { border-color: rgba(26,22,20,0.6); }
.il-footer__main { padding: 3rem clamp(2rem, 4vw, 4rem) 2rem; }
.il-footer__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .il-footer__grid { grid-template-columns: repeat(4, 1fr); } }
.il-footer__col { }
.il-footer__label {
  display: block; font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(26,22,20,0.35); font-weight: 500; margin-bottom: 0.75rem;
}
.il-footer__nav { display: flex; flex-direction: column; gap: 0.625rem; }
.il-footer__link {
  font-family: var(--font-sans); font-size: 10px; font-weight: 300;
  letter-spacing: 0.05em; color: rgba(26,22,20,0.6);
  transition: color 0.2s; background: none; border: none; text-align: left;
  cursor: pointer;
}
.il-footer__link:hover { color: var(--foreground); }
.il-footer__muted { font-family: var(--font-sans); font-size: 10px; color: rgba(26,22,20,0.4); }
.il-footer__copyright {
  border-top: 1px solid rgba(26,22,20,0.1); padding-top: 1.5rem; text-align: center;
}
.il-footer__copyright p {
  font-family: var(--font-sans); font-size: 9px; font-weight: 300;
  letter-spacing: 0.25em; text-transform: uppercase; color: rgba(26,22,20,0.3);
}

/* ── Navbar scroll states ───────────────────────────────────────────────────── */
.il-navbar {
  transition: transform 0.35s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
.il-navbar.is-scrolled {
  box-shadow: 0 1px 20px rgba(26,22,20,0.08);
  background-color: rgba(248, 245, 240, 0.97);
}
.il-navbar.is-hidden {
  transform: translateY(-100%);
}
.il-navbar.is-visible {
  transform: translateY(0);
}

/* ── Mobile menu open/close transitions ─────────────────────────────────────── */
.il-mobile-menu {
  visibility: hidden;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
}
.il-mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
/* .il-mobile-menu__sub rules consolidated above */

/* (search modal open/close moved to main block above) */

/* Dropdown transitions moved to component-level rules */

/* ── Hero slider transitions ────────────────────────────────────────────────── */
.il-hero__slide {
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}
.il-hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.il-hero__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none; cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  padding: 0;
}
.il-hero__dot.is-active {
  background: #fff;
  transform: scale(1.3);
}
.il-hero__dots {
  display: flex; align-items: center; gap: 8px;
}

/* ── Favorite button — active state + click animation ───────────────────────── */
.il-favorite-btn,
.il-favorite-btn-v2 {
  transition: color 0.2s ease, transform 0.2s ease;
}
.il-favorite-btn.is-active    { color: #e11d48; }
.il-favorite-btn-v2.is-active svg { fill: #e11d48; stroke: #e11d48; }
.il-favorite-btn:active       { transform: scale(0.88); }
.il-favorite-btn-v2:active    { transform: scale(0.88); }

/* Minimalist pulse on click */
@keyframes il-fav-pulse {
  0%   { transform: scale(1); }
  35%  { transform: scale(0.72); }
  70%  { transform: scale(1.18); }
  100% { transform: scale(1); }
}
.il-fav-clicking {
  animation: il-fav-pulse 0.35s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

/* ── Favorites slider in account page ────────────────────────────────────────
   Mobile  : 2 colonnes  (< 640px)
   Tablet  : 3 colonnes  (640px – 1023px)
   Desktop : 3 colonnes  (≥ 1024px)
   ─────────────────────────────────────────────────────────────────────────── */
.il-fav-count {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin: 0 0 1rem;
}

/* Scrollable horizontal track */
.il-fav-strip {
  --fav-gap: 0.75rem;
  --fav-cols: 2;                      /* mobile default */
  /* Hauteur image identique pour toutes les cartes (px fixes, pas ratio variable) */
  --fav-img-h: clamp(7.25rem, 26vw, 10.25rem);
  display: flex;
  align-items: stretch;
  gap: var(--fav-gap);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  margin-bottom: 1.25rem;
}
@media (min-width: 640px)  { .il-fav-strip { --fav-cols: 3; --fav-img-h: clamp(7.5rem, 22vw, 10.5rem); } }
@media (min-width: 1024px) { .il-fav-strip { --fav-cols: 3; --fav-img-h: 10.5rem; } }

/* Scrollbar — thin and minimal */
.il-fav-strip::-webkit-scrollbar       { height: 2px; }
.il-fav-strip::-webkit-scrollbar-track { background: transparent; }
.il-fav-strip::-webkit-scrollbar-thumb { background: var(--border); border-radius: 1px; }

/* Each card — même hauteur totale (flex column + zone titre fixe) */
.il-fav-strip__card {
  flex: 0 0 calc((100% - (var(--fav-cols) - 1) * var(--fav-gap)) / var(--fav-cols));
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  min-height: 0;
}
.il-fav-strip__card:hover { opacity: 0.65; }

/* Image — hauteur fixe partagée, largeur 100% du card */
.il-fav-strip__img-wrap {
  width: 100%;
  height: var(--fav-img-h);
  flex: 0 0 var(--fav-img-h);
  overflow: hidden;
  background: var(--secondary);
  margin-bottom: 0.625rem;
  position: relative;
}
.il-fav-strip__img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.il-fav-strip__card:hover .il-fav-strip__img-wrap img {
  transform: scale(1.04);
}

/* Titre — 2 lignes max, hauteur de bloc identique sur toutes les cartes */
.il-fav-strip__name {
  font-family: var(--font-serif);
  font-size: 0.8125rem;
  font-weight: 300;
  line-height: 1.35;
  color: var(--foreground);
  margin: 0;
  min-height: calc(2 * 1.35 * 0.8125rem);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* "See all" link */
.il-fav-see-all {
  display: inline-flex;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}
.il-fav-see-all:hover { color: var(--foreground); }

/* ── Form field error state ─────────────────────────────────────────────────── */
.il-form-input.has-error,
.il-form-textarea.has-error {
  border-bottom-color: #b00020;
}

.il-form-field__error {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  font-weight: 400;
  color: #b00020;
  line-height: 1.4;
}

/* ── Scroll reveal ──────────────────────────────────────────────────────────── */
.il-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.il-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Back to top button ─────────────────────────────────────────────────────── */
#il-back-to-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--primary); color: var(--primary-foreground);
  border: none; cursor: pointer; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s, transform 0.3s ease;
  z-index: 900;
}
#il-back-to-top.is-visible {
  opacity: 1; visibility: visible;
}
#il-back-to-top:hover {
  transform: translateY(-3px);
}

/* ── Footer newsletter accordion ────────────────────────────────────────────── */
.il-footer__newsletter-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.il-footer__newsletter-toggle .il-dropdown__chevron,
.il-footer__newsletter-toggle svg {
  transition: transform 0.3s ease;
}
.il-footer__newsletter-toggle.is-open svg {
  transform: rotate(180deg);
}

/* (cat-pill styles moved to search modal block above) */

/* ── Admin CSS hint ─────────────────────────────────────────────────────────── */
.wp-admin-bar { top: auto !important; bottom: 0; }


/* ── Footer responsive grid ─────────────────────────────────────────────────── */
.il-footer-grid {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .il-footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}



/* ── Print ──────────────────────────────────────────────────────────────────── */
@media print {
  .il-navbar, .il-whatsapp-btn, .il-search-modal, .il-mobile-menu, #il-preloader { display: none !important; }
  body { background: #fff; }
  .il-page { padding-top: 0; }
}
