/* ============================================================
   JASMIN GOURMAND — main.css v2.0
   Design System complet, production-ready
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES (design_spec_v2.json → css_root_block)
   ============================================================ */
:root {
  /* === COULEURS PRINCIPALES === */
  --jg-primary:         #8B1A3A;
  --jg-primary-dark:    #650D27;
  --jg-primary-light:   #B8395A;

  /* === OR === */
  --jg-gold:            #C8860A;
  --jg-gold-light:      #E5AB3C;

  /* === NEUTRES CHAUDS === */
  --jg-cream:           #F8F3EC;
  --jg-cream-dark:      #EDE4D5;
  --jg-white:           #FFFFFF;
  --jg-dark:            #1C1108;

  /* === TEXTE === */
  --jg-text:            #2E1912;
  --jg-text-light:      #8A7158;
  --jg-text-muted:      #B09A80;

  /* === BORDURES === */
  --jg-border:          #E2D5C3;
  --jg-border-light:    rgba(226, 213, 195, 0.5);

  /* === ACCENTS === */
  --jg-pistache:        #7A9A5C;
  --jg-pistache-light:  #A8C28A;
  --jg-rose:            #D4748A;
  --jg-rose-light:      #E8A0AF;

  /* === OVERLAY === */
  --jg-overlay:         rgba(28, 17, 8, 0.72);
  --jg-overlay-light:   rgba(28, 17, 8, 0.40);

  /* === TYPOGRAPHIE === */
  --jg-font-serif:      'Cormorant Garamond', Georgia, serif;
  --jg-font-sans:       'Plus Jakarta Sans', system-ui, sans-serif;

  /* === TAILLES DE TEXTE === */
  --jg-text-hero:       clamp(2.5rem, 5vw, 5rem);
  --jg-text-section:    clamp(1.8rem, 3.5vw, 3rem);
  --jg-text-card:       1.1rem;
  --jg-text-body:       1rem;
  --jg-text-small:      0.85rem;
  --jg-text-label:      0.72rem;

  /* === ESPACEMENT === */
  --jg-section-py:      80px;
  --jg-section-py-mob:  52px;
  --jg-card-gap:        16px;
  --jg-grid-gap:        14px;
  --jg-container-max:   1280px;
  --jg-container-px:    24px;

  /* === BORDER RADIUS === */
  --jg-radius-card:     12px;
  --jg-radius-btn:      50px;
  --jg-radius-img:      8px;
  --jg-radius-badge:    50px;
  --jg-radius-sm:       4px;

  /* === OMBRES === */
  --jg-shadow-card:     0 4px 24px rgba(28, 17, 8, 0.08);
  --jg-shadow-hover:    0 12px 40px rgba(28, 17, 8, 0.15);
  --jg-shadow-btn:      0 8px 24px rgba(139, 26, 58, 0.35);
  --jg-shadow-gold:     0 8px 24px rgba(200, 134, 10, 0.35);

  /* === HEADER === */
  --jg-header-h:        80px;
  --jg-header-h-mob:    64px;

  /* === TRANSITIONS === */
  --jg-transition:      0.25s ease;
  --jg-transition-med:  0.35s ease;
  --jg-transition-slow: 0.55s cubic-bezier(0.16, 1, 0.3, 1);

  /* === Z-INDEX === */
  --jg-z-header:        100;
  --jg-z-modal:         200;
  --jg-z-tooltip:       150;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--jg-font-sans);
  font-size: var(--jg-text-body);
  line-height: 1.65;
  color: var(--jg-text);
  background-color: var(--jg-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--jg-transition);
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--jg-font-serif);
  line-height: 1.15;
  color: var(--jg-dark);
}

:focus-visible {
  outline: 2px solid var(--jg-gold);
  outline-offset: 3px;
}

/* ============================================================
   3. UTILITAIRES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--jg-container-max);
  margin-inline: auto;
  padding-inline: var(--jg-container-px);
}

.section-padding {
  padding: var(--jg-section-py) 0;
}

.text-center {
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Fade-up animation utility */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--jg-transition-slow), transform var(--jg-transition-slow);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-2 {
  transition-delay: 0.1s;
}

.fade-up-delay-3 {
  transition-delay: 0.2s;
}

/* ============================================================
   4. SKIP LINK (accessibilite)
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--jg-primary);
  color: var(--jg-white);
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--jg-font-sans);
  text-decoration: none;
  border-radius: 0 0 6px 6px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--jg-gold);
  outline-offset: 2px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  background-color: var(--jg-primary);
  clip: auto;
  color: var(--jg-white);
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* ============================================================
   5. TYPOGRAPHIE
   ============================================================ */

