/*
Theme Name: Edelys
Theme URI: https://edelyshandmade.com
Author: Léa
Author URI: https://edelyshandmade.com
Description: Thème WordPress sur mesure pour Edelys — Bijoux artisanaux en fleurs séchées & résine, faits main en France.
Version: 2.5.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: edelys
Tags: custom-menu, featured-images, blog, one-column
*/


/* ============================================
   EDELYS — Design Tokens
   Bijoux artisanaux en fleurs séchées & résine
   ============================================ */

:root {
  /* ── Couleurs ── */
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --light-grey: #F5F5F5;
  --mid-grey: #E0E0E0;
  --text-secondary: #6B6B6B;
  --text-primary: #1A1A1A;
  --black: #0D0D0D;

  --champagne: #C9A96E;
  --champagne-light: #D4BC8E;
  --champagne-dark: #B08F52;
  --champagne-10: rgba(201, 169, 110, 0.10);
  --champagne-20: rgba(201, 169, 110, 0.20);

  --violet: #7D6B8A;
  --violet-light: #9A8BA5;
  --violet-dark: #5E4F6B;
  --violet-10: rgba(125, 107, 138, 0.10);

  /* ── Typographie ── */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;

  --fs-xs: 0.75rem;    /* 12px */
  --fs-sm: 0.875rem;   /* 14px */
  --fs-base: 1rem;     /* 16px */
  --fs-md: 1.125rem;   /* 18px */
  --fs-lg: 1.25rem;    /* 20px */
  --fs-xl: 1.5rem;     /* 24px */
  --fs-2xl: 2rem;      /* 32px */
  --fs-3xl: 2.5rem;    /* 40px */
  --fs-4xl: 3.25rem;   /* 52px */
  --fs-hero: 4rem;     /* 64px */

  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;

  --lh-tight: 1.15;
  --lh-snug: 1.3;
  --lh-normal: 1.6;
  --lh-relaxed: 1.8;

  --ls-tight: -0.02em;
  --ls-normal: 0;
  --ls-wide: 0.08em;
  --ls-wider: 0.15em;
  --ls-widest: 0.25em;

  /* ── Spacing ── */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;
  --space-section: clamp(4rem, 8vw, 8rem);

  /* ── Layout ── */
  --max-width: 1280px;
  --max-width-narrow: 900px;
  --max-width-text: 680px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --header-height: 80px;

  /* ── Borders & Radius ── */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --border-thin: 1px solid var(--mid-grey);
  --border-champagne: 1px solid var(--champagne);

  /* ── Shadows ── */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.10);
  --shadow-product: 0 2px 20px rgba(0, 0, 0, 0.06);

  /* ── Transitions ── */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 600ms;
}

@media (max-width: 768px) {
  :root {
    --fs-hero: 2.5rem;
    --fs-4xl: 2.25rem;
    --fs-3xl: 1.75rem;
    --header-height: 64px;
  }
}

/* ── Modern CSS Reset ── */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-height);
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  line-height: var(--lh-tight);
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

input, textarea, select {
  font: inherit;
}

::selection {
  background: var(--champagne-20);
  color: var(--text-primary);
}

/* ============================================
   EDELYS — Global Styles
   ============================================ */

/* ── Layout ── */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

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

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

/* ── Typography ── */

.heading-1 {
  font-size: var(--fs-hero);
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-tight);
}

.heading-2 {
  font-size: var(--fs-4xl);
  letter-spacing: var(--ls-tight);
}

.heading-3 {
  font-size: var(--fs-2xl);
  letter-spacing: var(--ls-tight);
}

.heading-4 {
  font-size: var(--fs-xl);
}

.overline {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--champagne);
}

.body-lg {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--text-secondary);
}

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

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.5rem;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--duration-normal) var(--ease-out);
  white-space: nowrap;
}

.btn--primary {
  background: var(--champagne);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--champagne-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--text-primary);
}

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

.btn--dark {
  background: var(--black);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--champagne);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--amazon {
  background: var(--black);
  color: var(--white);
  padding: 1rem 2.5rem;
  font-size: var(--fs-sm);
}

