/* ══════════════════════════════════════════
   Fête du Cidre — Feuille de styles principale
   Design premium d'après maquette
   Variables CSS définies par Theme::cssVariables()
   ══════════════════════════════════════════ */

/* ===== GRAIN OVERLAY ===== */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--vert-profond);
  color: var(--creme);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.5rem 2rem;
}
.topbar-wrap {
  background: var(--vert-profond);
}

.topbar a {
  color: var(--orange-doux);
  text-decoration: none;
  transition: color 0.3s;
}

.topbar a:hover {
  color: var(--orange-cidre);
}

/* ===== NAVIGATION ===== */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 245, 236, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(44, 74, 46, 0.08);
  transition: box-shadow 0.3s ease;
}

.main-nav.scrolled {
  box-shadow: 0 4px 30px rgba(44, 74, 46, 0.08);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.35rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--vert-profond);
}

.logo-icon {
  width: 88px;
  height: 88px;
  position: relative;
  flex-shrink: 0;
}

.logo-icon svg,
.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.logo-text span {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vert-mousse);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--vert-profond);
  padding: 0.6rem 1.1rem;
  border-radius: 100px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  background: var(--vert-profond);
  color: var(--creme);
}

.nav-links a.active {
  background: var(--orange-cidre);
  color: white;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 200;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--vert-profond);
  border-radius: 2px;
  transition: all 0.3s;
  position: absolute;
  left: 0;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 11px; }
.menu-toggle span:nth-child(3) { top: 22px; }

/* Nav transparente quand menu ouvert */
body.menu-open .main-nav {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}

/* Hamburger → X animation */
.menu-toggle.open span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}

/* Body scroll lock quand menu ouvert */
body.menu-open {
  overflow: hidden;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--creme) 0%, var(--creme-fonce) 50%, #E6DDCA 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 20% 50%, var(--vert-profond) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--vert-profond) 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px;
}

.hero-decoration {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 60%;
  height: 120%;
  border-radius: 0 0 0 40%;
  background: linear-gradient(180deg, var(--vert-mousse), var(--vert-profond));
  opacity: 0.06;
  transform: rotate(-5deg);
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  animation: fadeInUp 1s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--vert-profond);
  color: var(--creme);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeInUp 1s 0.1s ease both;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--orange-cidre);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--vert-profond);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s 0.2s ease both;
}

.hero-title em {
  font-style: italic;
  color: var(--orange-cidre);
  position: relative;
}

.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--orange-doux);
  opacity: 0.25;
  border-radius: 4px;
  transform: skewX(-8deg);
}

.hero-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--brun);
  margin-bottom: 1.5rem;
  font-weight: 400;
  animation: fadeInUp 1s 0.3s ease both;
}

.hero-date strong {
  color: var(--orange-cidre);
  font-weight: 600;
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--texte-leger);
  max-width: 480px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s 0.4s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s 0.5s ease both;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}

.btn:hover svg {
  transform: translateX(3px);
}

/* Hero visual */
.hero-visual {
  position: relative;
  animation: fadeInUp 1.2s 0.3s ease both;
}

.hero-image-frame {
  position: relative;
  border-radius: 24px 24px 120px 24px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(44, 74, 46, 0.15),
    0 8px 24px rgba(44, 74, 46, 0.08);
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--vert-mousse), var(--vert-profond));
}

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

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  text-align: center;
  color: var(--creme);
  position: relative;
}

.hero-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(212, 131, 59, 0.3), transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(122, 158, 107, 0.3), transparent 60%);
}

.hero-image-placeholder .apple-icon {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  animation: float 4s ease-in-out infinite;
  line-height: 1;
}

.hero-image-placeholder p {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  line-height: 1.3;
}

.hero-image-placeholder small {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  opacity: 0.8;
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
}

.floating-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  z-index: 3;
  animation: floatCard 6s ease-in-out infinite;
}

.floating-card.card-date {
  bottom: 8%;
  left: -8%;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.floating-card .card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--orange-cidre);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.floating-card .card-info {
  font-size: 0.8rem;
  color: var(--texte-leger);
}

.floating-card .card-info strong {
  display: block;
  font-size: 1rem;
  color: var(--texte);
}

.floating-card.card-lieu {
  top: 8%;
  right: -5%;
  animation-delay: -3s;
}

/* ===== SECTIONS COMMUNES ===== */
.section {
  padding: 7rem 2rem;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange-cidre);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--vert-profond);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--texte-leger);
  line-height: 1.7;
}

/* ===== PROGRAMME ===== */
.programme-section {
  background: var(--blanc);
}

.programme-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.programme-card {
  background: var(--creme);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: default;
  border: 1px solid transparent;
}

.programme-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(44, 74, 46, 0.1);
  border-color: var(--vert-clair);
}

.programme-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--vert-mousse), var(--orange-cidre));
  opacity: 0;
  transition: opacity 0.4s;
}

.programme-card:hover::before {
  opacity: 1;
}

.programme-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: var(--vert-profond);
  color: var(--creme);
}

.programme-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--vert-profond);
  margin-bottom: 0.8rem;
}

.programme-card p {
  font-size: 0.95rem;
  color: var(--texte-leger);
  line-height: 1.65;
}

/* ===== CTA RÉSERVATION ===== */
.cta-section {
  background: var(--vert-profond);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(212, 131, 59, 0.15), transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(122, 158, 107, 0.15), transparent 50%);
}

.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-inner .section-label {
  color: var(--orange-doux);
}

.cta-inner .section-title {
  color: var(--creme);
}

.cta-inner .section-subtitle {
  color: rgba(250, 245, 236, 0.7);
  margin-bottom: 2.5rem;
}

.btn-cta {
  background: var(--orange-cidre);
  color: white;
  font-size: 1.05rem;
  padding: 1.15rem 2.5rem;
  box-shadow: 0 4px 24px rgba(212, 131, 59, 0.35);
}

.btn-cta:hover {
  background: var(--orange-doux);
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(212, 131, 59, 0.5);
}

/* ===== CONCOURS ===== */
.concours-section {
  background: linear-gradient(180deg, var(--creme) 0%, var(--blanc) 100%);
}

.concours-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.concours-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 2px solid var(--creme-fonce);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}

.concours-card:hover {
  border-color: var(--vert-clair);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(44, 74, 46, 0.1);
}

.concours-card .card-emoji {
  margin-bottom: 1rem;
  line-height: 1;
}

.concours-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--vert-profond);
  margin-bottom: 0.5rem;
}

.concours-card p {
  font-size: 0.9rem;
  color: var(--texte-leger);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.3rem;
  font-size: 0.82rem;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  background: var(--vert-profond);
  color: var(--creme);
  transition: all 0.3s;
}

.btn-sm:hover {
  background: var(--orange-cidre);
  color: white;
  transform: translateY(-1px);
}

/* ===== ARCHIVES / GALERIE ACCUEIL ===== */
.archives-section {
  background: var(--creme);
}

.archives-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 1.2rem;
}

.archives-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.archives-item:first-child {
  grid-row: 1 / 3;
}

.archives-item-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: white;
  position: relative;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.archives-item:hover .archives-item-inner {
  transform: scale(1.05);
}

.archives-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(44, 74, 46, 0.7));
  z-index: 1;
  transition: opacity 0.4s;
}

.archives-item:hover::after {
  opacity: 0.8;
}

.archives-item:nth-child(1) { background: linear-gradient(135deg, #3D5C3A, #2C4A2E); }
.archives-item:nth-child(2) { background: linear-gradient(135deg, var(--orange-cidre), #B8692A); }
.archives-item:nth-child(3) { background: linear-gradient(135deg, var(--brun-clair), var(--brun)); }
.archives-item:nth-child(4) { background: linear-gradient(135deg, var(--vert-clair), var(--vert-mousse)); }
.archives-item:nth-child(5) { background: linear-gradient(135deg, var(--orange-doux), var(--orange-cidre)); }

.archives-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.archives-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
  color: white;
}

.archives-item:first-child .archives-title {
  font-size: 2rem;
}

.archives-emoji {
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  line-height: 1;
}

/* ===== INFOS PRATIQUES ===== */
.infos-section {
  background: var(--blanc);
}

.infos-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.info-card {
  background: var(--creme);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--vert-mousse), var(--orange-cidre));
  border-radius: 0 4px 4px 0;
}

.info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--vert-profond);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.info-card h3 .info-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--vert-profond);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--creme);
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 1rem;
  color: var(--texte-leger);
  line-height: 1.6;
}