h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.8rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.9rem; }

/* Section label */
.section-label {
  display: inline-block;
  font-family: var(--jg-font-sans);
  font-size: var(--jg-text-label);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jg-gold);
  margin-bottom: 12px;
}

/* Section title */
.section-title {
  font-family: var(--jg-font-serif);
  font-size: var(--jg-text-section);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--jg-dark);
  margin-bottom: 16px;
}

/* Section subtitle */
.section-subtitle {
  font-family: var(--jg-font-sans);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--jg-text-light);
  margin-bottom: 24px;
}

/* Section text / intro */
.section-text {
  font-family: var(--jg-font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--jg-text-light);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

/* Section header block */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

/* Divider */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 20px auto;
  max-width: 120px;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--jg-gold-light);
  opacity: 0.5;
}

.divider-icon {
  color: var(--jg-gold);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============================================================
   6. BOUTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--jg-font-sans);
  font-size: var(--jg-text-body);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: var(--jg-radius-btn);
  padding: 14px 36px;
  transition: all var(--jg-transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

/* Primary */
.btn-primary,
.btn.btn-primary {
  background-color: var(--jg-primary);
  color: var(--jg-white);
  border-color: var(--jg-primary);
}

.btn-primary:hover,
.btn.btn-primary:hover {
  background-color: var(--jg-primary-dark);
  border-color: var(--jg-primary-dark);
  box-shadow: var(--jg-shadow-btn);
  color: var(--jg-white);
}

/* Secondary / Outline */
.btn-secondary,
.btn.btn-secondary,
.btn-outline,
.btn.btn-outline {
  background-color: transparent;
  color: var(--jg-primary);
  border-color: var(--jg-primary);
}

.btn-secondary:hover,
.btn.btn-secondary:hover,
.btn-outline:hover,
.btn.btn-outline:hover {
  background-color: var(--jg-primary);
  color: var(--jg-white);
}

/* Gold */
.btn-gold,
.btn.btn-gold {
  background-color: var(--jg-gold);
  color: var(--jg-white);
  border-color: var(--jg-gold);
}

.btn-gold:hover,
.btn.btn-gold:hover {
  background-color: #A36C06;
  border-color: #A36C06;
  box-shadow: var(--jg-shadow-gold);
  color: var(--jg-white);
}

/* Ghost White */
.btn-ghost-white,
.btn.btn-ghost-white,
.btn-white,
.btn.btn-white {
  background-color: transparent;
  color: var(--jg-white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-ghost-white:hover,
.btn.btn-ghost-white:hover,
.btn-white:hover,
.btn.btn-white:hover {
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--jg-white);
}

/* ============================================================
   7. HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--jg-z-header);
  height: var(--jg-header-h);
  transition: background-color var(--jg-transition-med),
              border-color var(--jg-transition-med),
              box-shadow var(--jg-transition-med);
}

/* Transparent state (hero / front-page) */
#site-header.transparent {
  background: linear-gradient(180deg, rgba(10, 5, 2, 0.72) 0%, rgba(10, 5, 2, 0.20) 70%, transparent 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#site-header.transparent .main-nav a,
#site-header.transparent .main-nav__list a {
  color: var(--jg-white);
}

#site-header.transparent .site-logo {
  color: var(--jg-white);
}

/* Transparent (sur bannière sombre) : drop-shadow blanc subtil pour que
   le logo marron/sombre reste lisible sur fond foncé */
#site-header.transparent .site-logo img,
#site-header.transparent .site-logo .logo-img {
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.85))
          drop-shadow(0 0 2px rgba(255,255,255,0.95)) !important;
  opacity: 0.97;
}

/* Scrolled (fond blanc) : logo en couleurs naturelles, aucun filtre */
#site-header.scrolled .site-logo img,
#site-header.scrolled .site-logo .logo-img {
  filter: none !important;
  opacity: 1;
}

#site-header.transparent .hamburger span {
  background-color: var(--jg-white);
}

/* Scrolled state */
#site-header.scrolled {
  background-color: var(--jg-white);
  border-bottom: 1px solid rgba(200, 134, 10, 0.2);
  box-shadow: 0 2px 20px rgba(28, 17, 8, 0.08);
}

#site-header.scrolled .main-nav a,
#site-header.scrolled .main-nav__list a {
  color: var(--jg-text);
}

#site-header.scrolled .site-logo {
  color: var(--jg-text);
}

#site-header.scrolled .hamburger span {
  background-color: var(--jg-text);
}

/* Header inner layout */
.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: var(--jg-container-max);
  margin-inline: auto;
  padding-inline: var(--jg-container-px);
  gap: 24px;
}