.btn--amazon:hover {
  background: var(--champagne-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--amazon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ── Section Headers ── */

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header .overline {
  margin-bottom: var(--space-xs);
  display: block;
}

.section-header .heading-2 {
  margin-bottom: var(--space-sm);
}

.section-header .body-lg {
  max-width: var(--max-width-text);
  margin: 0 auto;
}

/* ── Divider ── */

.divider {
  width: 60px;
  height: 1px;
  background: var(--champagne);
  margin: var(--space-md) auto;
}

/* ── Reveal Animations ── */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }
.reveal-delay-5 { transition-delay: 500ms; }
.reveal-delay-6 { transition-delay: 600ms; }

/* ============================================
   EDELYS — Header & Navigation
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow var(--duration-normal) var(--ease-out);
}

.header.scrolled {
  box-shadow: 0 1px 0 var(--champagne-20);
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Logo ── */

.header__logo {
  position: absolute;
  left: var(--gutter);
}

.header__logo-img {
  height: 44px;
  width: auto;
  transition: opacity var(--duration-fast);
}

.header__logo:hover img {
  opacity: 0.85;
}

/* ── Navigation ── */

.nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav__link {
  position: relative;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--text-primary);
  transition: color var(--duration-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 1px;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration-normal) var(--ease-out);
}

.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__link:hover {
  color: var(--champagne-dark);
}

.nav__link.active {
  color: var(--champagne-dark);
}

/* ── Social Icons ── */

.header__social {
  position: absolute;
  right: var(--gutter);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.header__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--text-secondary);
  transition: color var(--duration-fast), transform var(--duration-fast);
}

.header__social a:hover {
  color: var(--champagne);
  transform: translateY(-1px);
}

.header__social svg {
  width: 18px;
  height: 18px;
}

/* ── Mobile Menu Toggle ── */

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text-primary);
  transition: all var(--duration-normal) var(--ease-out);
  transform-origin: center;
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* ── Mobile ── */

@media (max-width: 900px) {
  .header__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .menu-toggle {
    display: flex;
    position: absolute;
    right: var(--gutter);
  }

  .header__social {
    display: none;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: var(--space-xl) var(--gutter);
    gap: 0;
    background: #FFFFFF;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    transition: opacity var(--duration-normal) var(--ease-out),
                visibility var(--duration-normal) var(--ease-out);
  }

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

  .nav__link {
    font-size: var(--fs-lg);
    padding: var(--space-sm) 0;
    letter-spacing: var(--ls-wider);
  }

  .nav__link::after {
    left: 0;
    right: 0;
  }

  .nav__mobile-social {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: var(--border-thin);
  }

  .nav__mobile-social a {
    color: var(--text-secondary);
    transition: color var(--duration-fast);
  }

  .nav__mobile-social a:hover {
    color: var(--champagne);
  }

  .nav__mobile-social svg {
    width: 22px;
    height: 22px;
  }
}

@media (min-width: 901px) {
  .nav__mobile-social {
    display: none;
  }
}

/* ============================================
   EDELYS — Hero Section
   ============================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 1000px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: -15% 0 0 0;
  z-index: 0;
  will-change: transform;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 60%;
}

/* Image mobile : masquée par défaut */
.hero__image-mobile {
  display: none;
}

/* Overlay dégradé pour lisibilité du texte */
.hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 13, 13, 0.55) 0%,
    rgba(13, 13, 13, 0.25) 50%,
    rgba(13, 13, 13, 0.10) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  padding-top: var(--header-height);
  color: var(--white);
}

.hero__overline {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--champagne-light);
  margin-bottom: var(--space-md);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s var(--ease-out) 0.3s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: var(--fw-light);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--white);
  max-width: 600px;
  margin-bottom: var(--space-sm);
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s var(--ease-out) 0.5s forwards;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--fs-md);
  font-weight: var(--fw-light);
  line-height: var(--lh-normal);
  color: rgba(255, 255, 255, 0.85);
  max-width: 450px;
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s var(--ease-out) 0.7s forwards;
}

.hero__cta {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s var(--ease-out) 0.9s forwards;
}