.info-list li .bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-cidre);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.info-list a {
  color: var(--orange-cidre);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.info-list a:hover {
  color: var(--vert-profond);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--vert-profond);
  color: var(--creme);
  padding: 4rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--vert-mousse), var(--orange-cidre), var(--orange-doux), var(--vert-mousse));
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250, 245, 236, 0.1);
}

.footer-brand .logo-text {
  font-size: 1.8rem;
  color: var(--creme);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(250, 245, 236, 0.6);
  line-height: 1.7;
  max-width: 340px;
  font-size: 0.95rem;
}

.footer-brand .footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-brand .footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.2s;
}

.footer-brand .footer-social a:hover {
  background: var(--orange-cidre);
  color: #fff;
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  color: var(--orange-doux);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  color: rgba(250, 245, 236, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--orange-cidre);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(250, 245, 236, 0.4);
}

.footer-bottom a {
  color: rgba(250, 245, 236, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--orange-cidre);
}

/* ===== PAGE HEADER (inner pages, simple) ===== */
.page-header {
  position: relative;
  padding: 3.5rem 0;
  overflow: hidden;
  background: linear-gradient(160deg, var(--creme) 0%, var(--creme-fonce) 50%, #E6DDCA 100%);
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 20% 50%, var(--vert-profond) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--vert-profond) 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  color: var(--vert-profond);
  margin-bottom: 0.5rem;
}

.page-header h1 .icon {
  vertical-align: -4px;
  margin-right: 0.25rem;
}

.page-header p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--texte-leger);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== PAGE HERO (premium inner pages) ===== */
.page-hero {
  position: relative;
  padding: 0 0 4rem;
  overflow: hidden;
  background: linear-gradient(160deg, var(--creme) 0%, var(--creme-fonce) 50%, #E6DDCA 100%);
}

.page-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 20% 50%, var(--vert-profond) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--vert-profond) 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px;
}

.page-hero-decoration {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 140%;
  border-radius: 0 0 0 40%;
  background: linear-gradient(180deg, var(--vert-mousse), var(--vert-profond));
  opacity: 0.06;
  transform: rotate(-5deg);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .breadcrumb {
  padding: 2rem 0 2rem;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--vert-profond);
  color: var(--creme);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--vert-profond);
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.page-hero-title em {
  font-style: italic;
  color: var(--orange-cidre);
  position: relative;
}

.page-hero-title em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--orange-doux);
  opacity: 0.25;
  border-radius: 4px;
  transform: skewX(-8deg);
}

.page-hero-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--texte-leger);
  line-height: 1.6;
  max-width: 600px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--brun);
}

.breadcrumb a {
  color: var(--vert-mousse);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--orange-cidre);
}

.breadcrumb-sep {
  color: var(--creme-fonce);
  display: flex;
  align-items: center;
}

.breadcrumb-section {
  background: var(--creme);
  border-bottom: 1px solid var(--creme-fonce);
}

.breadcrumb-section .breadcrumb {
  padding: 1rem 0;
}

/* ===== ARTICLE WRAPPER ===== */
.article-wrapper {
  max-width: 780px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
}

/* ===== CMS CONTENT ===== */
.cms-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--texte);
}

.cms-content p {
  margin-bottom: 1.5rem;
}

.cms-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--vert-profond);
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  position: relative;
}

.cms-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--orange-cidre);
  border-radius: 2px;
}

.cms-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--vert-mousse);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.cms-content a {
  color: var(--orange-cidre);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.3s;
}

.cms-content a:hover {
  color: var(--vert-profond);
}

.cms-content strong {
  color: var(--vert-profond);
  font-weight: 600;
}

.cms-content em {
  font-style: italic;
  color: var(--brun-clair);
}

.cms-content ul,
.cms-content ol {
  padding-left: 0;
  margin-bottom: 1.5rem;
  list-style: none;
}

.cms-content ul li,
.cms-content ol li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.cms-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  background: var(--orange-cidre);
  border-radius: 50%;
}

.cms-content ol {
  counter-reset: cms-counter;
}

.cms-content ol li::before {
  counter-increment: cms-counter;
  content: counter(cms-counter);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--orange-cidre);
  font-size: 0.9rem;
}

/* Chapeau */
.chapeau {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  line-height: 1.7;
  color: var(--texte);
  border-left: 3px solid var(--orange-cidre);
  padding-left: 1.5rem;
  margin-bottom: 2.5rem;
  font-style: italic;
}

/* Image placeholders & figures */
.img-placeholder {
  border-radius: 16px;
  overflow: hidden;
  margin: 2.5rem 0;
  position: relative;
  background: linear-gradient(135deg, var(--creme-fonce), var(--creme));
}

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

.img-placeholder.landscape {
  aspect-ratio: 16/9;
}

.img-placeholder.portrait {
  aspect-ratio: 3/4;
  max-width: 400px;
}

.img-caption {
  font-size: 0.85rem;
  color: var(--brun);
  text-align: center;
  padding: 0.75rem;
  font-style: italic;
}

.img-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.img-duo .img-placeholder {
  margin: 0;
}

/* Video placeholder */
.video-placeholder {
  border-radius: 16px;
  overflow: hidden;
  margin: 2.5rem 0;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--vert-profond), var(--vert-mousse));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--creme);
  cursor: pointer;
  position: relative;
  transition: transform 0.3s;
}

.video-placeholder:hover {
  transform: scale(1.01);
}

.video-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s;
}

.video-placeholder:hover .video-play-btn {
  background: var(--orange-cidre);
  transform: scale(1.1);
}

.video-placeholder p {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.video-placeholder small {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 2rem 0;
  margin: 3rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--vert-mousse), var(--orange-cidre));
  border-radius: 1px;
}

.timeline-item {
  position: relative;
  padding-left: 64px;
  margin-bottom: 2.5rem;
}

.timeline-dot {
  position: absolute;
  left: 16px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--vert-mousse);
  border: 3px solid var(--creme);
  z-index: 1;
}

.timeline-item.milestone .timeline-dot {
  width: 22px;
  height: 22px;
  left: 14px;
  background: var(--orange-cidre);
  box-shadow: 0 0 0 4px rgba(212, 131, 59, 0.2);
}

.timeline-date {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-cidre);
  background: rgba(212, 131, 59, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.5rem;
}

.timeline-item h3 {
  margin-top: 0;
  font-size: 1.15rem;
}

.timeline-item p {
  margin-bottom: 0;
  color: var(--texte-leger);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Blockquote */
.cms-content .blockquote,
.cms-content blockquote {
  position: relative;
  background: linear-gradient(135deg, var(--creme), var(--creme-fonce));
  border-radius: 16px;
  padding: 2.5rem 2.5rem 2rem;
  margin: 3rem 0;
  border: none;
}

.blockquote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--orange-cidre);
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
}

.cms-content .blockquote p,
.cms-content blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--vert-profond);
  margin-bottom: 1rem;
}

.blockquote-cite {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  color: var(--brun-clair);
  font-style: normal;
}

/* Highlight box */
.highlight-box {
  background: linear-gradient(135deg, var(--vert-profond), var(--vert-mousse));
  border-radius: 20px;
  padding: 3rem;
  margin: 3rem 0;
  color: var(--creme);
  text-align: center;
}

.highlight-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--creme);
  margin-bottom: 1rem;
  margin-top: 0;
}

.highlight-box p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(250, 245, 236, 0.85);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

/* CMS separator */
.cms-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0;
  color: var(--vert-clair);
}

.cms-separator::before,
.cms-separator::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--creme-fonce), transparent);
}

/* Filter bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

/* ===== FORMULAIRES ===== */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--texte);
}

