/* Gloria Newman - Rideaux */
:root {
  --color-bg: #fff;
  --color-text: #1a1a1a;
  --color-text-muted: #666;
  --color-border: #e5e5e5;
  --color-btn: #b87333;
  --color-btn-hover: #9a6129;
  --color-gold: #b87333;
  --color-cream: #f8f6f3;
  --color-stars: #f5a623;
  --color-badge: #6b7280;
  --font-sans: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-serif: Georgia, "Times New Roman", serif;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 2px 8px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.5;
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ----- Header (global) — style logo + slogan | recherche | menu ----- */
.site-header {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 0.75rem 1.25rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

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

.header-brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-decoration: none;
  color: inherit;
}

.header-logo-wrap {
  display: block;
}

.site-header .header-logo-wrap .logo-img {
  height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}

.header-slogan {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-btn);
  margin: 0;
}

.header-search {
  flex: 1;
  min-width: 200px;
  max-width: 400px;
}

.search-form {
  display: flex;
  align-items: center;
  background: #f0f0f0;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.header-search__input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  color: var(--color-text);
}

.header-search__input::placeholder {
  color: var(--color-text-muted);
}

.header-search__input:focus {
  outline: none;
}

.header-search__btn {
  border: none;
  background: transparent;
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--color-text-muted);
}

.header-search__btn:hover {
  color: var(--color-text);
}

/* Bouton menu mobile (caché sur desktop) */
.header-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--color-text);
  border-radius: var(--radius);
  transition: background 0.2s;
}
.header-menu-btn:hover {
  background: rgba(0, 0, 0, 0.06);
}
.header-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}
.header-menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header-menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.header-menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Panneau nav + recherche (desktop : visible inline) */
.header-drop {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
/* Pages internes : une ligne nav + search sous le brand */
.site-header .header-inner:not(.header-inner--single-row) .header-drop {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.header-drop .header-nav {
  border-top: 1px solid var(--color-border);
  padding-top: 0.6rem;
}
.site-header .header-inner:not(.header-inner--single-row) .header-drop .header-nav {
  border-top: none;
  padding-top: 0;
}
.header-drop .header-search {
  flex: 1;
  min-width: 0;
}
.header-nav {
  border-top: 1px solid var(--color-border);
  padding-top: 0.6rem;
}

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

.nav-list a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text);
}

.nav-list a:hover {
  color: var(--color-btn);
}

.logo-img {
  height: 48px;
  width: auto;
}

/* Page simple (Qui sommes-nous, Contact, CGU, etc.) */
.page-simple {
  padding: 2.5rem 0 3rem;
}

.page-simple__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.page-simple__content {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
}

.page-simple__content p {
  margin-bottom: 1rem;
}

.page-simple__content a {
  color: var(--color-btn);
  text-decoration: underline;
}

.page-simple__content a:hover {
  color: var(--color-btn-hover);
}

.page-simple__content h2 {
  font-size: 1.2rem;
  margin: 1.5rem 0 0.5rem;
}

.page-simple__content ul {
  margin: 0.5rem 0 1rem 1.25rem;
}

/* ----- Container global ----- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: 720px;
  text-align: center;
}

/* ----- Page Accueil : header blanc, une ligne, sans scroll ----- */
.page-home .site-header--home {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid var(--color-border);
  background: #fff;
  padding: 0.4rem 1rem;
}

/* Une seule ligne : logo + slogan à gauche | nav au centre | recherche à droite */
.header-inner--single-row {
  flex-direction: row;
  gap: 0;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header-inner--single-row .header-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 0 0 auto;
  flex-wrap: wrap;
}

.header-inner--single-row .header-drop {
  flex: 1;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  border-top: none;
  min-width: 0;
}
.header-inner--single-row .header-drop .header-nav {
  border-top: none;
  padding-top: 0;
  flex: 0 0 auto;
}
.header-inner--single-row .header-drop .header-search {
  flex: 0 0 auto;
  width: 260px;
  min-width: 200px;
}