/* ── Scroll Indicator ── */

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  animation: heroFadeUp 0.8s var(--ease-out) 1.2s forwards;
  opacity: 0;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s var(--ease-in-out) infinite;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.2); }
}

/* ── Responsive ── */

@media (max-width: 768px) {
  .hero {
    height: 100vh;
    min-height: 550px;
    max-height: 900px;
  }

  /* Swap images: hide desktop, show mobile */
  .hero__image-desktop {
    display: none;
  }

  .hero__image-mobile {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .hero__image {
    inset: -10% 0 0 0;
  }

  .hero__content {
    padding-top: calc(var(--header-height) - 10px);
  }

  .hero__title {
    max-width: 100%;
    font-size: var(--fs-2xl);
  }

  .hero__subtitle {
    font-size: var(--fs-sm);
    max-width: 100%;
  }

  .hero__cta {
    margin-top: var(--space-3xl);
  }

  .hero__scroll {
    display: none;
  }
}

/* ============================================
   EDELYS — Product Cards & Grid
   ============================================ */

/* ── Product Grid ── */

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

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

/* ── Product Card ── */

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card__image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--light-grey);
  margin-bottom: var(--space-sm);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.product-card:hover .product-card__image img {
  transform: scale(1.04);
}

/* Badge (best-seller, etc.) */
.product-card__badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  padding: 0.35rem 0.85rem;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  z-index: 1;
}

/* Quick action — hidden overlay, replaced by text under image */
.product-card__action {
  display: none;
}

.product-card:hover .product-card__action {
  display: none;
}

/* Card Info */
.product-card__info {
  text-align: center;
}

.product-card__info::before {
  content: 'Voir le détail';
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--champagne-dark);
  margin-bottom: 0.5rem;
  transition: color var(--duration-fast);
}

.product-card:hover .product-card__info::before {
  color: var(--champagne);
}

.product-card__name {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-regular);
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  transition: color var(--duration-fast);
}

.product-card:hover .product-card__name {
  color: var(--champagne-dark);
}

.product-card__subtitle {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.product-card__price {
  font-family: var(--font-body);
  font-size: var(--fs-md);
  font-weight: var(--fw-medium);
  color: var(--text-primary);
  letter-spacing: var(--ls-wide);
}

/* ── Responsive ── */

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
}

@media (max-width: 768px) {
  .products-grid--featured {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 550px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .products-grid--featured {
    grid-template-columns: 1fr;
  }

  .product-card__name {
    font-size: var(--fs-base);
  }

  .products-grid:not(.products-grid--featured) .product-card__badge {
    font-size: 0.6rem;
    padding: 0.2rem 0.5rem;
    top: var(--space-xs);
    left: var(--space-xs);
  }
}

/* ============================================
   EDELYS — Page Sections
   ============================================ */

/* ── Reassurance Bar ── */

.reassurance {
  background: var(--black);
  color: var(--white);
  padding: var(--space-md) 0;
}

.reassurance__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.reassurance__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-light);
  letter-spacing: var(--ls-wide);
}

.reassurance__icon {
  width: 20px;
  height: 20px;
  color: var(--champagne);
  flex-shrink: 0;
}

/* ── Mother's Day Section ── */

.mothers-day {
  position: relative;
  overflow: hidden;
}

.mothers-day::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--champagne-10);
  pointer-events: none;
}

/* ── Savoir-faire Section ── */

.savoir-faire__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.savoir-faire__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.savoir-faire__images img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.savoir-faire__images img:first-child {
  margin-top: var(--space-lg);
}

.savoir-faire__text {
  max-width: 480px;
}

.savoir-faire__text .overline {
  margin-bottom: var(--space-sm);
  display: block;
}

.savoir-faire__text .heading-2 {
  margin-bottom: var(--space-md);
}

.savoir-faire__text p {
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-sm);
}

.savoir-faire__text p:last-of-type {
  margin-bottom: var(--space-lg);
}

/* ── Newsletter / CTA Banner ── */

.cta-banner {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
}

.cta-banner .heading-3 {
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.cta-banner .body-lg {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-lg);
}

/* ── Responsive ── */