.form-control {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 2px solid var(--creme-fonce);
  border-radius: 10px;
  background: var(--blanc);
  color: var(--texte);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--vert-mousse);
  box-shadow: 0 0 0 3px rgba(74, 107, 62, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* ===== BOUTIQUE ===== */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.shop-product .product-image {
  aspect-ratio: 1;
  background: var(--creme);
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-product .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-category {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  background: var(--creme);
  color: var(--vert-mousse);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.product-name {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.product-desc {
  color: var(--brun);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.product-footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--vert-profond);
}

.product-volume {
  color: var(--brun);
  font-size: 0.85rem;
}

/* ===== PANIER ===== */
.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th,
.cart-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--creme-fonce);
}

.cart-table th {
  font-weight: 600;
  color: var(--vert-profond);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cart-summary {
  background: var(--blanc);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(42, 35, 24, 0.06);
}

/* ===== GALERIE PAGE ===== */
.page-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.page-gallery-item {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.page-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.page-gallery-item:hover img {
  transform: scale(1.05);
}

/* ===== ÉDITIONS ===== */
.edition-year {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--orange-cidre);
  margin-bottom: 0.25rem;
}

.edition-card {
  text-decoration: none;
}

.edition-card h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

/* ===== PARTENAIRES ===== */
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.partner-item {
  background: var(--creme);
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 500;
  color: var(--brun);
  font-size: 0.9rem;
}

/* ===== INFOS PRATIQUES PAGE ===== */
.quick-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.quick-card {
  background: var(--blanc);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 4px 20px rgba(42, 35, 24, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.quick-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(42, 35, 24, 0.12);
}

.quick-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.quick-card-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brun);
  margin-bottom: 0.15rem;
}

.quick-card-value {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--vert-profond);
}

/* Two-column layout */
.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* Info block */
.info-block {
  background: var(--blanc);
  border-radius: 20px;
  border: 1px solid var(--creme-fonce);
  overflow: hidden;
}

.info-block-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  background: var(--creme);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--vert-profond);
  border-bottom: 1px solid var(--creme-fonce);
}

/* Contact list */
.contact-list {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.contact-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--vert-clair);
  flex-shrink: 0;
  margin-top: 0.4rem;
  transition: background 0.3s;
}

.contact-item:hover .contact-dot {
  background: var(--orange-cidre);
}

.contact-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brun);
  margin-bottom: 0.15rem;
}

.contact-item p {
  color: var(--vert-profond);
  font-weight: 500;
}

.contact-item a {
  color: var(--orange-cidre);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: var(--vert-profond);
}

/* Access list */
.access-list {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.access-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--texte);
  line-height: 1.6;
}

.access-item .icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--vert-mousse);
}

.access-item strong {
  color: var(--vert-profond);
}

/* Map card */
.map-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(42, 35, 24, 0.08);
  position: relative;
}

.map-card .leaflet-container {
  height: 400px;
  width: 100%;
  z-index: 1;
}

.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.5rem;
  background: rgba(250, 245, 236, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 500;
}

.map-overlay-address {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--vert-profond);
}

/* Leaflet custom popup */
.custom-popup .leaflet-popup-content-wrapper {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(42, 35, 24, 0.15);
}

.custom-popup .leaflet-popup-content {
  margin: 0.75rem 1rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}

.custom-popup .leaflet-popup-content strong {
  color: var(--vert-profond);
  display: block;
  margin-bottom: 0.15rem;
}

.custom-popup .leaflet-popup-tip {
  box-shadow: 0 4px 12px rgba(42, 35, 24, 0.1);
}

/* CTA remerciements card */
.cta-card {
  display: block;
  background: linear-gradient(135deg, var(--vert-profond), var(--vert-mousse));
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  text-decoration: none;
  color: var(--creme);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(212, 131, 59, 0.15), transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(122, 158, 107, 0.15), transparent 50%);
}

.cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44, 74, 46, 0.2);
  color: var(--creme);
}

.cta-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--creme);
  margin: 1rem 0 0.5rem;
  position: relative;
}

.cta-card p {
  color: rgba(250, 245, 236, 0.8);
  margin-bottom: 0;
  position: relative;
}

.cta-card .icon {
  position: relative;
}

.cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  margin-top: 1.25rem;
  transition: all 0.3s;
  position: relative;
}

.cta-card:hover .cta-arrow {
  background: var(--orange-cidre);
  transform: translateX(4px);
}

/* ===== PROGRAMMES / ARCHIVES PAGE ===== */
.content-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
}

.block {
  margin-bottom: 3.5rem;
}

.block-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.block-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--creme);
}

.block-programmes .block-icon {
  background: var(--vert-profond);
}

.block-themes .block-icon {
  background: var(--orange-cidre);
}

.block-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vert-profond);
}

.block-info p {
  font-size: 0.88rem;
  color: var(--texte-leger);
  margin-top: 2px;
}

.editions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.8rem;
}

.pgm-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.4rem 1rem;
  border-radius: 16px;
  background: white;
  border: 2px solid var(--creme-fonce);
  text-decoration: none;
  color: var(--texte);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.pgm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--vert-clair);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.pgm-card:hover {
  border-color: var(--vert-clair);
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(44, 74, 46, 0.08);
}

.pgm-card:hover::before {
  transform: scaleX(1);
}

.pgm-card.featured {
  background: var(--vert-profond);
  border-color: var(--vert-profond);
  color: white;
  grid-column: span 2;
}

.pgm-card.featured .edition-year {
  color: white;
}

.pgm-card.featured .pgm-label {
  color: rgba(255, 255, 255, 0.6);
}

.pgm-card.featured .pgm-icon {
  background: rgba(255, 255, 255, 0.12);
}

.pgm-card.featured::before {
  background: var(--orange-cidre);
}

.pgm-card.featured:hover {
  border-color: var(--vert-mousse);
  background: var(--vert-mousse);
}

.pgm-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--creme);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s;
}

.pgm-card:hover .pgm-icon {
  transform: rotate(-5deg) scale(1.08);
}

.pgm-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--texte-leger);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Themes link card */
.themes-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--creme) 0%, var(--creme-fonce) 100%);
  text-decoration: none;
  color: var(--texte);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border: 2px solid transparent;
}

.themes-card:hover {
  border-color: var(--orange-cidre);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(212, 131, 59, 0.1);
}

.themes-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--orange-cidre);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  transition: transform 0.4s;
}

.themes-card:hover .themes-icon {
  transform: rotate(-5deg) scale(1.05);
}

.themes-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brun);
  margin-bottom: 0.2rem;
}

.themes-text p {
  font-size: 0.88rem;
  color: var(--texte-leger);
}

.themes-arrow {
  margin-left: auto;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s;
  flex-shrink: 0;
  color: var(--orange-cidre);
}

.themes-card:hover .themes-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ===== CONCOURS / PALMARÈS PAGE ===== */
.concours-content {
  padding: 5rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.concours-type {
  margin-bottom: 4rem;
}

.type-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.type-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--creme);
}

.type-cidre .type-icon {
  background: var(--vert-profond);
}

.type-affiches .type-icon {
  background: var(--orange-cidre);
}

.type-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--vert-profond);
}

.type-info p {
  font-size: 0.9rem;
  color: var(--texte-leger);
  margin-top: 2px;
}

.years-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}

.year-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: white;
  border-radius: 16px;
  border: 2px solid var(--creme-fonce);
  text-decoration: none;
  color: var(--texte);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.year-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--vert-mousse), var(--orange-cidre));
  opacity: 0;
  transition: opacity 0.3s;
}

.year-card:hover {
  border-color: var(--vert-clair);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44, 74, 46, 0.1);
}

.year-card:hover::before {
  opacity: 1;
}

.year-badge {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--vert-profond);
  white-space: nowrap;
}

.year-card .year-arrow {
  margin-left: auto;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s;
  flex-shrink: 0;
  color: var(--vert-mousse);
}

.year-card:hover .year-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Featured year card */
.year-card.featured {
  background: var(--vert-profond);
  border-color: var(--vert-profond);
  grid-column: span 2;
  padding: 1.5rem 1.8rem;
}

.year-card.featured .year-badge {
  color: var(--creme);
  font-size: 1.5rem;
}