.header-inner--single-row .header-brand {
  flex-direction: row;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.header-inner--single-row .header-nav {
  border-top: none;
  padding-top: 0;
  flex: 0 0 auto;
}

.header-inner--single-row .header-nav .nav-list {
  gap: 1.25rem;
}

.header-inner--single-row .header-search {
  flex: 1;
  min-width: 140px;
  max-width: 280px;
}

.page-home .site-header--home .header-logo-wrap {
  background: transparent;
  width: auto;
  height: 32px;
}

.page-home .site-header--home .header-logo-wrap .logo-img {
  height: 32px;
  width: auto;
  max-width: 100px;
  filter: none;
}

.page-home .site-header--home .header-slogan {
  color: var(--color-btn);
  font-size: 0.65rem;
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.page-home .site-header--home .nav-list a {
  color: var(--color-text);
  font-size: 0.88rem;
}

.page-home .site-header--home .nav-list a:hover {
  color: var(--color-btn);
}

.page-home .site-header--home .header-search .search-form {
  background: #f0f0f0;
  border-color: var(--color-border);
  padding: 0.35rem 0;
}

.page-home .site-header--home .header-search__input {
  padding: 0.4rem 0.75rem;
  font-size: 0.85rem;
  color: var(--color-text);
}

.page-home .site-header--home.is-scrolled {
  position: fixed;
  background: var(--color-bg);
  border-bottom-color: var(--color-border);
}

.page-home .site-header--home.is-scrolled .nav-list a {
  color: var(--color-text);
}

.page-home .site-header--home.is-scrolled .nav-list a:hover {
  color: var(--color-gold);
}

.page-home .site-header--home.is-scrolled .header-logo-wrap .logo-img {
  filter: none;
}

.page-home .site-header--home.is-scrolled .header-slogan {
  color: var(--color-btn);
}

.page-home .site-header--home.is-scrolled .header-inner--single-row .header-nav {
  border-top: none;
}

/* Hero plein écran — une hauteur d’écran, sans scroll */
.hero-home {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-home__bg {
  position: absolute;
  inset: 0;
}

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

/* Hero : carrousel vidéo (remplace la photo) */
.hero-home__bg--carousel .hero-carousel {
  position: absolute;
  inset: 0;
}

.hero-home__bg--carousel .hero-carousel__track {
  position: absolute;
  inset: 0;
}

.hero-home__bg--carousel .hero-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero-home__bg--carousel .hero-carousel__slide.is-active {
  opacity: 1;
  z-index: 0;
}

.hero-home__bg--carousel .hero-carousel__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-home__bg--carousel .hero-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: #1a1a1a;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.hero-home__bg--carousel .hero-carousel__btn:hover {
  background: #fff;
  color: var(--color-btn);
}

.hero-home__bg--carousel .hero-carousel__btn--prev {
  left: 1rem;
}

.hero-home__bg--carousel .hero-carousel__btn--next {
  right: 1rem;
}

.hero-home__bg--carousel .hero-carousel__dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 0.5rem;
}

.hero-home__bg--carousel .hero-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s;
}

.hero-home__bg--carousel .hero-carousel__dot:hover,
.hero-home__bg--carousel .hero-carousel__dot.is-active {
  background: rgba(255, 255, 255, 0.9);
}

.hero-home__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.5) 100%);
  pointer-events: none;
}

.hero-home__content {
  position: relative;
  z-index: 2;
  padding: 1rem 1.25rem 1.5rem;
  max-width: 580px;
  margin-top: 0;
}

.hero-home__logo-wrap {
  background: rgba(255, 255, 255, 0.92);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-lg);
  margin: 0 auto 0.35rem;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-home__logo {
  height: clamp(48px, 10vw, 72px);
  width: auto;
  display: block;
  margin: 0 auto;
}

.hero-home__since {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 0.4rem;
}

.hero-home__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 0.4rem;
}