@media (max-width: 768px) {
  .cta-banner .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .reassurance__inner {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .savoir-faire__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .savoir-faire__text {
    order: 1;
    max-width: 100%;
    text-align: center;
  }

  .savoir-faire__text .divider {
    margin-left: auto;
    margin-right: auto;
  }

  .savoir-faire__text .btn {
    display: block;
  }

  .savoir-faire__images {
    order: 2;
  }
}

/* ============================================
   EDELYS — Footer
   ============================================ */

.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-2xl) 0 var(--space-lg);
}

/* ── Top: logo + social ── */

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  height: 120px;
  width: 120px;
  border-radius: 50%;
}

/* ── 4 columns grid ── */

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  align-items: start;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.footer__inner--mobile {
  display: none;
}

.footer__desc {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: rgba(255, 255, 255, 0.5);
}

/* ── Footer Columns ── */

.footer__column-title {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: var(--space-md);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links a {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--duration-fast);
}

.footer__links a:hover {
  color: var(--champagne-light);
}

/* ── Social in Footer ── */

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--duration-normal) var(--ease-out);
}

.footer__social a:hover {
  color: var(--champagne);
  border-color: var(--champagne);
  transform: translateY(-2px);
}

.footer__social svg {
  width: 16px;
  height: 16px;
}

/* ── Bottom Bar ── */

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.35);
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-md);
}

.footer__bottom-links a {
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--duration-fast);
}

.footer__bottom-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ── Responsive ── */

@media (max-width: 900px) {
  .footer__top {
    flex-direction: column;
    gap: var(--space-md);
  }

  .footer {
    padding-top: var(--space-md);
  }

  .footer__inner--desktop {
    display: none;
  }

  .footer__inner--mobile {
    display: flex;
    gap: 0;
    align-items: stretch;
    justify-content: center;
    margin-top: var(--space-md);
  }

  .footer__mobile-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
    padding-right: var(--space-md);
  }

  .footer__logo--mobile {
    border-radius: 50%;
    margin-bottom: var(--space-xs);
  }

  .footer__social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,.7);
    font-size: var(--fs-body-sm);
    text-decoration: none;
    transition: color var(--duration-normal) var(--ease-out);
  }

  .footer__social-link:hover {
    color: var(--champagne);
  }

  .footer__social-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  .footer__mobile-separator {
    width: 1px;
    background: var(--champagne);
    opacity: 0.4;
    align-self: stretch;
  }

  .footer__mobile-right {
    padding-left: var(--space-md);
  }

  .footer__mobile-right .footer__links {
    align-items: flex-start;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

/* ============================================
   EDELYS — Cookie Banner (RGPD)
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.12);
  padding: var(--space-md) var(--gutter);
  transform: translateY(100%);
  transition: transform var(--duration-normal) var(--ease-out);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.cookie-banner__text {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: var(--lh-normal);
  flex: 1;
}

.cookie-banner__text a {
  color: var(--champagne-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 0.6rem 1.5rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast);
  cursor: pointer;
}

.cookie-banner__btn--accept {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}

.cookie-banner__btn--accept:hover {
  background: var(--champagne-dark);
  border-color: var(--champagne-dark);
}

.cookie-banner__btn--refuse {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--mid-grey);
}

.cookie-banner__btn--refuse:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
}

@media (max-width: 600px) {
  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__btn {
    flex: 1;
  }
}

/* ============================================
   EDELYS — Product Detail Page
   ============================================ */

.product-detail {
  padding-top: calc(var(--header-height) + var(--space-xl));
  padding-bottom: var(--space-section);
}

.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

/* ── Gallery ── */

.product-gallery {
  position: sticky;
  top: calc(var(--header-height) + var(--space-lg));
}

.product-gallery__main {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--light-grey);
  margin-bottom: var(--space-sm);
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
  cursor: zoom-in;
}

.product-gallery__main:hover img {
  transform: scale(1.05);
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 0.5rem;
}

.product-gallery__thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity var(--duration-fast);
  background: var(--light-grey);
}

.product-gallery__thumb:hover,
.product-gallery__thumb.active {
  opacity: 1;
}

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

/* ── Product Info ── */

.product-info {
  padding-top: var(--space-sm);
}