/* Logo — div (quand custom logo) ou <a> (fallback) */
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  overflow: hidden;
  max-height: 46px;
  line-height: 0;
}

/* Le <a> généré par the_custom_logo() */
.site-logo .custom-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  overflow: hidden;
  max-height: 46px;
  line-height: 0;
}

/* IMAGE logo (logo-transparent.png — fond déjà retiré) */
.site-logo img,
.site-logo .logo-img {
  display: block !important;
  height: 44px !important;
  width: auto !important;
  max-height: 44px !important;
  max-width: 200px !important;
  min-height: 0 !important;
  min-width: 0 !important;
  object-fit: contain !important;
  transition: filter var(--jg-transition-med), opacity var(--jg-transition-med);
}

/* Desktop Navigation */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-nav ul,
.main-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a,
.main-nav__list a {
  font-family: var(--jg-font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 8px 12px;
  border-radius: var(--jg-radius-sm);
  transition: color var(--jg-transition), background-color var(--jg-transition);
  text-decoration: none;
}

.main-nav a:hover,
.main-nav__list a:hover {
  color: var(--jg-gold);
}

#site-header.scrolled .main-nav a:hover,
#site-header.scrolled .main-nav__list a:hover {
  color: var(--jg-primary);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-cta .btn {
  padding: 10px 22px;
  font-size: 0.82rem;
}

/* Header transparent CTA adjustments */
#site-header.transparent .header-cta .btn-outline {
  color: var(--jg-white);
  border-color: rgba(255, 255, 255, 0.6);
}

#site-header.transparent .header-cta .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--jg-white);
}

#site-header.transparent .header-cta .btn-primary {
  background-color: var(--jg-gold);
  border-color: var(--jg-gold);
  color: var(--jg-white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--jg-dark);
  border-radius: 2px;
  transition: all var(--jg-transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   8. LANGUAGE SWITCHER
   ============================================================ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 8px;
  flex-shrink: 0;
}

.lang-switcher li,
.lang-switcher .lang-item {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lang-switcher a,
.lang-switcher .lang-item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 26px;
  padding: 0 6px;
  font-family: var(--jg-font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--jg-text);
  text-decoration: none;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.lang-switcher a:hover,
.lang-switcher .lang-item a:hover {
  border-color: var(--jg-primary);
  color: var(--jg-primary);
  background-color: rgba(139, 26, 58, 0.06);
}

.lang-switcher .lang-item.current-lang a,
.lang-switcher a.lang-active {
  background-color: var(--jg-primary);
  color: var(--jg-white);
  border-color: var(--jg-primary);
}

/* Sur fond sombre (header transparent) */
#site-header.transparent .lang-switcher a,
#site-header.transparent .lang-switcher .lang-item a {
  color: rgba(255, 255, 255, 0.85);
}

#site-header.transparent .lang-switcher .lang-item.current-lang a,
#site-header.transparent .lang-switcher a.lang-active {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--jg-white);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   9. MOBILE NAV OVERLAY
   ============================================================ */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: calc(var(--jg-z-header) + 10);
  background-color: var(--jg-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 80px 24px 40px;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  text-align: center;
  padding: 0;
  margin: 0;
}

.mobile-nav a,
.mobile-nav__list a,
.mobile-nav__list li a {
  font-family: var(--jg-font-serif);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 600;
  font-style: italic;
  color: var(--jg-cream);
  text-decoration: none;
  display: block;
  padding: 10px 24px;
  letter-spacing: -0.01em;
  transition: color var(--jg-transition);
}

.mobile-nav a:hover,
.mobile-nav__list a:hover,
.mobile-nav__list li a:hover {
  color: var(--jg-gold);
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--jg-cream);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--jg-transition);
}

.mobile-nav__close:hover {
  color: var(--jg-gold);
}

.lang-switcher--mobile {
  margin-top: 32px;
  margin-left: 0;
}

.lang-switcher--mobile a,
.lang-switcher--mobile .lang-item a {
  color: rgba(248, 243, 236, 0.65);
  font-size: 0.78rem;
}

.lang-switcher--mobile .lang-item.current-lang a,
.lang-switcher--mobile a.lang-active {
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--jg-white);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   10. HERO CAROUSEL
   ============================================================ */
.hero-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 1916 / 821;
  min-height: 60vh;
  overflow: hidden;
  background-color: var(--jg-dark);
}

.hero-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 0;
}

.hero-carousel__slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Hero overlay gradient */
.hero-carousel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(28, 17, 8, 0.35) 0%, rgba(28, 17, 8, 0.55) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Prev / Next buttons */
.hero-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
  color: var(--jg-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 1.8rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color var(--jg-transition);
}