.hero-home__tagline {
  font-family: var(--font-sans);
  font-size: clamp(0.8rem, 1.8vw, 0.95rem);
  font-weight: 300;
  color: rgba(255,255,255,.9);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.hero-home__cta {
  display: inline-block;
  background: #fff;
  color: var(--color-text);
  padding: 0.7rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}

.hero-home__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.25);
}

.hero-home__scroll {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.6);
  animation: bounce 2s ease-in-out infinite;
}

.hero-home__scroll span {
  display: block;
  width: 20px;
  height: 20px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin: -6px 0 0 -6px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Bandeau logo (visible sur fond crème) */
.logo-band {
  background: var(--color-cream);
  padding: 2.5rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.logo-band__link {
  display: block;
  text-align: center;
}

.logo-band__img {
  height: clamp(72px, 14vw, 110px);
  width: auto;
  margin: 0 auto;
  max-width: 280px;
  object-fit: contain;
}

/* Section carrousel vidéo (entre bandeau logo et avis clients) */
.video-carousel-section {
  padding: 0 1rem 2rem;
}

.video-carousel-section .video-carousel {
  max-width: 1200px;
  margin: 0 auto;
}

/* Carrousel vidéo */
.video-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
  border-radius: var(--radius-lg);
}

.video-carousel__track-wrap {
  position: absolute;
  inset: 0;
}

.video-carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.video-carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.video-carousel__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.video-carousel__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.video-carousel__btn:hover {
  background: #fff;
  color: var(--color-btn);
}

.video-carousel__btn--prev {
  left: 1rem;
}

.video-carousel__btn--next {
  right: 1rem;
}

.video-carousel__dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 0.5rem;
}

.video-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s;
}

.video-carousel__dot:hover,
.video-carousel__dot.is-active {
  background: rgba(255, 255, 255, 0.9);
}

/* Avis clients */
.reviews-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .reviews-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .reviews-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.review-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.review-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(184, 115, 51, 0.2);
}

.review-card__stars {
  color: var(--color-stars);
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.review-card__quote {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0 0 1.25rem;
  font-style: italic;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
}

.review-card__name {
  display: block;
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 0.15rem;
}

.review-card__meta {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Sections génériques */
.section {
  padding: 4.5rem 0;
}

.section--light {
  background: var(--color-cream);
}

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

.section--accent {
  background: linear-gradient(135deg, var(--color-gold) 0%, #8b5a2b 100%);
  color: #fff;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.section__title--light {
  color: #fff;
}

.section__lead {
  text-align: center;
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.section__lead--light {
  color: rgba(255,255,255,.9);
  margin-bottom: 2rem;
}

/* Valeurs / Savoir-faire */
.values-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

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

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.value-card__icon {
  display: block;
  color: var(--color-gold);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.value-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.value-card__text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Catégories */
.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s, transform 0.3s;
  text-decoration: none;
  color: inherit;
}

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

.category-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #eee;
}

.category-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.category-card__content {
  padding: 1.5rem;
  background: var(--color-bg);
}

.category-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.category-card__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-gold);
}

.category-card:hover .category-card__link {
  text-decoration: underline;
}

/* Bouton light (sur fond accent) */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn--light {
  background: #fff;
  color: var(--color-text);
  border: none;
  cursor: pointer;
}

.btn--light:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,.2);
}

/* Avantages */
.advantages-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .advantages-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.advantage {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--color-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.advantage__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.advantage__title {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--color-text);
}

.advantage__text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* Newsletter */
.newsletter {
  background: var(--color-cream);
  padding: 2.5rem 1.5rem;
  border-top: 1px solid var(--color-border);
}

.newsletter__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 1.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 640px) {
  .newsletter__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }
}

.newsletter__text {
  text-align: center;
}

@media (min-width: 640px) {
  .newsletter__text {
    text-align: left;
    flex: 0 0 200px;
  }
}