.product-info__breadcrumb {
  font-size: var(--fs-xs);
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  letter-spacing: var(--ls-wide);
}

.product-info__breadcrumb a {
  transition: color var(--duration-fast);
}

.product-info__breadcrumb a:hover {
  color: var(--champagne);
}

.product-info__breadcrumb span {
  margin: 0 0.5rem;
  color: var(--mid-grey);
}

.product-info__badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  background: var(--champagne-10);
  color: var(--champagne-dark);
  margin-bottom: var(--space-sm);
}

.product-info__name {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-regular);
  margin-bottom: var(--space-xs);
}

.product-info__subtitle {
  font-size: var(--fs-md);
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.product-info__price {
  font-family: var(--font-body);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-medium);
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  letter-spacing: var(--ls-wide);
}

.product-info__description {
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: var(--border-thin);
}

.product-info__description p {
  margin-bottom: var(--space-sm);
}

/* Features list */
.product-info__features {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: var(--border-thin);
}

.product-info__features h4 {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.product-info__features ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.product-info__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

.product-info__features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--champagne);
  flex-shrink: 0;
}

/* CTA */
.product-info__cta {
  margin-bottom: var(--space-lg);
}

.product-info__cta .btn {
  width: 100%;
  padding: 1.1rem 2rem;
  font-size: var(--fs-base);
}

.product-info__amazon-note {
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

/* ── Related Products ── */

.related-products {
  padding: var(--space-section) 0;
  border-top: var(--border-thin);
}

/* ── Responsive ── */

@media (max-width: 900px) {
  .product-detail__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .product-gallery {
    position: static;
  }

  .product-info__name {
    font-size: var(--fs-2xl);
  }

  .product-info .btn--amazon {
    display: block;
    text-align: center;
  }
}

/* ============================================
   EDELYS — Interior Pages (Boutique, Blog, etc.)
   ============================================ */

/* ── Page Header (banner on interior pages) ── */

.page-header {
  padding-top: calc(var(--header-height) + var(--space-2xl));
  padding-bottom: var(--space-xl);
  text-align: center;
  background: var(--light-grey);
}

.page-header .overline {
  margin-bottom: var(--space-xs);
  display: block;
}

.page-header .heading-1 {
  font-size: var(--fs-4xl);
  margin-bottom: var(--space-sm);
}

.page-header .body-lg {
  max-width: var(--max-width-text);
  margin: 0 auto;
}

/* ── Boutique Page ── */

.boutique-grid {
  padding: var(--space-section) 0;
}

/* ── Mon Univers ── */

.univers-story {
  padding: var(--space-section) 0;
}

.univers-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.univers-story__image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

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

.univers-story__text .overline {
  display: block;
  margin-bottom: var(--space-sm);
}

.univers-story__text .heading-2 {
  margin-bottom: var(--space-md);
}

.univers-story__text p {
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-sm);
}

/* ── Pourquoi Amazon ── */

.pourquoi-amazon__content {
  max-width: 900px;
  margin: 0 auto;
}

.pourquoi-amazon__content .body-lg {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.pourquoi-amazon__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.pourquoi-amazon__item {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  background: var(--blanc);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.pourquoi-amazon__icon {
  width: 40px;
  height: 40px;
  color: var(--dore);
  margin: 0 auto var(--space-sm);
  display: block;
}

.pourquoi-amazon__item h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-body-lg);
  margin-bottom: var(--space-xs);
  color: var(--noir);
}

.pourquoi-amazon__item p {
  font-size: var(--fs-body-sm);
  color: var(--gris);
  line-height: var(--lh-relaxed);
}

.univers-gallery {
  padding: var(--space-lg) 0 var(--space-section);
}

.gallery-zoomable {
  cursor: pointer;
}

/* ── Lightbox ── */

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox__img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  padding: var(--space-xs);
}

.univers-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.univers-gallery__grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.univers-gallery__grid img:hover {
  transform: scale(1.03);
}

/* ── Blog Page — Listing ── */

.blog-intro {
  text-align: center;
  padding: var(--space-xl) 0 var(--space-section);
}

.blog-intro p {
  max-width: var(--max-width-text);
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
}