.hero-carousel__btn:hover {
  background-color: rgba(255, 255, 255, 0.32);
}

.hero-carousel__btn--prev {
  left: 20px;
}

.hero-carousel__btn--next {
  right: 20px;
}

/* Dots */
.hero-carousel__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color var(--jg-transition), transform var(--jg-transition);
}

.hero-carousel__dot.active {
  background-color: var(--jg-gold);
  transform: scale(1.3);
}

/* ============================================================
   11. COLLECTIONS NAV
   ============================================================ */
.collections-nav {
  position: sticky;
  top: var(--jg-header-h);
  z-index: calc(var(--jg-z-header) - 5);
  background-color: var(--jg-white);
  border-bottom: 1px solid var(--jg-border);
  box-shadow: 0 2px 12px rgba(28, 17, 8, 0.06);
}

.collections-grid {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.collections-grid::-webkit-scrollbar {
  display: none;
}

.collection-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 14px 20px 12px;
  flex: 1;
  min-width: 120px;
  text-align: center;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all var(--jg-transition);
  color: var(--jg-text-light);
}

.collection-tab:hover {
  color: var(--jg-primary);
  background-color: rgba(139, 26, 58, 0.04);
}

.collection-tab.active {
  color: var(--jg-primary);
  border-bottom-color: var(--jg-primary);
}

.collection-tab-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.collection-tab-name {
  font-family: var(--jg-font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.collection-tab-count {
  font-family: var(--jg-font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--jg-text-muted);
  letter-spacing: 0.04em;
}

/* ============================================================
   12. SECTIONS PRODUITS
   ============================================================ */
.category-section {
  padding: var(--jg-section-py) 0;
  position: relative;
}

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

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

.bg-dark {
  background: linear-gradient(135deg, #1C1108 0%, #2E1912 60%, #3D2015 100%);
}

/* Section Boissons textes */
.bg-dark .section-label {
  color: var(--jg-gold-light);
}

.bg-dark .section-title {
  color: var(--jg-cream);
}

.bg-dark .section-text {
  color: rgba(248, 243, 236, 0.8);
}

/* ============================================================
   13. PHOTO GRID
   ============================================================ */
.photo-grid {
  display: grid;
  gap: var(--jg-grid-gap);
}

/* Portrait — 4 colonnes desktop */
.photo-grid--portrait {
  grid-template-columns: repeat(4, 1fr);
}

/* Landscape — 5 colonnes desktop */
.photo-grid--landscape {
  grid-template-columns: repeat(5, 1fr);
}

/* Square — 5 colonnes desktop */
.photo-grid--square {
  grid-template-columns: repeat(5, 1fr);
}

/* ============================================================
   14. PHOTO CARD
   ============================================================ */
.photo-card {
  border-radius: var(--jg-radius-card);
  overflow: hidden;
  background-color: var(--jg-white);
  box-shadow: var(--jg-shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--jg-shadow-hover);
}

.photo-card__img-wrap {
  position: relative;
  overflow: hidden;
  background-color: var(--jg-cream);
  line-height: 0;
}

/* Aucun aspect-ratio forcé : l'image s'affiche dans ses proportions naturelles,
   sans rognage ni déformation. Le fond crème remplit les éventuels espaces vides. */
.photo-card__img-wrap--portrait,
.photo-card__img-wrap--landscape,
.photo-card__img-wrap--square {
  /* pas d'aspect-ratio */
}

.photo-card__img-wrap img {
  width: 100%;
  height: auto;        /* proporitions naturelles — aucun rognage */
  display: block;
  transition: transform 0.45s ease;
}

.photo-card:hover .photo-card__img-wrap img {
  transform: scale(1.05);
}

/* Overlay hover */
.photo-card__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--jg-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.photo-card:hover .photo-card__img-wrap::after {
  opacity: 0.08;
}

/* Zoom hint */
.jg-zoom-hint {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.photo-card__img-wrap:hover .jg-zoom-hint {
  opacity: 1;
}

/* ============================================================
   15. CATEGORY BANNER (loukoum-banner)
   ============================================================ */
.category-banner {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin: 32px 0;
  box-shadow: var(--jg-shadow-card);
}

.category-banner img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ============================================================
   16. SECTION BOISSONS (fond sombre)
   ============================================================ */
#boissons {
  background: linear-gradient(135deg, #1C1108 0%, #2E1912 60%, #3D2015 100%);
}

.granite-price {
  font-size: 2.5rem;
  font-family: var(--jg-font-serif);
  color: var(--jg-gold);
  font-weight: 700;
  margin: 24px 0 8px;
}

.granite-price-label {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(248, 243, 236, 0.5);
  font-family: var(--jg-font-sans);
}

/* Dark section cards */
#boissons .photo-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ============================================================
   17. FULL BANNER SECTION
   ============================================================ */
.full-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.full-banner img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.full-banner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28, 17, 8, 0.45);
}

.full-banner__text {
  font-family: var(--jg-font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--jg-white);
  text-align: center;
  padding: 0 24px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* ============================================================
   18. BOUTIQUES SECTION
   ============================================================ */
.boutiques-section {
  background-color: var(--jg-cream);
  padding: var(--jg-section-py) 0;
}

.boutiques-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.boutique-card {
  background-color: var(--jg-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--jg-shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.boutique-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--jg-shadow-hover);
}

.boutique-map {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--jg-cream-dark) 0%, var(--jg-cream) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 3rem;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.boutique-map-label {
  font-family: var(--jg-font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--jg-primary);
  text-decoration: none;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border: 1px solid var(--jg-primary);
  border-radius: var(--jg-radius-btn);
  transition: all var(--jg-transition);
}

.boutique-map-label:hover {
  background-color: var(--jg-primary);
  color: var(--jg-white);
}

.boutique-body {
  padding: 28px;
}

.boutique-name {
  font-family: var(--jg-font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  color: var(--jg-dark);
  margin-bottom: 4px;
}

.boutique-location {
  font-family: var(--jg-font-sans);
  font-size: 0.85rem;
  color: var(--jg-text-light);
  margin-bottom: 20px;
}

.boutique-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.boutique-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.boutique-info-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--jg-gold);
  font-size: 1.1rem;
}

.boutique-info-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--jg-gold);
  flex-shrink: 0;
}