.year-card.featured .featured-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-doux);
  display: block;
  margin-bottom: 2px;
}

.year-card.featured .year-arrow {
  opacity: 0.5;
  transform: translateX(0);
  color: var(--orange-doux);
}

.year-card.featured:hover {
  background: var(--vert-mousse);
  border-color: var(--vert-mousse);
  box-shadow: 0 12px 32px rgba(44, 74, 46, 0.2);
}

.year-card.featured:hover .year-arrow {
  opacity: 1;
}

.year-card.featured::before {
  display: none;
}

/* ===== INSCRIPTION CONCOURS ===== */
.insc-content {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.insc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.insc-card {
  background: var(--blanc);
  border-radius: 16px;
  border: 2px solid var(--creme-fonce);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.insc-card-header {
  padding: 1.5rem 1.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.insc-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.insc-card:nth-child(1) .insc-card-icon {
  background: var(--orange-cidre);
  color: var(--blanc);
}

.insc-card:nth-child(2) .insc-card-icon {
  background: var(--vert-profond);
  color: var(--blanc);
}

.insc-card:nth-child(3) .insc-card-icon {
  background: var(--brun);
  color: var(--blanc);
}

.insc-card-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--vert-profond);
  margin-bottom: 0.15rem;
}

.insc-card-info p {
  font-size: 0.85rem;
  color: var(--brun);
}

.insc-card-divider {
  height: 1px;
  background: var(--creme-fonce);
  margin: 0 1.5rem;
}

.insc-card-links {
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.doc-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: var(--creme);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.doc-link:hover {
  background: var(--creme-fonce);
  transform: translateX(2px);
}

.doc-link-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.doc-link-icon.reglement {
  background: rgba(196, 107, 46, 0.12);
  color: var(--orange-cidre);
}

.doc-link-icon.inscription {
  background: rgba(44, 74, 46, 0.1);
  color: var(--vert-profond);
}

.doc-link-icon.courrier {
  background: rgba(101, 67, 33, 0.1);
  color: var(--brun);
}

.doc-link-info {
  flex: 1;
  min-width: 0;
}

.doc-link-info strong {
  display: block;
  font-size: 0.88rem;
  color: var(--vert-profond);
}

.doc-link-info span {
  font-size: 0.78rem;
  color: var(--brun);
}

.doc-link-arrow {
  color: var(--brun);
  opacity: 0.4;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.doc-link:hover .doc-link-arrow {
  opacity: 1;
}

.info-banner {
  background: var(--vert-profond);
  border-radius: 16px;
  padding: 2rem;
  color: var(--blanc);
}

.info-banner-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.info-banner-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-banner-text {
  flex: 1;
}

.info-banner-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.info-banner-text p {
  font-size: 0.9rem;
  opacity: 0.85;
}

.info-banner-action .btn {
  white-space: nowrap;
}

/* ===== RANDONNÉES ARCHIVES ===== */
.block-classements .block-icon { background: var(--vert-profond); }
.block-reponses .block-icon { background: var(--orange-cidre); }
.block-stats .block-icon { background: var(--brun); }

.year-row {
  background: var(--blanc);
  border: 2px solid var(--creme-fonce);
  border-radius: 18px;
  padding: 1.4rem 1.8rem;
  margin-bottom: 0.8rem;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.year-row::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: var(--vert-clair);
  border-radius: 3px 0 0 3px;
  opacity: 0;
  transition: opacity 0.3s;
}

.year-row:hover {
  border-color: var(--vert-clair);
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(44, 74, 46, 0.06);
}

.year-row:hover::before { opacity: 1; }

.year-row-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.year-pill {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--vert-profond);
  background: var(--creme);
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.year-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--texte-leger);
}

.year-links {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.cat-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid transparent;
}

.cat-link.adultes {
  background: rgba(44, 74, 46, 0.08);
  color: var(--vert-profond);
}

.cat-link.adultes:hover {
  background: var(--vert-profond);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 74, 46, 0.15);
}

.cat-link.supercool {
  background: rgba(212, 131, 59, 0.1);
  color: var(--orange-cidre);
}

.cat-link.supercool:hover {
  background: var(--orange-cidre);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 131, 59, 0.2);
}

.cat-link.enfants {
  background: rgba(122, 158, 107, 0.12);
  color: var(--vert-mousse);
}

.cat-link.enfants:hover {
  background: var(--vert-mousse);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 107, 62, 0.15);
}

.reponses-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.reponse-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.3rem;
  border-radius: 14px;
  background: var(--blanc);
  border: 2px solid var(--creme-fonce);
  text-decoration: none;
  color: var(--texte);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.reponse-chip:hover {
  border-color: var(--orange-cidre);
  background: var(--orange-cidre);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 131, 59, 0.15);
}

.reponse-chip .chip-year {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
}

.reponse-chip .chip-arrow {
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.3s;
}

.reponse-chip:hover .chip-arrow {
  opacity: 1;
  transform: translateX(0);
}

.stats-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, var(--creme) 0%, var(--creme-fonce) 100%);
  border-radius: 20px;
  text-decoration: none;
  color: var(--texte);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border: 2px solid transparent;
}

.stats-card:hover {
  border-color: var(--brun-clair);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(92, 61, 46, 0.1);
}

.stats-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--brun);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s;
}

.stats-card:hover .stats-icon {
  transform: rotate(-5deg) scale(1.05);
}

.stats-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brun);
  margin-bottom: 0.2rem;
}

.stats-text p {
  font-size: 0.88rem;
  color: var(--texte-leger);
}

.stats-arrow {
  margin-left: auto;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s;
  flex-shrink: 0;
}

.stats-card:hover .stats-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ===== GALERIE PHOTOS ===== */
.filter-bar {
  max-width: 1100px;
  margin: -1.5rem auto 0;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

.filter-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  background: var(--blanc);
  border-radius: 100px;
  padding: 0.5rem 0.8rem;
  box-shadow: 0 8px 30px rgba(44, 74, 46, 0.08);
  border: 1px solid var(--creme-fonce);
}

.filter-btn {
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  border: none;
  background: none;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--texte-leger);
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.filter-btn:hover {
  color: var(--vert-profond);
  background: var(--creme);
}

.filter-btn.active {
  background: var(--vert-profond);
  color: white;
}

.albums-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.year-group {
  margin-bottom: 3rem;
}

.year-group-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.year-group-label h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--vert-profond);
  white-space: nowrap;
}

.year-group-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--creme-fonce);
}

.albums-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.album-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.album-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(44, 74, 46, 0.12);
}

.album-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.album-card:hover .album-bg {
  transform: scale(1.06);
}