.blog-listing {
  padding: var(--space-xl) 0 var(--space-section);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-xl);
}

.blog-card {
  border: var(--border-thin);
  overflow: hidden;
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

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

.blog-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__body {
  padding: var(--space-lg);
}

.blog-card__category {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--champagne);
  margin-bottom: var(--space-xs);
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-medium);
  line-height: var(--lh-snug);
  margin-bottom: var(--space-sm);
}

.blog-card__title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--duration-normal) var(--ease-out);
}

.blog-card__title a:hover {
  color: var(--champagne);
}

.blog-card__excerpt {
  color: var(--text-secondary);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-md);
}

.blog-card__meta {
  display: flex;
  gap: var(--space-md);
  font-size: var(--fs-xs);
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.blog-card__btn {
  font-size: var(--fs-sm);
}


/* ── Blog Article — Breadcrumb ── */

.blog-breadcrumb {
  padding-top: calc(var(--header-height) + var(--space-md));
  padding-bottom: var(--space-sm);
  background: var(--light-grey);
}

.blog-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  color: var(--text-secondary);
}

.blog-breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--duration-normal) var(--ease-out);
}

.blog-breadcrumb a:hover {
  color: var(--champagne);
}

.blog-breadcrumb span[aria-current] {
  color: var(--text-primary);
}


/* ── Blog Article — Hero ── */

.blog-hero {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.blog-hero__image {
  position: absolute;
  inset: 0;
}

.blog-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.blog-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.75) 0%, rgba(13, 13, 13, 0.2) 100%);
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-2xl);
}

.blog-hero__category {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--champagne-light);
  margin-bottom: var(--space-xs);
}

.blog-hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-regular);
  color: var(--white);
  line-height: var(--lh-tight);
  max-width: 720px;
  margin-bottom: var(--space-md);
}

.blog-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.8);
}

.blog-hero__meta-sep {
  opacity: 0.4;
}


/* ── Blog Article — Body ── */

.blog-article {
  padding: var(--space-2xl) 0 var(--space-section);
  overflow-x: hidden;
}

.blog-article__body {
  max-width: 720px;
  margin: 0 auto;
  overflow-x: hidden;
}

.blog-article__intro {
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.blog-article__body > p {
  color: var(--text-secondary);
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
}

.blog-article__body strong {
  color: var(--text-primary);
  font-weight: var(--fw-medium);
}

/* ── Blog Article — Headings ── */

.blog-article__body h2 {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-regular);
  color: var(--text-primary);
  line-height: var(--lh-tight);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: none;
}


.blog-article__body h3 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-regular);
  color: var(--champagne-dark);
  line-height: var(--lh-tight);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-xs);
}

.blog-article__body h4 {
  font-family: var(--font-body);
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xs);
}

/* ── Blog Article — Lists ── */

.blog-article__body ul,
.blog-article__body ol {
  color: var(--text-secondary);
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
  padding-left: 1.5rem;
}

.blog-article__body li {
  margin-bottom: var(--space-xs);
}

.blog-article__body ul li::marker {
  color: var(--champagne);
}

.blog-article__body ol li::marker {
  color: var(--champagne-dark);
  font-weight: var(--fw-semibold);
}


/* ── Blog Article — Product Cards ── */

.blog-product {
  position: relative;
  margin: var(--space-xl) 0;
}


.blog-product__header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  justify-content: center;
}

.blog-product__number {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-regular);
  color: var(--champagne);
  line-height: 1;
  flex-shrink: 0;
  padding-right: var(--space-sm);
  border-right: 2px solid var(--champagne);
}

.blog-product__header .blog-product__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-regular);
  line-height: var(--lh-snug);
  color: var(--text-primary);
  margin: 0;
  padding: 0;
  border: none;
  text-align: left;
}

.blog-product__content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.blog-product__image {
  overflow: hidden;
  border-radius: 4px;
}

.blog-product__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--duration-slow) var(--ease-out);
}

.blog-product__image:hover img {
  transform: scale(1.03);
}

.blog-product__text p {
  color: var(--text-secondary);
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-sm);
}

.blog-product__text p strong {
  color: var(--text-primary);
}