.boutique-info-content {
  flex: 1;
}

.boutique-info-label {
  font-family: var(--jg-font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--jg-text-muted);
  margin-bottom: 2px;
}

.boutique-info-value {
  font-family: var(--jg-font-sans);
  font-size: 0.88rem;
  color: var(--jg-text);
  line-height: 1.5;
}

.boutique-info-value a {
  color: var(--jg-primary);
  text-decoration: none;
}

.boutique-info-value a:hover {
  text-decoration: underline;
}

/* Horaires grid */
.horaires-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 12px;
  font-size: 0.82rem;
}

.horaires-day {
  font-weight: 500;
  color: var(--jg-text);
}

.horaires-time {
  color: var(--jg-text-light);
}

/* ============================================================
   19. REVIEWS SECTION — Avis Google
   ============================================================ */
.reviews-section {
  padding: var(--jg-section-py) 0;
}

/* Badge note globale */
.reviews-global-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 40px;
  padding: 8px 18px 8px 14px;
  margin-top: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.reviews-google-logo {
  display: flex;
  align-items: center;
}
.reviews-stars-row {
  display: flex;
  gap: 1px;
  line-height: 1;
}
.reviews-star {
  color: #FBBC04;
  font-size: 1rem;
}
.reviews-star-half {
  opacity: .5;
}
.reviews-score {
  font-family: var(--jg-font-sans);
  font-weight: 700;
  font-size: .95rem;
  color: var(--jg-dark);
}
.reviews-count {
  font-family: var(--jg-font-sans);
  font-size: .82rem;
  color: #666;
}

/* Grille des cartes */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

/* Carte individuelle */
.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 26px 24px 22px;
  box-shadow: 0 2px 16px rgba(28,17,8,.07);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(28,17,8,.12);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--jg-primary);
  color: #fff;
  font-family: var(--jg-font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-author {
  font-family: var(--jg-font-sans);
  font-weight: 600;
  font-size: .88rem;
  color: var(--jg-dark);
}
.review-date {
  font-family: var(--jg-font-sans);
  font-size: .75rem;
  color: #888;
}
.review-google-badge {
  display: flex;
  align-items: center;
  margin-left: auto;
  flex-shrink: 0;
}

/* Étoiles */
.review-stars {
  display: flex;
  gap: 2px;
}
.review-star {
  color: #FBBC04;
  font-size: .95rem;
}
.review-star-empty {
  color: #ddd;
}

/* Texte de l'avis */
.review-text {
  margin: 0;
  padding: 0;
  flex: 1;
}
.review-text p {
  font-family: var(--jg-font-sans);
  font-size: .875rem;
  line-height: 1.65;
  color: #444;
  margin: 0;
  position: relative;
}
.review-text p::before {
  content: "\201C";
  font-family: var(--jg-font-serif);
  font-size: 2.5rem;
  color: var(--jg-primary);
  opacity: .25;
  line-height: 0;
  vertical-align: -0.6em;
  margin-right: 4px;
}

/* Boutons avis Google */
.reviews-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 1.5px solid var(--jg-dark);
  border-radius: 40px;
  font-family: var(--jg-font-sans);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--jg-dark);
  text-decoration: none;
  transition: background .2s, color .2s;
}
.btn-outline-dark:hover {
  background: var(--jg-dark);
  color: #fff;
}