.album-card[data-type="fete"] .album-bg { background: linear-gradient(135deg, #4A6B3E 0%, #2C4A2E 50%, #7A9E6B 100%); }
.album-card[data-type="rallye"] .album-bg { background: linear-gradient(135deg, #D4833B 0%, #5C3D2E 50%, #E8A95B 100%); }
.album-card[data-type="affiches"] .album-bg { background: linear-gradient(135deg, #8B6B4A 0%, #5C3D2E 50%, #D4833B 100%); }
.album-card[data-type="general"] .album-bg { background: linear-gradient(135deg, #2C4A2E 0%, #4A6B3E 50%, #E8A95B 100%); }

.album-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.album-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(42, 35, 24, 0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
}

.album-type-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.album-photo-count {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.album-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.album-subtitle {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.album-arrow {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8) translateX(-4px);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.album-card:hover .album-arrow {
  opacity: 1;
  transform: scale(1) translateX(0);
}

/* ===== ALBUM DETAIL ===== */
.hero-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--texte-leger);
}

.hero-meta-item strong {
  color: var(--vert-profond);
  font-weight: 700;
}

.toolbar {
  max-width: 1200px;
  margin: -1.5rem auto 0;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

.toolbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--blanc);
  border-radius: 100px;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  box-shadow: 0 8px 30px rgba(44, 74, 46, 0.08);
  border: 1px solid var(--creme-fonce);
}

.toolbar-info {
  font-size: 0.85rem;
  color: var(--texte-leger);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.toolbar-info strong {
  color: var(--vert-profond);
  font-weight: 700;
}

.toolbar-actions {
  display: flex;
  gap: 0.3rem;
}

.tb-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  border: 2px solid var(--creme-fonce);
  background: none;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--texte-leger);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.tb-btn:hover {
  border-color: var(--vert-profond);
  color: var(--vert-profond);
}

.gallery-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 2rem 5rem;
}

.masonry {
  columns: 4;
  column-gap: 12px;
}

.photo-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.photo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44, 74, 46, 0.12);
}

.photo-inner {
  width: 100%;
  display: block;
  position: relative;
}

.photo-inner img {
  width: 100%;
  display: block;
}

.photo-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 35, 24, 0) 40%, rgba(42, 35, 24, 0.5) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1rem;
}

.photo-item:hover .photo-hover {
  opacity: 1;
}

.photo-hover .photo-index {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

.photo-hover .photo-zoom {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.photo-hover .photo-zoom:hover {
  background: var(--orange-cidre);
}

/* Lightbox */
body.lb-open { overflow: hidden; }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(20, 18, 14, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox.open { display: flex; }

.lb-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}

.lb-close:hover { background: rgba(255, 255, 255, 0.15); }

.lb-image-wrap {
  max-width: 85vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-image-wrap img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.lb-nav:hover { background: rgba(255, 255, 255, 0.15); }
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }

.lb-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(180deg, transparent, rgba(20, 18, 14, 0.4));
}

.lb-counter {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

/* ===== ARCHIVES LANDING ===== */

.arc-landing {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

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

.arc-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  text-decoration: none;
  color: #fff;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: fadeInUp 0.6s ease both;
}

.arc-card:first-child {
  grid-row: 1 / 3;
}

.arc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.arc-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}

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

/* Gradient variants per card */
.arc-card:nth-child(1) .arc-card-bg {
  background: linear-gradient(135deg, var(--vert) 0%, var(--vert-clair) 100%);
}
.arc-card:nth-child(2) .arc-card-bg {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-doux) 100%);
}
.arc-card:nth-child(3) .arc-card-bg {
  background: linear-gradient(135deg, var(--brun) 0%, var(--orange) 100%);
}
.arc-card:nth-child(4) .arc-card-bg {
  background: linear-gradient(135deg, var(--vert-clair) 0%, var(--vert) 100%);
}
.arc-card:nth-child(5) .arc-card-bg {
  background: linear-gradient(135deg, var(--orange-doux) 0%, var(--orange) 100%);
}
.arc-card:nth-child(6) .arc-card-bg {
  background: linear-gradient(135deg, var(--vert) 0%, var(--brun) 100%);
}

/* Dot pattern overlay */
.arc-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* Bottom gradient overlay for text readability */
.arc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent);
  pointer-events: none;
  z-index: 1;
}

.arc-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  width: 100%;
}

.arc-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.arc-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.75;
  margin-bottom: 0.35rem;
}

.arc-card-title {
  font-family: var(--font-titre);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.arc-card:first-child .arc-card-title {
  font-size: 1.8rem;
}

.arc-card-desc {
  font-size: 0.88rem;
  opacity: 0.8;
  line-height: 1.45;
}

.arc-card-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.arc-card:hover .arc-card-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

/* Animation delays */
.arc-card:nth-child(2) { animation-delay: 0.08s; }
.arc-card:nth-child(3) { animation-delay: 0.16s; }
.arc-card:nth-child(4) { animation-delay: 0.24s; }
.arc-card:nth-child(5) { animation-delay: 0.32s; }
.arc-card:nth-child(6) { animation-delay: 0.40s; }

/* ===== BOUTIQUE ===== */

.shop-hero {
  position: relative;
  padding: 5rem 2rem 4rem;
  background: linear-gradient(160deg, var(--creme) 0%, var(--creme-fonce) 50%, #E6DDCA 100%);
  overflow: hidden;
  text-align: center;
}

.shop-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle at 20% 50%, var(--vert-profond) 1px, transparent 1px),
                     radial-gradient(circle at 80% 20%, var(--vert-profond) 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px;
}

.shop-hero-deco {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 160%;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--vert-mousse), var(--vert-profond));
  opacity: 0.04;
  transform: rotate(-15deg);
}

.shop-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.shop-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
}

.product-card {
  background: white;
  border-radius: 20px;
  border: 2px solid var(--creme-fonce);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
  color: var(--texte);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(44, 74, 46, 0.1);
  border-color: var(--vert-clair);
}

.product-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product-img-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-card:hover .product-img-bg {
  transform: scale(1.06);
}

/* Gradient backgrounds per category */
.product-card[data-cat="cidre-brut"] .product-img-bg {
  background: linear-gradient(135deg, #2C4A2E 0%, #4A6B3E 50%, #7A9E6B 100%);
}

.product-card[data-cat="cidre-doux"] .product-img-bg {
  background: linear-gradient(135deg, #D4833B 0%, #E8A95B 50%, #F5D6A0 100%);
}

.product-card[data-cat="cidre-demi"] .product-img-bg {
  background: linear-gradient(135deg, #4A6B3E 0%, #7A9E6B 50%, #E8A95B 100%);
}

.product-card[data-cat="jus"] .product-img-bg {
  background: linear-gradient(135deg, #E8A95B 0%, #F5CC6A 50%, #FAE4A0 100%);
}

.product-card[data-cat="pommeau"] .product-img-bg {
  background: linear-gradient(135deg, #5C3D2E 0%, #8B6B4A 50%, #D4833B 100%);
}

.product-card[data-cat="coffret"] .product-img-bg {
  background: linear-gradient(135deg, #2C4A2E 0%, #D4833B 50%, #E8A95B 100%);
}

.product-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.25;
}

.product-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.product-tag {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  color: white;
}

.product-tag.new { background: #22c55e; }
.product-tag.promo { background: #ef4444; }
.product-tag.bio { background: var(--vert-mousse); }

.product-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.4rem;
}

.product-cat {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--texte-leger);
}

.product-name {
  font-family: var(--font-titre);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--vert-profond);
  line-height: 1.25;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--texte-leger);
  line-height: 1.5;
  flex: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--creme-fonce);
}

.product-price {
  font-family: var(--font-titre);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--orange-cidre);
}

.product-price small {
  font-family: var(--font-corps);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--texte-leger);
}

.product-price .old-price {
  text-decoration: line-through;
  color: var(--texte-leger);
  font-size: 0.85rem;
  font-weight: 400;
  margin-right: 0.3rem;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  background: var(--vert-profond);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.product-cta:hover {
  background: var(--vert-mousse);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 74, 46, 0.2);
}

/* Info bar */
.info-bar {
  margin-bottom: 2rem;
}

.info-bar-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  background: white;
  border: 1.5px solid var(--creme-fonce);
}

.info-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--creme);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-item-text {
  font-size: 0.85rem;
  color: var(--texte);
  font-weight: 500;
  line-height: 1.3;
}

.info-item-text small {
  display: block;
  color: var(--texte-leger);
  font-weight: 400;
  font-size: 0.78rem;
}

/* Legal notice */
.legal-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.8rem 1.5rem;
  background: rgba(92, 61, 46, 0.06);
  border-radius: 12px;
  text-align: center;
}

.legal-notice span {
  font-size: 0.78rem;
  color: var(--brun);
  line-height: 1.5;
}

/* ===== PRODUCT DETAIL ===== */

.product-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Gallery */
.product-gallery {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.product-gallery-bg {
  position: absolute;
  inset: 0;
}

.product-gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.2;
}

.product-gallery-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  display: flex;
  gap: 0.5rem;
}

.gallery-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.gallery-tag.bio { background: var(--vert-mousse); }
.gallery-tag.promo { background: #ef4444; }

/* Product info */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-info .p-cat {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-cidre);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.product-info h1 {
  font-family: var(--font-titre);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--vert-profond);
  line-height: 1.15;
}

.product-info .p-desc {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--texte-leger);
}

.product-info .p-desc strong {
  color: var(--texte);
  font-weight: 600;
}

/* Specs grid */
.specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.8rem;
  border-radius: 14px;
  background: var(--creme);
  text-align: center;
}