.blog-product__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}


/* ── Blog Article — Conclusion ── */

.blog-article__conclusion {
  margin-top: var(--space-2xl);
  padding: var(--space-xl);
  background: var(--light-grey);
  border-left: 3px solid var(--champagne);
}

.blog-article__conclusion h2 {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-regular);
  line-height: var(--lh-snug);
  margin-top: 0;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.blog-article__conclusion p {
  color: var(--text-secondary);
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-sm);
}

.blog-article__cta {
  margin-top: var(--space-lg);
  text-align: center;
}

.blog-article__cta .btn {
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}


/* ── Blog Article — Author ── */

.blog-article__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--mid-grey);
}

.blog-article__author-name {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  color: var(--text-primary);
}

.blog-article__author-date {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}


/* ── Blog Article — Footer ── */

.blog-article__footer {
  margin-top: var(--space-xl);
  text-align: center;
}


/* ── Blog Responsive ── */

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-hero {
    height: 320px;
  }

  .blog-hero__title {
    font-size: var(--fs-2xl);
  }

  .blog-hero__meta {
    font-size: var(--fs-xs);
  }

  .blog-product__content {
    grid-template-columns: 1fr;
  }

  .blog-product__image {
    max-width: 280px;
    margin: 0 auto;
  }

  .blog-product__header .blog-product__title {
    font-size: var(--fs-lg);
  }

  .blog-article__conclusion {
    padding: var(--space-sm) var(--space-md) var(--space-md);
    margin-top: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .blog-hero {
    height: 260px;
  }

  .blog-hero__title {
    font-size: var(--fs-xl);
  }

  .blog-product__actions {
    flex-direction: column;
  }

  .blog-product__actions .btn {
    text-align: center;
  }
}

/* ── Legal Pages (Mentions légales, Politique de confidentialité) ── */

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: var(--space-xl) 0 var(--space-section);
}

.legal-section {
  margin-bottom: var(--space-2xl);
}

.legal-section h2 {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-regular);
  color: var(--text-primary);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--champagne);
}

.legal-section h3 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-regular);
  color: var(--champagne-dark);
  line-height: var(--lh-tight);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-section p {
  color: var(--text-secondary);
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-sm);
}

.legal-section p strong {
  color: var(--text-primary);
  font-weight: var(--fw-medium);
}

.legal-section a {
  color: var(--champagne-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--duration-normal) var(--ease-out);
}

.legal-section a:hover {
  color: var(--champagne);
}

.legal-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: var(--space-md);
}

.legal-section ul li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--text-secondary);
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-xs);
}

.legal-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--champagne);
}

.legal-section ul li strong {
  color: var(--text-primary);
  font-weight: var(--fw-medium);
}

.legal-date {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--mid-grey);
  color: var(--text-secondary);
  font-size: var(--fs-sm);
  font-style: italic;
}

@media (max-width: 768px) {
  .legal-content {
    padding: var(--space-lg) 0 var(--space-xl);
  }

  .legal-section h2 {
    font-size: var(--fs-xl);
  }

  .legal-section h3 {
    font-size: var(--fs-lg);
  }
}


/* ── Contact Page ── */

.contact-content {
  padding: var(--space-section) 0;
  text-align: center;
}

.contact-content p {
  max-width: var(--max-width-text);
  margin: 0 auto var(--space-lg);
  color: var(--text-secondary);
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
}

.contact-socials {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.contact-social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-lg);
  border: var(--border-thin);
  transition: all var(--duration-normal) var(--ease-out);
  min-width: 200px;
}

.contact-social-card:hover {
  border-color: var(--champagne);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-social-card svg {
  width: 32px;
  height: 32px;
  color: var(--champagne);
}

.contact-social-card__name {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
}

.contact-social-card__handle {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

/* ── Responsive ── */

@media (max-width: 768px) {
  .univers-story__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .univers-story__text .btn {
    display: block;
    text-align: center;
  }

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

  .pourquoi-amazon__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .contact-socials {
    flex-direction: column;
    align-items: center;
  }

  .contact-social-card {
    width: 100%;
    max-width: 320px;
  }
}