/* Responsive — 2 cols tablette */
@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive — 1 col mobile */
@media (max-width: 640px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .reviews-global-badge {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ============================================================
   19. CTA SECTION
   ============================================================ */
.cta-section {
  background-color: var(--jg-primary);
  padding: var(--jg-section-py) 0;
  position: relative;
  overflow: hidden;
}

/* Motif floral SVG overlay */
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  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='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M30 0 C30 0 20 10 20 20 C20 30 30 30 30 30 C30 30 40 30 40 20 C40 10 30 0 30 0Z'/%3E%3Cpath d='M30 60 C30 60 20 50 20 40 C20 30 30 30 30 30 C30 30 40 30 40 40 C40 50 30 60 30 60Z'/%3E%3Cpath d='M0 30 C0 30 10 20 20 20 C30 20 30 30 30 30 C30 30 30 40 20 40 C10 40 0 30 0 30Z'/%3E%3Cpath d='M60 30 C60 30 50 20 40 20 C30 20 30 30 30 30 C30 30 30 40 40 40 C50 40 60 30 60 30Z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-text {
  max-width: 600px;
}

.cta-text .section-label {
  color: var(--jg-gold-light);
}

.cta-text .section-title {
  color: var(--jg-white);
}

.cta-text .section-text {
  color: rgba(248, 243, 236, 0.85);
  max-width: 600px;
  margin: 0 auto;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   20. BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: calc(var(--jg-z-header) - 1);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--jg-primary);
  color: var(--jg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(139, 26, 58, 0.35);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--jg-primary-dark);
  color: var(--jg-white);
}

/* ============================================================
   21. LIGHTBOX
   ============================================================ */
#jg-lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--jg-z-modal);
  display: none;
  align-items: center;
  justify-content: center;
}

#jg-lightbox.jg-lb--open {
  display: flex;
}

.jg-lb__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.92);
  cursor: pointer;
}

.jg-lb__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--jg-white);
  font-size: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color var(--jg-transition);
}

.jg-lb__close:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.jg-lb__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--jg-white);
  font-size: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color var(--jg-transition);
  line-height: 1;
}

.jg-lb__nav:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.jg-lb__nav--prev {
  left: 16px;
}

.jg-lb__nav--next {
  right: 16px;
}

.jg-lb__img-wrap {
  position: relative;
  z-index: 1;
  max-width: 96vw;
  max-height: 96vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jg-lb__img {
  max-width: 96vw;
  max-height: 96vh;
  object-fit: contain;
  border-radius: var(--jg-radius-img);
  transition: opacity 0.3s ease;
}

.jg-lb__loader {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
}

.jg-lb__loader::after {
  content: '';
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--jg-gold);
  border-radius: 50%;
  animation: jg-spin 0.8s linear infinite;
}

.jg-lb__counter {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-family: var(--jg-font-sans);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.08em;
}

/* ============================================================
   22. FOOTER
   ============================================================ */
#site-footer {
  background-color: #1C1108;
  color: #C8B99A;
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(200, 134, 10, 0.2);
}

/* Footer Brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer-logo img,
.footer-logo .custom-logo {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-logo-name {
  font-family: var(--jg-font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #F8F3EC;
  letter-spacing: 0.02em;
}

.footer-logo-tagline {
  font-family: var(--jg-font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jg-gold);
}

.footer-desc {
  font-family: var(--jg-font-sans);
  font-size: 0.875rem;
  line-height: 1.7;
  color: #C8B99A;
  max-width: 280px;
}

/* Footer Social */
.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-social__link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(200, 134, 10, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C8B99A;
  transition: all var(--jg-transition);
  text-decoration: none;
}

.footer-social__link:hover {
  background-color: var(--jg-gold);
  color: var(--jg-white);
  transform: translateY(-2px);
}