.spec-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--texte-leger);
}

.spec-value {
  font-family: var(--font-titre);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--vert-profond);
}

/* Price block */
.price-block {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--creme-fonce);
}

.price-main {
  font-family: var(--font-titre);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--orange-cidre);
}

.price-old {
  font-family: var(--font-titre);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--texte-leger);
  text-decoration: line-through;
}

.price-unit {
  font-size: 0.9rem;
  color: var(--texte-leger);
}

/* Actions */
.actions {
  display: flex;
  gap: 0.8rem;
  align-items: stretch;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 2px solid var(--creme-fonce);
  border-radius: 14px;
  overflow: hidden;
  background: white;
}

.qty-btn {
  width: 44px;
  height: 48px;
  border: none;
  background: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--vert-profond);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.qty-btn:hover { background: var(--creme); }

.qty-val {
  width: 48px;
  text-align: center;
  font-family: var(--font-titre);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--vert-profond);
  border: none;
  background: none;
  border-left: 1px solid var(--creme-fonce);
  border-right: 1px solid var(--creme-fonce);
}

.add-to-cart {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0 2rem;
  border-radius: 14px;
  background: var(--vert-profond);
  color: white;
  font-family: var(--font-corps);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.add-to-cart:hover {
  background: var(--vert-mousse);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 74, 46, 0.2);
}

/* Extra info */
.extra-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.extra-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: var(--texte-leger);
}

.extra-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vert-clair);
  flex-shrink: 0;
}

/* Toast notification */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--vert-profond);
  color: white;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 9999;
  box-shadow: 0 12px 40px rgba(44, 74, 46, 0.2);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* Related products */
.related-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}

.related-title {
  font-family: var(--font-titre);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--vert-profond);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.related-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--creme-fonce);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.rel-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 16px;
  border: 2px solid var(--creme-fonce);
  text-decoration: none;
  color: var(--texte);
  background: white;
  transition: all 0.3s;
}

.rel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(44, 74, 46, 0.06);
  border-color: var(--vert-clair);
}

.rel-thumb {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.rel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rel-card:nth-child(1) .rel-thumb { background: linear-gradient(135deg, #D4833B, #E8A95B); }
.rel-card:nth-child(2) .rel-thumb { background: linear-gradient(135deg, #4A6B3E, #7A9E6B); }
.rel-card:nth-child(3) .rel-thumb { background: linear-gradient(135deg, #5C3D2E, #D4833B); }

.rel-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--vert-profond);
}

.rel-price {
  font-family: var(--font-titre);
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange-cidre);
}

/* ===== CART PAGE ===== */

.stepper {
  max-width: 500px;
  margin: 2rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
}

.step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  border: 2px solid var(--creme-fonce);
  color: var(--texte-leger);
  background: white;
  transition: all 0.3s;
}

.step.active .step-num {
  background: var(--vert-profond);
  color: white;
  border-color: var(--vert-profond);
}

.step.done .step-num {
  background: var(--vert-clair);
  color: white;
  border-color: var(--vert-clair);
}

.step-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--texte-leger);
}

.step.active .step-label { color: var(--vert-profond); }

.step-line {
  flex: 1;
  height: 2px;
  background: var(--creme-fonce);
  margin: 0 0.5rem;
  min-width: 30px;
}

.step-line.done { background: var(--vert-clair); }

/* Cart layout */
.cart-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}

.cart-page h1 {
  font-family: var(--font-titre);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--vert-profond);
  margin-bottom: 1.5rem;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cart-count {
  font-family: var(--font-corps);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--texte-leger);
  background: var(--creme);
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
}

/* Cart items */
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.2rem;
  border-radius: 18px;
  background: white;
  border: 2px solid var(--creme-fonce);
  transition: all 0.3s;
}

.cart-item:hover { border-color: var(--vert-clair); }

.item-thumb {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-info .item-cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--texte-leger);
}

.item-info .item-name {
  font-family: var(--font-titre);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--vert-profond);
  margin: 2px 0;
  text-decoration: none;
}

.item-info .item-name:hover { color: var(--orange-cidre); }

.item-info .item-unit {
  font-size: 0.82rem;
  color: var(--texte-leger);
}

.item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.item-price {
  font-family: var(--font-titre);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--orange-cidre);
}

.item-qty {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--creme-fonce);
  border-radius: 10px;
  overflow: hidden;
}

.iq-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--vert-profond);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.iq-btn:hover { background: var(--creme); }

.iq-val {
  width: 32px;
  text-align: center;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--vert-profond);
  border-left: 1px solid var(--creme-fonce);
  border-right: 1px solid var(--creme-fonce);
}

.item-remove {
  font-size: 0.75rem;
  color: var(--texte-leger);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.3s;
  background: none;
  border: none;
  font-family: var(--font-corps);
}

.item-remove:hover { color: #ef4444; }

/* Cart summary */
.cart-summary {
  position: sticky;
  top: 100px;
  background: white;
  border: 2px solid var(--creme-fonce);
  border-radius: 20px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.summary-title {
  font-family: var(--font-titre);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--vert-profond);
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--creme-fonce);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  color: var(--texte-leger);
}

.summary-row.total {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--texte);
  padding-top: 0.8rem;
  border-top: 2px solid var(--creme-fonce);
}

.summary-row .val {
  font-family: var(--font-titre);
  font-weight: 700;
  color: var(--vert-profond);
}

.summary-row.total .val {
  font-size: 1.3rem;
  color: var(--orange-cidre);
}

.checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem;
  border-radius: 14px;
  background: var(--vert-profond);
  color: white;
  font-family: var(--font-corps);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  margin-top: 0.5rem;
}

.checkout-btn:hover {
  background: var(--vert-mousse);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 74, 46, 0.2);
}

.continue-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--texte-leger);
  text-decoration: none;
  transition: color 0.3s;
  margin-top: 0.5rem;
}

.continue-link:hover { color: var(--orange-cidre); }

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--texte-leger);
  margin-top: 0.5rem;
}

/* Empty cart */
.cart-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 0;
}

/* ===== CHECKOUT PAGE ===== */

.checkout-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}

/* Form Sections */
.form-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.section-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--vert-profond), var(--vert-mousse));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.section-head h2 {
  font-family: var(--font-titre);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--vert-profond);
  margin: 0;
}

.section-head p {
  font-size: 0.82rem;
  color: var(--texte-leger);
  margin: 0;
}

/* Form Card */
.form-card {
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid var(--creme-fonce);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-row.full {
  grid-template-columns: 1fr;
}

.form-row.triple {
  grid-template-columns: 1fr 1fr 1fr;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--vert-profond);
}

.field label .req {
  color: var(--orange-cidre);
}

.field input,
.field select,
.field textarea {
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--creme-fonce);
  border-radius: 12px;
  font-size: 0.9rem;
  font-family: var(--font-corps);
  color: var(--vert-profond);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--vert-clair);
  box-shadow: 0 0 0 3px rgba(74, 107, 62, 0.1);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--texte-leger);
}

/* Payment Methods */
.payment-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.pm {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border: 2px solid var(--creme-fonce);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s;
  background: white;
}

.pm:hover {
  border-color: var(--vert-clair);
}

.pm input[type="radio"] {
  display: none;
}

.pm input[type="radio"]:checked + .pm-dot {
  border-color: var(--vert-profond);
}

.pm input[type="radio"]:checked + .pm-dot::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--vert-profond);
}

.pm input[type="radio"]:checked ~ .pm-label {
  color: var(--vert-profond);
}

.pm.selected {
  border-color: var(--vert-profond);
  background: rgba(44, 74, 46, 0.03);
}

.pm-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--creme-fonce);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s;
}

.pm-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pm-icon.cb {
  background: linear-gradient(135deg, var(--vert-profond), var(--vert-mousse));
  color: white;
}

.pm-icon.vir {
  background: linear-gradient(135deg, var(--orange-cidre), var(--orange-doux));
  color: white;
}

.pm-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brun);
  transition: color 0.2s;
}

.pm-label small {
  display: block;
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--texte-leger);
  margin-top: 0.15rem;
}