.newsletter__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(184, 115, 51, 0.15);
  color: var(--color-btn);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.newsletter__lead {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.newsletter__desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.newsletter__form-wrap {
  flex: 1;
  width: 100%;
  max-width: 400px;
}

.newsletter__form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.newsletter__input {
  flex: 1;
  padding: 0.65rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.newsletter__input:focus {
  outline: none;
  border-color: var(--color-btn);
}

.newsletter__btn {
  padding: 0.65rem 1.25rem;
  background: var(--color-text);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
}

.newsletter__btn:hover {
  background: #333;
}

.newsletter__legal {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.newsletter__legal a {
  color: var(--color-text);
  text-decoration: underline;
}

.newsletter__cgu {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-decoration: underline;
}

.newsletter__cgu:hover {
  color: var(--color-btn);
}

/* Footer home — colonnes */
.site-footer--home {
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid var(--color-border);
  background: #2d2d2d;
  color: rgba(255, 255, 255, 0.9);
}

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

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 2.5rem;
  }
}

.footer__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__links li {
  margin-bottom: 0.4rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer__links a:hover {
  color: #fff;
}

.footer__col--contact .footer__logo {
  display: block;
  margin-bottom: 0.25rem;
}

.footer__col--contact .footer__logo .logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer__slogan {
  font-size: 0.75rem;
  color: var(--color-btn);
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}

.footer__phone {
  display: inline-block;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}

.footer__phone:hover {
  color: var(--color-gold);
}

.footer__hours {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.site-footer--home .footer__bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.site-footer--home .footer__legal {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Fallback hero (ancienne page accueil si utilisée ailleurs) */
.hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  background: linear-gradient(180deg, #faf9f7 0%, #fff 100%);
}

.hero .logo-img {
  height: 120px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero .tagline {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.hero .cta {
  display: inline-block;
  background: var(--color-btn);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s;
}

.hero .cta:hover {
  background: var(--color-btn-hover);
}

/* ----- Page Produits (identique maquette) ----- */
.products-page {
  padding-bottom: 5rem;
}

.product-section {
  padding: 0 0 2.5rem;
}

.product-section:first-of-type {
  padding-top: 0.5rem;
}

.product-section__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 1.25rem 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-gold);
  display: inline-block;
}

/* Barre de recherche */
.search-bar-wrap {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

.search-bar {
  display: flex;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
  background: #f3f4f6;
  border-radius: var(--radius);
  padding: 0.6rem 1rem;
  gap: 0.5rem;
}

.search-bar input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
}

.search-bar .clear-btn {
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
  color: var(--color-text-muted);
  font-size: 1.2rem;
  line-height: 1;
}

/* Résumé recherche */
.search-summary {
  text-align: center;
  padding: 0.75rem 1rem;
}

.search-summary .query {
  font-size: 1rem;
  color: var(--color-text);
}

.search-summary .count {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Bouton filtres */
.filters-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-text);
  cursor: pointer;
  font-family: inherit;
}

.filters-trigger svg {
  width: 18px;
  height: 18px;
}

/* Grille produits */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: var(--color-bg);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.product-card .image-wrap {
  position: relative;
  aspect-ratio: 1;
  background: #f5f5f5;
  overflow: hidden;
}

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

/* Carrousel sur la carte produit (ex. rideau jacquard) */
.product-card-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.product-card-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
  pointer-events: none;
}

.product-card-carousel__slide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.product-card-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: auto;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #1a1a1a;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.product-card-carousel__btn:hover {
  background: #fff;
  color: var(--color-btn);
}

.product-card-carousel__btn--prev {
  left: 0.35rem;
}

.product-card-carousel__btn--next {
  right: 0.35rem;
}

.product-card-carousel__dots {
  position: absolute;
  bottom: 0.35rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.35rem;
  pointer-events: auto;
}

.product-card-carousel__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.product-card-carousel__dot:hover,
.product-card-carousel__dot.is-active {
  background: rgba(255, 255, 255, 0.9);
}

/* Swatches + favori */
.swatches-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem 0;
  gap: 0.5rem;
}

.swatches {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.15);
  cursor: pointer;
  flex-shrink: 0;
}