/* Footer columns */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col-title {
  font-family: var(--jg-font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F8F3EC;
  margin-bottom: 4px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(200, 134, 10, 0.2);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li a {
  font-family: var(--jg-font-sans);
  font-size: 0.875rem;
  color: #C8B99A;
  text-decoration: none;
  transition: color var(--jg-transition);
  line-height: 1.5;
}

.footer-links li a:hover {
  color: var(--jg-gold);
}

/* Footer Contact column */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-style: normal;
}

.footer-contact-icon {
  flex-shrink: 0;
  color: var(--jg-gold);
  margin-top: 2px;
}

.footer-contact-icon svg {
  fill: var(--jg-gold);
  width: 16px;
  height: 16px;
}

.footer-contact-text {
  font-family: var(--jg-font-sans);
  font-size: 0.82rem;
  line-height: 1.6;
  color: #C8B99A;
}

.footer-contact-text a {
  color: #C8B99A;
  text-decoration: none;
  transition: color var(--jg-transition);
}

.footer-contact-text a:hover {
  color: var(--jg-gold);
}

.footer-store-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(248, 243, 236, 0.85);
  display: block;
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}

.footer-hours-closed {
  color: rgba(200, 185, 154, 0.5);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-family: var(--jg-font-sans);
  font-size: 0.78rem;
  color: rgba(200, 185, 154, 0.6);
}

.footer-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-family: var(--jg-font-sans);
  font-size: 0.78rem;
  color: rgba(200, 185, 154, 0.55);
  text-decoration: none;
  transition: color var(--jg-transition);
}

.footer-legal a:hover {
  color: var(--jg-gold);
}

/* ============================================================
   23. ANIMATIONS KEYFRAMES
   ============================================================ */
@keyframes jg-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes jg-fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes jg-slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes jg-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   24. MARQUEE
   ============================================================ */
.marquee-section {
  background-color: var(--jg-primary);
  height: 48px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: jg-marquee 30s linear infinite;
}

.marquee-section:hover .marquee-inner {
  animation-play-state: paused;
}

.marquee-text {
  font-family: var(--jg-font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--jg-cream);
  padding: 0 48px;
  white-space: nowrap;
}

/* ============================================================
   25. MISC COMPONENTS
   ============================================================ */

/* Loukoum quote banner */
.loukoum-quote {
  width: 100%;
  background-color: rgba(212, 116, 138, 0.1);
  border-radius: 12px;
  padding: 32px 40px;
  margin: 32px 0;
  text-align: center;
  position: relative;
}

.loukoum-quote p {
  font-family: var(--jg-font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--jg-text);
  line-height: 1.6;
}

.loukoum-quote .quote-line {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--jg-gold), transparent);
  margin: 16px auto;
}

/* ============================================================
   26. RESPONSIVE — 1280px (desktop large → desktop)
   ============================================================ */
@media (max-width: 1280px) {
  :root {
    --jg-container-px: 20px;
  }

  .footer-grid {
    gap: 32px;
  }

  .header-inner {
    gap: 16px;
  }

  .main-nav a,
  .main-nav__list a {
    font-size: 0.82rem;
    padding: 8px 8px;
  }
}

/* ============================================================
   27. RESPONSIVE — 900px (tablet)
   ============================================================ */