/* Card Fields */
.card-fields {
  background: var(--creme);
  border-radius: 14px;
  padding: 1.25rem;
}

/* CGV Checkbox */
.cgv-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.cgv-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  accent-color: var(--vert-profond);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.cgv-check label {
  font-size: 0.82rem;
  color: var(--brun);
  line-height: 1.5;
}

.cgv-check label a {
  color: var(--vert-profond);
  text-decoration: underline;
}

/* Order Summary */
.order-summary {
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid var(--creme-fonce);
  position: sticky;
  top: 6rem;
}

.os-title {
  font-family: var(--font-titre);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--vert-profond);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.os-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.os-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.os-thumb {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.os-detail {
  flex: 1;
  min-width: 0;
}

.os-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vert-profond);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.os-qty {
  font-size: 0.75rem;
  color: var(--texte-leger);
}

.os-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--vert-profond);
  white-space: nowrap;
}

.os-divider {
  height: 1px;
  background: var(--creme-fonce);
  margin: 0.75rem 0;
}

.os-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--brun);
  padding: 0.2rem 0;
}

.os-row .val {
  font-weight: 600;
}

.os-row.total {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--vert-profond);
  padding-top: 0.75rem;
  margin-top: 0.25rem;
  border-top: 2px solid var(--creme-fonce);
}

.os-row.total .val {
  color: var(--orange-cidre);
}

/* Pay Button */
.pay-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--vert-profond), var(--vert-mousse));
  color: white;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-corps);
  cursor: pointer;
  margin-top: 1.25rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pay-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 74, 46, 0.3);
}

.os-secure {
  text-align: center;
  font-size: 0.78rem;
  color: var(--texte-leger);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

/* ===== CONFIRMATION PAGE ===== */

.confirm-page {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
  text-align: center;
}

/* Success Icon */
.success-icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vert-clair), var(--vert-profond));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  animation: popIn 0.6s cubic-bezier(0.17, 0.67, 0.24, 1.3) both;
  position: relative;
}

.success-icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px solid var(--vert-clair);
  opacity: 0.3;
  animation: ringPulse 2s ease-out infinite;
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes ringPulse {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(1.3); opacity: 0; }
}

.confirm-page h1 {
  font-family: var(--font-titre);
  font-size: 2rem;
  font-weight: 900;
  color: var(--vert-profond);
  margin-bottom: 0.5rem;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.confirm-page .subtitle {
  font-size: 1.05rem;
  color: var(--texte-leger);
  line-height: 1.6;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s 0.3s ease both;
}

.confirm-page .subtitle strong {
  color: var(--vert-profond);
}

/* Order Number Badge */
.order-num {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--creme);
  padding: 0.8rem 1.5rem;
  border-radius: 14px;
  font-size: 0.9rem;
  color: var(--texte);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s 0.4s ease both;
}

.order-num strong {
  font-family: var(--font-titre);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--vert-profond);
}

/* Recap Card */
.recap {
  background: white;
  border: 2px solid var(--creme-fonce);
  border-radius: 20px;
  padding: 1.8rem;
  text-align: left;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s 0.5s ease both;
}

.recap-head {
  font-family: var(--font-titre);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--vert-profond);
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--creme-fonce);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.recap-items {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.ri {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.ri-thumb {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ri-detail {
  flex: 1;
  min-width: 0;
}

.ri-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--texte);
  display: block;
}

.ri-qty {
  font-size: 0.75rem;
  color: var(--texte-leger);
}

.ri-price {
  font-family: var(--font-titre);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--vert-profond);
  white-space: nowrap;
}

.recap-divider {
  height: 1px;
  background: var(--creme-fonce);
  margin: 0.8rem 0;
}

.recap-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--texte-leger);
  margin-bottom: 0.3rem;
}

.recap-row .v {
  font-weight: 600;
  color: var(--texte);
}

.recap-row.total {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--texte);
  padding-top: 0.6rem;
  border-top: 2px solid var(--creme-fonce);
  margin-top: 0.5rem;
}

.recap-row.total .v {
  font-family: var(--font-titre);
  font-size: 1.4rem;
  color: var(--orange-cidre);
}

/* Delivery Info Grid */
.delivery-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s 0.6s ease both;
}

.dinfo {
  background: white;
  border: 2px solid var(--creme-fonce);
  border-radius: 16px;
  padding: 1.2rem;
  text-align: left;
}

.dinfo-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--texte-leger);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.dinfo-value {
  font-size: 0.92rem;
  color: var(--texte);
  line-height: 1.6;
}

/* Next Steps */
.next-steps {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s 0.7s ease both;
}

.ns {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  background: var(--creme);
  text-align: left;
}

.ns-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--vert-profond);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
}

.ns-text {
  font-size: 0.9rem;
  color: var(--texte);
  line-height: 1.5;
}

.ns-text strong {
  color: var(--vert-profond);
}

/* CTA Row */
.cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 0.8s 0.8s ease both;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 100px;
  background: var(--vert-profond);
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s;
}

.cta-primary:hover {
  background: var(--vert-mousse);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 74, 46, 0.2);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 100px;
  border: 2px solid var(--creme-fonce);
  background: white;
  color: var(--texte);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s;
}

.cta-secondary:hover {
  border-color: var(--vert-clair);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 74, 46, 0.06);
}

/* ===== REMERCIEMENTS PAGE ===== */

.thanks-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
}

.thanks-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
  animation: fadeInUp 0.8s ease both;
}

.thanks-intro p {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--brun);
}

/* Partner Category Section */
.partner-section {
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease both;
}

.partner-section:nth-child(2) { animation-delay: 0.05s; }
.partner-section:nth-child(3) { animation-delay: 0.1s; }
.partner-section:nth-child(4) { animation-delay: 0.15s; }
.partner-section:nth-child(5) { animation-delay: 0.2s; }

.partner-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.partner-head-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.partner-head h2 {
  font-family: var(--font-titre);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--vert-profond);
}

.partner-head::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--creme-fonce);
}

/* Category colors */
.cat-media .partner-head-icon { background: #3B82F6; }
.cat-media .partner-dot { background: #3B82F6; }

.cat-institutionnel .partner-head-icon { background: var(--orange-cidre); }
.cat-institutionnel .partner-dot { background: var(--orange-cidre); }

.cat-entreprise .partner-head-icon { background: var(--brun); }
.cat-entreprise .partner-dot { background: var(--brun); }

.cat-associatif .partner-head-icon { background: var(--vert-clair); }
.cat-associatif .partner-dot { background: var(--vert-clair); }

.cat-autre .partner-head-icon { background: var(--vert-profond); }
.cat-autre .partner-dot { background: var(--vert-profond); }

/* Partner cards grid */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.8rem;
}

.partner-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  background: white;
  border: 1.5px solid var(--creme-fonce);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
  color: inherit;
}

.partner-card:hover {
  border-color: var(--vert-clair);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(44, 74, 46, 0.06);
}

.partner-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.partner-card:hover .partner-dot {
  transform: scale(1.3);
}

.partner-name {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--texte);
  line-height: 1.3;
}

.partner-detail {
  font-size: 0.75rem;
  color: var(--texte-leger);
  margin-top: 1px;
}

/* Map section */
.thanks-map {
  margin-top: 4rem;
  animation: fadeInUp 0.8s 0.25s ease both;
}

.thanks-map-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.thanks-map-head .partner-head-icon {
  background: var(--orange-cidre);
}

.thanks-map-head h2 {
  font-family: var(--font-titre);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--vert-profond);
}

.thanks-map-card {
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--creme-fonce);
}

#thanksMap {
  width: 100%;
  height: 420px;
  z-index: 1;
}

.thanks-map-footer {
  padding: 1rem 1.5rem;
  background: var(--creme);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--creme-fonce);
}

.thanks-map-footer-text {
  font-size: 0.85rem;
  color: var(--texte-leger);
}

.thanks-map-footer-text strong {
  color: var(--vert-profond);
  font-weight: 600;
}

.thanks-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  background: var(--vert-profond);
  color: white;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.3s;
}