.swatch.active {
  box-shadow: 0 0 0 2px var(--color-text);
}

.swatch-more {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-left: 0.15rem;
}

.fav-btn {
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.fav-btn svg {
  width: 22px;
  height: 22px;
}

.fav-btn:hover {
  color: #e11;
}

/* Infos produit */
.product-info {
  padding: 0.75rem 0.75rem 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.stock {
  font-size: 0.8rem;
  color: #059669;
  margin-bottom: 0.35rem;
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.rating .stars {
  color: var(--color-stars);
  letter-spacing: 0.05em;
}

/* Prix */
.price-block {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.discount-badge {
  background: var(--color-badge);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.price-current {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
}

.price-old {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

/* Bouton panier */
.add-cart {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--color-btn);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  margin-top: auto;
  transition: background 0.2s;
}

.add-cart:hover {
  background: var(--color-btn-hover);
}

/* FABs */
.fabs {
  position: fixed;
  bottom: 1.5rem;
  right: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 50;
}

.fab {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.fab-chat {
  background: var(--color-btn);
  color: #fff;
}

.fab-chat svg {
  width: 24px;
  height: 24px;
}

.fab-top {
  background: #fff;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.fab-top svg {
  width: 22px;
  height: 22px;
}

/* Footer (avec grid = style colonnes sombre) */
.site-footer:not(.site-footer--home) .footer__grid {
  display: none;
}

/* ----- Menu mobile (hamburger + drawer) ----- */
@media (max-width: 900px) {
  .header-menu-btn {
    display: flex;
  }
  .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .header-inner--single-row {
    flex-direction: column;
    align-items: stretch;
  }
  .header-inner--single-row .header-top {
    flex: none;
  }
  .header-inner--single-row .header-drop {
    flex: none;
    flex-direction: column;
    align-items: stretch;
    border-top: 1px solid var(--color-border);
  }
  .header-drop {
    display: none;
    flex-direction: column;
    padding: 1rem 0 0;
    border-top: 1px solid var(--color-border);
    gap: 1rem;
  }
  .header-drop .header-nav {
    border-top: none;
    padding-top: 0;
  }
  .header-drop .header-nav .nav-list {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0;
  }
  .header-drop .header-nav .nav-list a {
    display: block;
    padding: 0.6rem 0;
    font-size: 1rem;
  }
  .header-drop .header-search {
    max-width: none;
    min-width: 0;
  }
  .site-header .header-inner:not(.header-inner--single-row) .header-drop {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }
  body.menu-open .header-drop {
    display: flex;
  }
}

/* ----- Responsive global (petits écrans) ----- */
@media (max-width: 600px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .page-simple {
    padding: 1.5rem 0 2rem;
  }
  .page-simple__title {
    font-size: 1.5rem;
  }
  .hero-home__content {
    padding: 0.75rem 1rem 1rem;
    max-width: 100%;
  }
  .hero-home__title {
    font-size: clamp(1.25rem, 5vw, 1.6rem);
  }
  .hero-home__tagline {
    font-size: 0.8rem;
  }
  .hero-home__cta {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  .hero-home__bg--carousel .hero-carousel__btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .hero-home__bg--carousel .hero-carousel__btn--prev {
    left: 0.5rem;
  }
  .hero-home__bg--carousel .hero-carousel__btn--next {
    right: 0.5rem;
  }
  .newsletter {
    padding: 2rem 1rem;
  }
  .newsletter__inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .newsletter__form {
    flex-direction: column;
    max-width: 100%;
  }
  .newsletter__form-wrap {
    max-width: none;
  }
  .newsletter__btn {
    width: 100%;
  }
  .products-grid {
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }
  .product-section__title {
    margin-left: 1rem;
    margin-right: 1rem;
    font-size: 1.25rem;
  }
  .search-bar-wrap {
    padding: 0.75rem 1rem;
  }
  .site-header {
    padding: 0.5rem 1rem;
  }
  .site-footer--home {
    padding: 2rem 1rem 1rem;
  }
  .footer__grid {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