@media (max-width: 900px) {
  :root {
    --jg-header-h: 64px;
  }

  /* Header */
  .main-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .lang-switcher:not(.lang-switcher--mobile) {
    display: none;
  }

  /* Hero */
  .hero-carousel {
    aspect-ratio: auto;
    height: 70vw;
    min-height: 360px;
  }

  .hero-carousel__btn {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }

  /* Collections nav */
  .collection-tab {
    padding: 10px 14px 8px;
    min-width: 100px;
  }

  .collection-tab-name {
    font-size: 0.72rem;
  }

  /* Photo grids — 3 cols tablet */
  .photo-grid--portrait {
    grid-template-columns: repeat(3, 1fr);
  }

  .photo-grid--landscape {
    grid-template-columns: repeat(3, 1fr);
  }

  .photo-grid--square {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Boutiques */
  .boutiques-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  /* Section padding */
  .category-section,
  .boutiques-section,
  .cta-section {
    padding: var(--jg-section-py-mob) 0;
  }
}

/* ============================================================
   28. RESPONSIVE — 640px
   ============================================================ */
@media (max-width: 640px) {
  :root {
    --jg-container-px: 16px;
    --jg-grid-gap: 12px;
  }

  /* Hero */
  .hero-carousel {
    height: 80vw;
    min-height: 280px;
  }

  .hero-carousel__btn {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }

  .hero-carousel__btn--prev {
    left: 10px;
  }

  .hero-carousel__btn--next {
    right: 10px;
  }

  /* Collections nav */
  .collection-tab-icon {
    display: none;
  }

  /* Photo grids — 2 cols mobile */
  .photo-grid--portrait,
  .photo-grid--landscape,
  .photo-grid--square {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* Category banner */
  .category-banner img {
    height: 180px;
  }

  /* Full banner */
  .full-banner img {
    height: 220px;
  }

  /* Boutiques */
  .boutique-body {
    padding: 20px;
  }

  /* CTA */
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 320px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .footer-desc {
    max-width: 100%;
  }

  /* Section header */
  .section-header {
    margin-bottom: 32px;
  }

  /* Back to top */
  .back-to-top {
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  /* Lightbox nav */
  .jg-lb__nav--prev {
    left: 8px;
  }

  .jg-lb__nav--next {
    right: 8px;
  }
}

/* ============================================================
   29. RESPONSIVE — 480px (mobile small)
   ============================================================ */
@media (max-width: 480px) {
  body {
    font-size: 0.95rem;
  }

  /* Hero */
  .hero-carousel {
    height: 90vw;
    min-height: 260px;
  }

  /* Collections nav */
  .collection-tab {
    padding: 10px 8px 8px;
    min-width: 80px;
  }

  .collection-tab-count {
    display: none;
  }

  .collection-tab-name {
    font-size: 0.68rem;
  }

  /* Photo grid — 2 cols */
  .photo-grid--portrait,
  .photo-grid--landscape,
  .photo-grid--square {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* Boutique card */
  .boutique-map {
    height: 150px;
  }

  .boutique-name {
    font-size: 1.25rem;
  }

  .horaires-grid {
    font-size: 0.75rem;
  }

  /* CTA */
  .cta-text .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  /* Footer */
  #site-footer {
    padding-top: 48px;
  }

  .footer-social {
    gap: 8px;
  }

  .footer-social__link {
    width: 34px;
    height: 34px;
  }
}

/* ============================================================
   30. PRINT
   ============================================================ */
@media print {
  #site-header,
  .back-to-top,
  .hero-carousel,
  .collections-nav,
  .mobile-nav,
  .hamburger,
  #jg-lightbox,
  .cta-section {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .photo-card {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}

/* ============================================================
   31. SECTION LABEL COLORS PAR SECTION
   ============================================================ */
#trompe-loeil .section-label {
  color: var(--jg-gold);
}

#loukoum .section-label {
  color: var(--jg-rose);
}

#patisserie-orientale .section-label {
  color: var(--jg-primary);
}

#patisserie-moderne .section-label {
  color: var(--jg-pistache);
}

/* ============================================================
   32. MOBILE NAV — body lock
   ============================================================ */
body.menu-open {
  overflow: hidden;
}

/* ============================================================
   33. HEADER pages non-home (toujours scrolled)
   ============================================================ */
body:not(.home-page) #site-header {
  background-color: var(--jg-white);
  border-bottom: 1px solid rgba(200, 134, 10, 0.2);
}

body:not(.home-page) #site-header .main-nav a,
body:not(.home-page) #site-header .main-nav__list a {
  color: var(--jg-text);
}

body:not(.home-page) #site-header .logo-img {
  filter: none;
}

body:not(.home-page) #site-header .lang-switcher a,
body:not(.home-page) #site-header .lang-switcher .lang-item a {
  color: var(--jg-text);
}

/* ============================================================
   34. WORDPRESS UTILITIES
   ============================================================ */
.alignleft {
  float: left;
  margin-right: 1.5em;
}

.alignright {
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

img.alignleft,
img.alignright,
img.aligncenter {
  margin-bottom: 1em;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: var(--jg-text-small);
  color: var(--jg-text-light);
  text-align: center;
  margin-top: 4px;
}

/* Site content — offset for fixed header */
#site-content {
  padding-top: var(--jg-header-h);
}

/* Front page — no header offset (hero is behind header) */
.home-page #site-content {
  padding-top: 0;
}

/* ============================================================
   35. SEO — SCREEN READER ONLY (sr-only)
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   36. FAQ SECTION — Accordeon SEO
   ============================================================ */
.faq-section {
  padding: var(--jg-section-py) 0;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(139, 26, 58, 0.15);
}

.faq-item:first-child {
  border-top: 1px solid rgba(139, 26, 58, 0.15);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--jg-font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--jg-dark);
  gap: 16px;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--jg-primary);
}

.faq-question[aria-expanded="true"] {
  color: var(--jg-primary);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--jg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--jg-primary);
  transition: transform 0.3s ease, background 0.2s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--jg-primary);
  color: #fff;
}

.faq-answer {
  display: none;
  padding: 0 0 20px;
}

.faq-answer p {
  font-family: var(--jg-font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--jg-text-light);
  margin: 0;
}

.faq-item.is-open .faq-answer {
  display: block;
}

@media (max-width: 768px) {
  .faq-question {
    font-size: 0.9375rem;
  }
}