.thanks-map-btn:hover {
  background: var(--vert-mousse);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 74, 46, 0.2);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  /* ── Général ── */
  .section {
    padding: 5rem 2rem;
  }

  .topbar {
    display: none;
  }

  /* ── Navigation mobile (tablette) ── */
  .nav-links {
    display: flex;
    position: fixed;
    inset: 0;
    margin: 0;
    padding: 0;
    background: var(--creme);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-links.open li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.open li:nth-child(1) { transition-delay: 0.05s; }
  .nav-links.open li:nth-child(2) { transition-delay: 0.1s; }
  .nav-links.open li:nth-child(3) { transition-delay: 0.15s; }
  .nav-links.open li:nth-child(4) { transition-delay: 0.2s; }
  .nav-links.open li:nth-child(5) { transition-delay: 0.25s; }
  .nav-links.open li:nth-child(6) { transition-delay: 0.3s; }
  .nav-links.open li:nth-child(7) { transition-delay: 0.35s; }
  .nav-links.open li:nth-child(8) { transition-delay: 0.4s; }
  .nav-links.open li:nth-child(9) { transition-delay: 0.45s; }

  .nav-links a {
    font-size: 1.3rem;
    padding: 0.8rem 2rem;
    color: var(--vert-profond);
  }

  .menu-toggle {
    display: block;
  }

  /* ── Hero ── */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 4rem 2rem 3rem;
    gap: 2rem;
  }

  .hero-decoration {
    display: none;
  }

  .hero-desc {
    margin: 0 auto 2.5rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    max-width: 420px;
    margin: 0 auto;
  }

  .floating-card.card-date {
    left: 0;
  }

  .floating-card.card-lieu {
    right: 0;
  }

  /* ── Grilles ── */
  .programme-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .archives-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .archives-item:first-child {
    grid-row: auto;
  }

  .archives-item {
    min-height: 200px;
  }

  .concours-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .insc-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .arc-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
  }

  .arc-card:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .insc-content {
    padding: 3rem 1.5rem;
  }

  .info-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .info-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .infos-grid {
    gap: 2rem;
  }

  .page-hero-title {
    max-width: 100%;
  }

  .img-duo {
    grid-template-columns: 1fr;
  }

  .quick-cards {
    grid-template-columns: 1fr 1fr;
  }

  .two-cols {
    grid-template-columns: 1fr;
  }

  /* ── Produits / Boutique ── */
  .product-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-gallery {
    max-width: 500px;
    margin: 0 auto;
  }

  .product-info h1 {
    font-size: 1.9rem;
  }

  .specs {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cart-page {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }

  .checkout-page {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
    order: -1;
  }

  /* ── Galerie ── */
  .masonry {
    columns: 3;
  }

  /* ── Footer ── */
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-brand .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 768px) {
  /* ── Logo réduit sur mobile ── */
  .logo-icon {
    width: 64px;
    height: 64px;
  }

  /* ── Boutique ── */
  .cart-page {
    padding: 1.5rem;
  }

  .cart-item {
    grid-template-columns: 64px 1fr auto;
    gap: 0.8rem;
    padding: 1rem;
  }

  .item-thumb {
    width: 64px;
    height: 64px;
  }

  .product-page {
    padding: 1.5rem;
  }

  .product-info h1 {
    font-size: 1.7rem;
  }

  .actions {
    flex-direction: column;
  }

  .add-to-cart {
    padding: 1rem;
  }

  .specs {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  /* ── Hero ── */
  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 3rem 1.5rem;
  }

  /* ── Grilles ── */
  .programme-grid {
    grid-template-columns: 1fr;
  }

  .archives-grid {
    grid-template-columns: 1fr;
  }

  .infos-grid {
    grid-template-columns: 1fr;
  }

  .concours-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .info-bar-inner {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    margin-top: -0.75rem;
  }

  .year-row {
    padding: 1.2rem 1.4rem;
  }

  .year-links {
    gap: 0.4rem;
  }

  .cat-link {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }

  .stats-card {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
  }

  .stats-arrow {
    display: none;
  }

  .arc-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .arc-card:first-child {
    grid-column: auto;
  }

  .arc-card-title {
    font-size: 1.25rem;
  }

  .arc-card:first-child .arc-card-title {
    font-size: 1.4rem;
  }

  .arc-landing {
    padding: 2rem 1rem 4rem;
  }

  .checkout-page {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-row.triple {
    grid-template-columns: 1fr;
  }

  .confirm-page {
    padding: 2rem 1.5rem 4rem;
  }

  .delivery-info {
    grid-template-columns: 1fr;
  }

  .cta-row {
    flex-direction: column;
  }

  .thanks-section {
    padding: 3rem 1.5rem;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }

  #thanksMap {
    height: 300px;
  }

  .thanks-map-footer {
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }

  .shop-hero {
    padding: 3rem 1.5rem 2.5rem;
  }

  .shop-section {
    padding: 2.5rem 1rem 4rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .albums-section {
    padding: 2.5rem 1rem 4rem;
  }

  .albums-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .filter-inner {
    border-radius: 16px;
    padding: 0.4rem;
  }

  .filter-btn {
    padding: 0.45rem 0.8rem;
    font-size: 0.78rem;
  }

  .gallery-section {
    padding: 2rem 1rem 4rem;
  }

  .masonry {
    columns: 2;
    column-gap: 8px;
  }

  .photo-item {
    margin-bottom: 8px;
    border-radius: 8px;
  }

  .toolbar-inner {
    border-radius: 16px;
    padding: 0.5rem 1rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  .hero-meta {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .lb-prev { left: 0.5rem; }
  .lb-next { right: 0.5rem; }

  .section {
    padding: 4rem 1.5rem;
  }

  .page-header {
    padding: 2.5rem 1.5rem;
  }

  .page-hero {
    padding-bottom: 2.5rem;
  }

  .page-hero .breadcrumb {
    padding-top: 1.5rem;
  }

  .article-wrapper {
    padding: 3rem 1.5rem 4rem;
  }

  .cms-content {
    font-size: 1rem;
  }

  .timeline::before {
    left: 16px;
  }

  .timeline-item {
    padding-left: 48px;
  }

  .timeline-dot {
    left: 8px;
  }

  .timeline-item.milestone .timeline-dot {
    left: 6px;
  }

  .cms-content .blockquote,
  .cms-content blockquote {
    padding: 2rem 1.5rem 1.5rem;
  }

  .highlight-box {
    padding: 2rem 1.5rem;
  }

  .video-play-btn {
    width: 56px;
    height: 56px;
  }

  .quick-cards {
    grid-template-columns: 1fr;
  }

  .map-card .leaflet-container {
    height: 300px;
  }

  .map-overlay {
    flex-direction: column;
    text-align: center;
  }

  .cta-card {
    padding: 2rem 1.5rem;
  }

  .content-section {
    padding: 3rem 1.5rem;
  }

  .editions-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pgm-card.featured {
    grid-column: span 3;
  }

  .themes-card {
    padding: 1.5rem;
    gap: 1rem;
  }

  .concours-content {
    padding: 3rem 1.5rem;
  }

  .insc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .years-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .year-card.featured {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  /* ── Formulaires : empêcher le zoom iOS ── */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  input[type="number"],
  input[type="search"],
  select,
  textarea {
    font-size: 16px;
  }

  /* ── Hero ── */
  .hero-title {
    font-size: 2rem;
  }

  .hero-date {
    font-size: 0.95rem;
  }

  /* ── Grilles ── */
  .products-grid {
    grid-template-columns: 1fr;
  }

  .editions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pgm-card.featured {
    grid-column: span 2;
  }

  .years-grid {
    grid-template-columns: 1fr;
  }

  .year-card.featured {
    grid-column: auto;
  }

  .albums-row {
    grid-template-columns: 1fr;
  }

  /* ── Lightbox ── */
  .lb-image-wrap {
    max-width: 95vw;
    max-height: 70vh;
  }

  .lb-close {
    top: 0.75rem;
    right: 0.75rem;
  }

  /* ── Section ── */
  .section {
    padding: 3rem 1rem;
  }

  .page-hero {
    padding-bottom: 2rem;
  }

  .section-title {
    font-size: 1.6rem;
  }
}
