/* @font-face {
  font-family: 'IvyPresto Display';
  src: url('fonts/IvyPresto-Display.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
} */

/* =====================================================
   STYLES ÉLÉGANTS — v5 (Parallax + hero plus visible)
   ===================================================== */

:root {
  --clr-primary: #C7A76B;       /* or doux du flyer */
  --clr-primary-dark: #A88950;  /* or plus profond */
  --clr-dark: #2D3032;          /* gris anthracite */
  --clr-light: #F7F1EA;         /* ivoire papier */
  --clr-muted: #8C8178;         /* taupe doux */

  --max-width: 1200px;
  --radius: 0rem;
  --transition: .3s ease;

  --nav-h: 72px;
  --nav-bg: rgba(247, 241, 234, 0.72);
  --nav-bg-solid: #F7F1EA;
  --nav-shadow: 0 6px 24px rgba(45, 48, 50, 0.08);
}



/* ===== Reset minimaliste ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Work Sans', sans-serif;
  background: var(--clr-light);
  color: var(--clr-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll,
html.no-scroll {
  overflow: hidden !important;
  height: 100vh;
  position: fixed;
  width: 100%;
}

body.no-scroll {
  touch-action: none;
  -ms-touch-action: none;
  overscroll-behavior: none;
}




/* === NAVBAR ================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: var(--nav-bg);
  transition: background .3s, box-shadow .3s;
  z-index: 10000;
}

/* Transition de la navbar */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Masquer la navbar (scroll vers le bas) */
.navbar-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.navbar.scrolled {
  background: var(--nav-bg-solid);
  box-shadow: var(--nav-shadow);
}

.nav-container {
  max-width: 1180px;
  margin: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*   padding: 1rem 1rem;
  ← plus d’espace en haut/bas et sur les côtés */
}


.logo {
  display:flex;
  align-items:center;
  height:100%;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  letter-spacing: .5px;
}

.logo-icon {
  height:150px;
  width:auto;
  padding-top:15px;
}

.nav-links a,
.mobile-menu a,
.burger span {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
}

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




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

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

.cart-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}


.cart-icon {
  width: 24px;
  height: 24px;
}

.navbar {
  background: rgba(247, 241, 234, 0.82);
  border-bottom: 1px solid rgba(199, 167, 107, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar.scrolled {
  background: rgba(247, 241, 234, 0.96);
  box-shadow: 0 8px 28px rgba(45, 48, 50, 0.08);
}

.nav-links a {
  color: var(--clr-dark);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links a::after {
  height: 1px;
  bottom: -8px;
  background: var(--clr-primary);
}

.lang-btn {
  color: var(--clr-muted);
  letter-spacing: 0.08em;
}

.lang-btn.active {
  color: var(--clr-primary-dark);
  text-decoration: none;
}

.cart-badge {
  background: var(--clr-primary);
}




/* --- Burger ----------------------------------- */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: none;
  background: none;
  cursor: pointer;
  z-index:12000;
  position:relative;

}

.burger span {
  width: 28px;
  height: 3px;
  background: #222;
  border-radius: 2px;
  transition: .3s;
}

.burger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.burger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


/* --- Mobile menu ------------------------------ */
/* Menu mobile en slide gauche */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 80%;
  max-width: 300px;
  background-color: var(--clr-light);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 9999;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.show {
  transform: translateX(0);
}

/* Bouton pour fermer */
.close-menu {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.4); /* semi-transparent noir */
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-overlay.show {
  opacity: 1;
  pointer-events: all;
}


.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  text-align:center;
}

.mobile-menu a {
  color: #222;
  text-decoration: none;
  font-weight: 600;
}

@media(max-width:880px) {
  .nav-links {
    display: none;
  }

  .burger {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 11000;
  }


  .burger span {
    width: 28px;
    height: 3px;
    background: #222;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
}


@media (max-width: 880px) {
  .nav-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
    font-weight: 700;
    z-index: 1000;
  }

  .burger {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 12000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
  }

  .burger span {
    display: block;
    height: 3px;
    width: 100%;
    background: black;
    border-radius: 2px;
  }

  .cart-container {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 11000;
  }
}



.close-menu {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 12000;
}


/* ===== Typographie générale ===== */
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-dark);
}

h1 {
  font-size: clamp(3rem, 7vw, 4.6rem);
  letter-spacing: .4px;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.4rem;
}

p {
  margin-bottom: 1.2rem;
  max-width: 70ch;
}

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

a:hover,
a:focus {
  color: var(--clr-primary);
}

/* ===== Containers & Sections ===== */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.container {
  max-width: 1800px;
  /* ← augmente la largeur max du contenu */
  margin: 0 auto;
  padding: 0 2rem;
}


.section {
  padding-block: 6rem;
}

.section-title {
  align-items: center;
  justify-content: center;
  text-align: center;  
  position: relative;
  margin-top: 80px;
}

.section-title::after {
  content: '';
  width: 5rem;
  height: 3px;
  display: block;
  background: var(--clr-primary);
  margin: 1.25rem auto 0;
}

/* ===== Boutons ===== */
.btn {
  display: inline-block;
  padding: 1rem 2.6rem;
  background: var(--clr-primary);
  color: var(--clr-light);
  border-radius: var(--radius);
  font-weight: 500;
  letter-spacing: .6px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .07);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn:hover,
.btn:focus {
  background: var(--clr-primary-dark);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
}

/* ===== Header / Hero ===== */
header {
  position: relative;
  height: 80vh;
  padding-top: 4rem;
  /* nav height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--clr-light);
  isolation: isolate;
}

/* Dark overlay – moins opaque pour rendre l'image plus visible */
header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(19, 19, 19, .20);
  /* 20% opacity */
}

/* Header text */
.header-content {
  padding-inline: 1.75rem;
  animation: fadeInDown .9s cubic-bezier(.23, 1, .32, 1) .2s both;
}

.header-content p {
  color: var(--clr-light);
  font-weight: 300;
}

#app {
  padding-top: var(--nav-h);
  /* si tu veux garder un décalage contrôlé */
}


/* === HERO Image statique élégante ========================== */
.page-header {
  background-size: contain;
  /* ← au lieu de 'cover' */
  background-repeat: no-repeat;
  background-position: center;
  background-color: #eee;
  /* couleur de fond derrière l’image */
  height: 50vh;
  /* optionnel : réduire légèrement */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}


/* === HERO Image statique élégante ========================== */
.hero-alt {
  margin-top:-5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 95vh; /* ✅ hauteur réduite */
  background: linear-gradient(to right, #faf6f3 0%, #f0e2d2 40%, #e5d7f3 100%);
  gap: 1rem;
  padding: 1rem;
  padding-top:10rem;
  text-align: center;
}

.hero-img-block {
  flex: 0 0 45vw; /* ✅ largeur fixe en vw */
  display: flex;
  max-width:600px;
  max-height:70vh;
  justify-content: center;
  align-items: center;
}

.hero-img-block img {
  max-width:100%;
  height: auto;
  object-fit: contain;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25); /* ✅ ombre plus grande et plus dense */
  /* animation: imageEntrance 1.5s ease-out forwards;
  transition: transform 0.3s ease-out; */
}

.hero-text-block {
  flex: 0 0 40vw; /* ✅ largeur fixe en vw */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* ✅ centré horizontalement */
  text-align: center;
}
 


.hero-text-block .hero-title {
  font-size: 2.8rem;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 1rem;
  color: #222;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.6s;  
}

.hero-text-block .hero-subtitle {
  font-size: 1.2rem;
  font-family: "Work Sans", sans-serif;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  color: #444;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.9s;  
}

.hero-text-block .hero-button {
  padding: 0.8rem 2rem;
  background-color: #000;
  color: #fff;
  font-weight: 500;
  border-radius: 2rem;
  text-decoration: none;
  width: auto;
  transition: background-color 0.3s ease;
  opacity: 0;
  animation: fadeInUp 2s ease forwards;
  animation-delay: 1.2s;

}

.hero-text-block .hero-button:hover {
  background-color: #333;
}


.page-title {
  position: absolute;
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw+1rem, 4rem);
  letter-spacing: .04em;
  text-align: center;
  z-index: 2;
}


.hero-content {
  position: absolute;
  top: 60%;
  right: 15%;
  transform: translateY(-50%);
  max-width: 480px;
  text-align: right;
  z-index: 2;
  padding-top: 4rem;
}




.hero-title span {
  display: block;
  transform: translateY(100%);
  animation: slideUp 1s forwards;
}

.hero-title span:nth-child(2) {
  animation-delay: .25s;
}

.hero-tag {
  font-family: 'Work Sans', sans-serif;
  font-weight: 300;
  letter-spacing: .15em;
  margin-bottom: 2rem;
  opacity: 0;
  color: var(--clr-muted);
  animation: fadeIn .8s .8s forwards;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-cta {
  padding: 1rem 2.4rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 2rem;
  transition: .3s;
}

.hero-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .25);
}

@media (max-width: 1024px) {
  .hero-alt {
    flex-direction: column;
    padding: 3rem 2rem;
    padding-bottom:2rem;
    height: auto;
    gap: 2rem;
  }

@media (max-width: 600px) {
  .hero-alt {
    padding-top: 6rem;
  }
}


  .hero-img-block {
    max-width: 80%;
    padding-left: 0;
    justify-content: center;
    height: auto;
  }

  .hero-img-block img {
    height: auto;
    width: 100%;
    max-width: 400px;
  }

  .hero-text-block {
    max-width: 90%;
    text-align: center;
    padding: 0;
    margin: 0 auto;
  }

  .hero-text-block .hero-title {
    font-size: 2.2rem;
  }

  .hero-text-block .hero-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .hero-text-block .hero-title {
    font-size: 1.8rem;
  }

  .hero-text-block .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-text-block .hero-button {
    font-size: 0.95rem;
    padding: 0.6rem 1.6rem;
  }
}




/* === HOME HERO — version plus affiche / vernissage === */

/* === HERO — fond structuré inspiré affiche === */

/* === HERO — fond avec taches de peinture subtiles === */


/* =====================================================
   HERO ACCUEIL — fond PNG + mise en page premium
   ===================================================== */

/* =====================================================
   HERO — fond PNG propre (version finale)
   ===================================================== */

.hero-home-new {
  position: relative;
  overflow: hidden;

  min-height: calc(100vh - var(--nav-h));
  margin-top: -3rem;

  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 7rem);

}

.hero-alt.hero-home-new {
  background-image: url("images/Hero-fond.png") !important;
  background-size: cover !important;
  background-position: 58% center !important;
  background-repeat: no-repeat !important;
}

/* ❌ SUPPRIME TOUS les anciens effets */
.hero-home-new::before,
.hero-home-new::after,
.hero-alt::before,
.hero-alt::after {
  display: none !important;
}

/* === IMAGE */
.hero-home-new .hero-img-block {
  z-index: 1;
}


.hero-home-new .hero-img-block img {
  width: min(100%, 560px);
  max-height: 62vh;
  object-fit: contain;
  box-shadow:
    0 50px 120px rgba(0, 0, 0, 0.25),   /* ombre large et douce */
    0 12px 25px rgba(0, 0, 0, 0.18),    /* ombre proche */
    0 0 0 1px rgba(196,164,106,0.22);   /* liseré doré subtil */
}


.hero-home-new .hero-img-block {
  position: relative;
}

.hero-home-new .hero-img-block::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -25px;

  width: 60%;
  height: 40px;

  transform: translateX(-50%);

  background: radial-gradient(
    ellipse at center,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.12) 40%,
    transparent 70%
  );

  filter: blur(6px);
  opacity: 0.8;
}

/* === TEXTE */
.hero-home-new .hero-text-block {
  z-index: 1;
  max-width: 560px;
}

.hero-home-new .hero-title {
  font-size: clamp(3.2rem, 5.8vw, 6rem);
  line-height: 0.95;
  color: #2c2c2c;
}

.hero-home-new .hero-subtitle {
  margin-top: 1.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
}

/* === BOUTON STYLE FLYER */
.hero-home-new .hero-button {
  margin-top: 2.6rem;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;

  background: transparent;
  color: #2c2c2c;
  border: none;
  padding: 0.9rem 0;

  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-home-new .hero-button::before,
.hero-home-new .hero-button::after {
  content: "";
  display: block;

  width: 60px;
  height: 1px;

  background: #C4A46A;

  transition: all 0.4s ease;
}

.hero-home-new .hero-button:hover::before,
.hero-home-new .hero-button:hover::after {
  width: 100px;
  opacity: 0.8;
}
@media (max-width: 768px) {

  .hero-home-new {
    display: flex;
    flex-direction: column;

    height: calc(100vh - var(--nav-h)); /* 👈 tient exactement dans l’écran */
    min-height: unset;

    padding: 5.5rem 1.5rem 1.5rem; /* 👈 réduit fortement */
    gap: 1.2rem;

    justify-content: center; /* 👈 centre verticalement */
  }

  .hero-home-new .hero-img-block {
    max-width: 75%;
    margin: 0 auto;
  }

  .hero-home-new .hero-img-block img {
    max-height: 38vh; /* 👈 clé pour que ça rentre */
  }

  .hero-home-new .hero-text-block {
    max-width: 100%;
  }

  .hero-home-new .hero-title {
    font-size: clamp(2rem, 8vw, 2.6rem);
    line-height: 1.05;
  }

  .hero-home-new .hero-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    margin-top: 0.8rem;
  }

  .hero-home-new .hero-button {
    margin-top: 1.2rem;
  }
}



.hero-alt {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, #F7F1EA 0%, #EFE4D8 48%, #F7F1EA 100%);
}



.hero-img-block,
.hero-text-block {
  position: relative;
  z-index: 1;
}


.hero-img-block img {
  box-shadow:
    0 28px 70px rgba(45, 48, 50, 0.22),
    0 0 0 1px rgba(199, 167, 107, 0.22);
}

.hero-text-block .hero-title {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--clr-dark);
}

.hero-text-block .hero-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--clr-muted);
}

/* === Bouton hero — style invitation galerie === */

.hero-text-block .hero-button {
  position: relative;
  background: transparent;
  color: var(--clr-dark);
  border: none;
  border-radius: 0;
  padding: 0.9rem 0.4rem;
  font-family: "Work Sans", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  box-shadow: none;
}

.hero-text-block .hero-button::before,
.hero-text-block .hero-button::after {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  background: var(--clr-primary);
  margin: 0.65rem auto;
  transition: width 0.4s ease, opacity 0.4s ease;
}

.hero-text-block .hero-button:hover {
  background: transparent;
  color: var(--clr-primary-dark);
  transform: translateY(-2px);
  box-shadow: none;
}

.hero-text-block .hero-button:hover::before,
.hero-text-block .hero-button:hover::after {
  width: 120px;
}
/* --- Bouton « Accéder à la boutique » (centré) --------------- */
.recent-btn-wrapper {
  display: flex;
  /* crée un conteneur flex */
  margin-top: 2rem;
  /* écart au-dessus */
  width: 100%;
  /* prend toute la ligne */
  align-items: center;
}

.recent-btn-wrapper .btn {
  display: inline-block;
  /* annule tout float éventuel */
}

.recent-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.recent-centered .gallery-grid {
  justify-content: center;
}

.recent-carousel-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 960px;
  margin: 0 auto 2rem;
}

.recent-carousel {
  display: flex;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

.recent-slide {
  min-width: calc(100% / 3);
  /* 3 œuvres visibles à la fois */
  box-sizing: border-box;
  padding: 0 0.5rem;
}

.recent-slide img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s;
}

.recent-slide img:hover {
  transform: scale(1.03);
}


.cta-poetique-section {
  background-color: #faf6f3;
  padding: 2rem 2rem 4rem; /* haut réduit, bas conservé */
  text-align: center;
  margin-top: 0; /* assure qu’il n’y a pas d’espace ajouté par défaut */
}

.cta-poetique-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: #444;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-poetique-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: #000;
  color: #fff;
  font-weight: 500;
  border-radius: 2rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-poetique-button:hover {
  background-color: #333;
}



.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  width: 24px;
  height: 38px;
  border: 2px solid #fff;
  border-radius: 12px;
  transform: translateX(-50%);
  box-sizing: border-box;
}

.scroll-indicator::before {
  content: '';
  display: none;
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  margin: 8px auto;
  animation: scroll 2s infinite;
}

/* ============================================================
   HERO GALERIE — ARC 3D MAÎTRISÉ (sans scène)
   Objectif : VRAI mur courbe lisible, pas une rangée
   ============================================================ */

/* Neutralise le style global sur header si tu en as un */
header.gallery-hero-arc{
  position: relative;
  min-height: 62vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 0%, #f7f3ef 0%, #f2ede7 45%, #ece6df 100%);
}
header.gallery-hero-arc::before{ display:none !important; }

/* Le “mur” (la caméra) */
.arc-wall{
  position: relative;
  width: min(1400px, 95vw);
  height: 520px;
  perspective: 1000px;              /* plus petit = effet 3D plus fort */
  perspective-origin: 50% 45%;      /* point de fuite, stabilise l’illusion */
  transform-style: preserve-3d;
}

.arc-wall{
  --r: -500px;        /* profondeur du mur */
  --a: 40deg;         /* écart angulaire entre deux toiles (↑ = plus d'espace) */
}


/* Un item = un “support” 3D */
.arc-item{
  position: absolute;
  left: 50%;
  top: 30px;                       /* ajuste la hauteur dans le hero */
  width: 360px;

  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform;
}

/* l’image */
.arc-item img{
  display: block;
  width: 85%;
  aspect-ratio: 1 / 1;              /* tes toiles semblent carrées */
  object-fit: cover;

  border-radius: 0;                 /* pas d’arrondis */
  box-shadow: 0 24px 70px rgba(0,0,0,.22), 0 6px 18px rgba(0,0,0,.12);
  backface-visibility: hidden;
}

/* Halo spot (réaliste, discret) */
.arc-item::before{
  content:"";
  position:absolute;
  top:-46px;
  left:50%;
  transform: translateX(-50%);
  width: 190%;
  height: 110px;
  background: radial-gradient(ellipse at center,
    rgba(255,255,255,.55) 0%,
    rgba(255,255,255,.18) 40%,
    rgba(255,255,255,0) 72%);
  pointer-events:none;
}

/* ------------------------------------------------------------
   ARC : on évite left:% et on travaille autour du CENTRE.
   - même rayon pour tous => cohérence
   - offset X symétrique => lisible
   - rotation Y progressive
   - scale côtés pour compenser la “perte de largeur” due à rotateY
   ------------------------------------------------------------ */

/* Réglages arc (à toucher si besoin) *//* Rayon du mur (négatif = le mur est “au fond”, concave) */

/* ARC PROPRE : pas de translateX en px */
.arc-item.a1{ transform: translateX(-50%) rotateY(calc( 2 * var(--a))) translateZ(var(--r)) scale(1.05); }
.arc-item.a2{ transform: translateX(-50%) rotateY(calc( 1 * var(--a))) translateZ(var(--r)) scale(1.03); }
.arc-item.a3{ transform: translateX(-50%) rotateY(calc( 0 * var(--a))) translateZ(var(--r)) scale(1.00); }
.arc-item.a4{ transform: translateX(-50%) rotateY(calc(-1 * var(--a))) translateZ(var(--r)) scale(1.03); }
.arc-item.a5{ transform: translateX(-50%) rotateY(calc(-2 * var(--a))) translateZ(var(--r)) scale(1.05); }


/* évite de “couper” les côtés */
.arc-wall{ overflow: visible; }

/* l’arc doit être centré */
.arc-wall{
  margin: 0 auto;
  width: min(1400px, 95vw);
}

/* le texte doit rester lisible au-dessus */
.arc-text{ z-index: 10; }


/* Texte (hors 3D) */
.arc-text{
  position: absolute;
  bottom: 10%;
  width: 100%;
  text-align: center;
  z-index: 3;
  pointer-events: none;
}
.arc-text h1{ margin:0 0 .3rem; }
.arc-text p{ margin:0; font-weight:300; letter-spacing:.05em; }

/* Responsive */


@media (max-width: 720px){
  /* mobile : 3 toiles */
  .arc-item.a1, .arc-item.a5{ display:none; }
  .arc-wall{ height: 440px; perspective: 1100px; }
  .arc-item{ width: 170px; top: 130px; }
  .arc-wall{ --r: 420px; }

  .arc-item.a2{ transform: translateX(calc(-50% - 150px)) rotateY(16deg) translateZ(var(--r)) scale(1.04); }
  .arc-item.a3{ transform: translateX(-50%) rotateY(0deg) translateZ(var(--r)) scale(1.00); }
  .arc-item.a4{ transform: translateX(calc(-50% + 150px)) rotateY(-16deg) translateZ(var(--r)) scale(1.04); }
}

/* ===================== RESPONSIVE ===================== */



/* ===================== LUMIÈRE GALERIE (UPGRADE) ===================== */

/* 1) Lumière ambiante derrière l’arc (mur éclairé) */
.arc-wall::after{
  content:"";
  position:absolute;
  inset:-18% -10% -8%;
  background:
    radial-gradient(circle at 50% 30%,
      rgba(255,255,255,.85) 0%,
      rgba(255,255,255,.35) 35%,
      rgba(0,0,0,.06) 70%,
      rgba(0,0,0,0) 85%);
  pointer-events:none;
  transform: translateZ(-5px);
  opacity: 0.4;
}


.gallery-grid img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
}

/* .gallery-grid img:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 26px rgba(0, 0, 0, .18);
} */

/* --- Grille galerie homogène --------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); /* ✅ plus souple */
  gap: 10.0rem;
  padding: 0 1rem;
}

@media (max-width: 400px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 0 1rem;
  }
} 

/* ===== À propos ===== */
.about-section {
  background: linear-gradient(to right, #faf6f3 0%, #f0e2d2 40%, #e5d7f3 100%);
  padding: 4rem 2rem;
  text-align: center;
  color: #222;
}

.about-section .section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}



.about-text {
  font-family: "Work Sans", sans-serif;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0.9;
}



.about-home {
  flex-direction: block;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;

}


/* --- Section About sur la page d’accueil --------------------- */
.about-home-img {
  flex: 0 0 clamp(200px, 30vw, 300px);
  max-width:40vw;

  /* largeur mini / réactive / maxi */
}

.about-home-img img {
  width: 100%;
  /* occupe tout le bloc ci-dessus */
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

.about-home-text {
  flex: 1;
  min-width: 240px;
}

.about-home-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-home-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-home .btn {
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
}

@media (max-width: 768px) {
  .about-home {
    flex-direction: column;
    align-items:center;
  }
  .about-home-img{
    max-width:60vw;
  }
}






/* ===== Footer ===== */
footer {
  background: var(--clr-dark);
  color: var(--clr-light);
  padding-block: 3rem;
  font-size: .95rem;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
  align-items: center;

}

@media (min-width: 700px) {
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}


.social-links {
  display: flex;
  gap: 1.5rem;
  font-size: 1.5rem;
}

.social-links a {
  transition: color var(--transition);
}

.social-links a:hover {
  color: var(--clr-primary);
}

/* ===== Utilitaires ===== */
.alt-bg {
  background: #F7F4EE;
}

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

/* ===== Animations ===== */

/* --- Slider --------------------------------------------------- */
.slider {
  position: relative;
  max-width: 480px;
  /* largeur max du carrousel */
  width: 100%;
  aspect-ratio: 4 / 5;
  /* hauteur proportionnelle  – ajuste à ton format */
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .10);
}

.slides {
  display: flex;
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.slides img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  scroll-snap-align: center;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, .45);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  cursor: pointer;
}

.slide-btn:hover {
  background: rgba(0, 0, 0, .7);
}

.prev {
  left: .6rem;
}

.next {
  right: .6rem;
}

/* Fix : le bloc "about-img" ne doit plus imposer flex-basis trop large */
.about-img.slider {
  flex: 0 0 auto;
}

/* === Slider réinventé ========================================== */
/* ==== Fade-slider minimal ===================================== */
.slide-slider {
  position: relative;
  max-width: 600px;   /* un peu plus grand pour respirer */
  width: 100%;
  overflow: hidden;
}

.slide-slider .rail {
  display: flex;
  align-items: center; /* centre verticalement */
  transition: transform .8s cubic-bezier(.22,.61,.36,1);
}

.slide-slider img {
  flex: 0 0 100%;
  width: 100%;
  height: auto;              /* ← important */
  object-fit: contain;       /* ← clé du problème */
  background: #f5f3ef;       /* ← fond élégant (beige doux) */
  border-radius: var(--radius);
}

.slide-nav {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, .45);
  border: none;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  cursor: pointer;
  padding-bottom: 4px; /* 💡 décale le texte vers le haut */
}




.slide-nav:hover {
  background: rgba(0, 0, 0, .7);
}

.prev {
  left: .6rem;
}

.next {
  right: .6rem;
}

.slider-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: .4rem;
  height: 4px;
  background: rgba(255, 255, 255, .25);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: #f9ae00cb;
  transition: width .6s ease;
}


/* === ABOUT Section enhancements ============================== */
.about-home {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
}

.about-home-img {
  flex: 0 0 50%;
}

.about-home-img img {
  width: 100%;
  border-radius: var(--radius, 8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.about-home-text {
  flex: 1;
  min-width: 240px;
}

.about-home-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-home-text p {
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
}

.about-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

.about-text {
  flex: 1 1 280px;
  min-width: 240px;
}

.about-text blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--clr-primary-dark);
  margin: 1.5rem 0;
  padding-left: 1rem;
  border-left: 4px solid var(--clr-primary);
}


/* === CONTACT Section ========================================= */
/* === Contact form premium =================================== */
/* === Contact form premium =================================== */

.contact-form {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, .65);
  /* verre dépoli */
  border: 1px solid rgba(255, 255, 255, .4);
}


.input-group {
  position: relative;
}

.input-group svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  fill: #a39d92;
  pointer-events: none;
}

.input-group input,
.input-group textarea {
  padding-left: 3rem;
  /* place pour l’icône */
}


.textarea textarea {
  min-height: 140px;
}

.contact-btn {
  position: relative;
  overflow: hidden;
  background: var(--clr-primary, #ff6f59);
  color: #fff;
  border: none;
}

.contact-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255, 255, 255, .25) 0%, rgba(255, 255, 255, 0) 60%);
  transform: translateX(-100%);
  transition: transform .45s ease-out;
}

.contact-btn:hover::after {
  transform: translateX(100%);
}

.contact-btn:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
  transform: translateY(-3px);
}


/* --- Toast succès ------------------------------------------- */
#contact-toast {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #2e7d32;
  color: #fff;
  padding: 1rem 1.6rem;
  border-radius: 8px;
  opacity: 0;
  transition: .4s ease;
  z-index: 9999;
}

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


.input-group {
  position: relative;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 1.1rem 1rem;
  border: 2px solid #e2e0d9;
  border-radius: 8px;
  background: none;
  font: inherit;
  resize: vertical;
  transition: border .25s, box-shadow .25s;
}

.input-group label {
  position: absolute;
  left: 1rem;
  top: 1.1rem;
  color: #8a867f;
  pointer-events: none;
  transition: .25s ease;
  background: #fff;
  padding: 0 .3rem;
}

.input-group:focus-within input,
.input-group:focus-within textarea {
  border-color: var(--clr-primary, #ff6f59);
  box-shadow: 0 0 0 3px rgb(255 111 89 / .25);
}

.input-group:focus-within label,
.input-group input:not(:placeholder-shown)+label,
.input-group textarea:not(:placeholder-shown)+label {
  top: -.7rem;
  font-size: .75rem;
  color: var(--clr-primary, #ff6f59);
}

.textarea textarea {
  min-height: 140px;
}

.contact-btn {
  align-self: start;
  padding: .9rem 2.8rem;
  font-size: 1rem;
  font-weight: 600;
}

/* --- Toast succès ------------------------------------------- */
#contact-toast {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #2e7d32;
  color: #fff;
  padding: 1rem 1.6rem;
  border-radius: 8px;
  opacity: 0;
  transition: .4s ease;
  z-index: 9999;
}

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


/* === CART Enhancements ======================================= */
/* === PANIER (table pro + toast) ============================== */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.cart-table th,
.cart-table td {
  padding: 1rem .75rem;
  text-align: left;
  border-bottom: 1px solid #e6e3dc;
}

.cart-table th {
  background: #faf9f7;
  font-weight: 600;
}

.cart-table img {
  width: 64px;
  border-radius: var(--radius);
}

.qty-btn {
  border: 1px solid #ddd;
  background: #fff;
  width: 28px;
  height: 28px;
  font: inherit;
  cursor: pointer;
}

.qty-input {
  width: 42px;
  text-align: center;
  border: none;
  background: none;
}

.cart-summary {
  text-align: right;
  font-size: 1.2rem;
  margin-top: 1.5rem;
}

.cart-summary strong {
  font-size: 1.4rem;
}

/* --- Toast élégant ------------------------------------------- */
/* --- Toast élégant ------------------------------------------- */
.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  max-width: 320px;
  padding: 1rem 1.4rem;
  background: #1f1f1f;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .4s ease, transform .4s ease;
  z-index: 9999;
  font-size: .95rem;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-link {
  margin-left: auto;
  color: var(--clr-primary, #ff6f59);
  font-weight: 600;
  text-decoration: none;
  transition: color .3s;
}

.toast-link:hover {
  color: #ffa98f;
}

/* === Overlay flou + panneau panier (corrigé) ================= */
/* === Overlay flou + panneau panier (définitif) =============== */
#cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
  z-index: 9800;
}

#cart-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 380px;
  /* <– au lieu de 300 */
  background: #faf9f7;
  /* beige clair élégant */
  box-shadow: -6px 0 24px rgba(0, 0, 0, .20);
  transform: translateX(100%);
  /* caché hors-écran */
  transition: transform .4s ease;
  z-index: 11000;
  display: flex;
  flex-direction: column;
}

.cart-panel.show {
  transform: translateX(0);
}

/* coulisse */

.cart-header {
  background: #fff7f0;
  border-bottom: 1px solid #e8e3db;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid #e4e1da;
}

.cart-header h3 {
  margin: 0;
  font-size: 1.05rem;
}

.cart-header button {
  border: none;
  background: none;
  font-size: 1.4rem;
  cursor: pointer;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.cart-item {
  animation: fadeUp .4s ease forwards;
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  transition: opacity 0.4s ease, transform 0.4s ease;
}





/* Titre "Votre panier" */
.cart-panel h2 {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: left;
  margin-top:20px;
}


/* Bouton Aller au paiement */
.cart-panel .btn {
  display: block;
  margin-top: 2rem;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  background-color: #000;
  color: white;
  border: none;
  border-radius: 1.5rem;
  transition: background 0.3s ease;
}

.cart-panel .btn:hover {
  background-color: #333;
}


.cart-item img{
  width: 100px;
  height: 100px;
  flex: 0 0 100px;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border-radius: var(--radius);
  padding: .3rem;
}

.cart-item h4 {
  margin: 0;
  font-size: .95rem;
}

.cart-item .price {
  font-size: .9rem;
  color: var(--clr-muted);
}

.cart-footer {
  background: #fff7f0;
  padding: 1rem;
  border-top: 1px solid #e8e3db;
  text-align: right;
}

.cart-footer .total {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* --- Cart panel look & feel --------------------------------- */


.qty-btn {
  /* déjà présent mais on l’adoucit */
  border: 1px solid #cfc9c1;
  width: 26px;
  height: 26px;
  background: #fff;
}

.qty-input {
  width: 46px;
}

.stock-alert {
  color: #d34d4d;
  font-size: .8rem;
  margin-top: .4rem;
}

/* --- Badge quantité sur icône panier ------------------------- */
/* --- Icône Panier + Badge quantité --------------------------- */
.cart-link {
  position: relative;
  /* point d’ancrage pour le badge  */
  display: inline-flex;
  /* icône + clique confortable     */
  align-items: center;
}

.cart-icon {
  width: 26px;
  height: 26px;
}

/* Badge */


.cart-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background:var(--clr-primary, #ff6f59);
  color: white;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 0 0 1px white;
}





.cart-badge.show {
  transform: scale(1);
}

/* visible si >0 */


/* --- Carte œuvre --------------------------------------------- */

/* Conteneur image */
.img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  transition: transform 0.5s ease;
}



.img-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 0.5rem;
  border-radius: var(--radius);
  aspect-ratio: 4/5;
}

.img-slider img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  scroll-snap-align: start;
  border-radius: var(--radius);
  transition: transform 0.3s ease;
}

.img-slider {
  -webkit-overflow-scrolling: touch; /* iOS fluidité */
  scrollbar-width: none;             /* Firefox */
}
.img-slider::-webkit-scrollbar {
  display: none;                     /* Chrome/Safari */
}



.collect-btn{
  position: relative;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  letter-spacing: .12em;
  text-transform: uppercase;

  background: transparent;
  color: #111;
  border: none;

  padding: 10px 4px;
  cursor: pointer;

  transition: color .3s ease;
}

/* ligne signature */
.collect-btn::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,.8);

  transform: scaleX(.35);
  transform-origin: left;
  transition: transform .45s ease;
}

.collect-btn:hover{
  color: #000;
}

.collect-btn:hover::after{
  transform: scaleX(1);
}







/* Carte oeuvre */
/* ===== Galerie grid : frame respectant le ratio réel ===== */

.img-wrapper{
  position: relative;
}
/* ===== GALLERY GRID — rendu premium, frame carré ===== */

.art-frame.is-square{
  width: 100%;
  aspect-ratio: 1 / 1;   /* grille carrée harmonieuse */
  padding: 0;            /* ⛔ plus de passe-partout */

  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent; /* ✅ frame invisible */
  border: none;
  border-radius: 0;
  box-shadow: none;

  position: relative;
  overflow: visible;       /* important pour l’ombre */
}

/* === FIX: Gallery grid — retirer le halo/lumière === */
.art-frame.is-square::before{
  display: none !important;
  /* ou : opacity: 0 !important; */
}


/* petite “lumière galerie” en haut */
.art-frame.is-square::before{
  content:"";
  position:absolute;
  inset: -40% -20% auto -20%;
  height: 70%;
  background: radial-gradient(circle at 50% 60%,
    rgba(255,255,255,.85),
    rgba(255,255,255,0) 70%);
  opacity: .55;
  pointer-events:none;
}

/* image : respect du ratio de la toile */
.art-frame.is-square img{
  width: 100%;
  height: 100%;
  object-fit: contain;     /* respect total du format */
  display: block;
}


.art-hover-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.art-hover-container img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transition: opacity 0.6s ease;
}

.img-main {
  opacity: 1;
}

.img-hover {
  opacity: 0;
}

.art-card:hover .img-main {
  opacity: 0;
}

.art-card:hover .img-hover {
  opacity: 1;
}



.art-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

/* Rapproche visuellement le titre sans déformer la toile */
.art-frame.is-square,
.art-hover-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* Contenu centré */
.art-card>a {
  flex: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
}

.art-card h3 {
  font-size: 1.25rem;
  flex: 0;
  text-align: center;
  margin-top: -4rem;
}

.art-card .price {
  margin: 0;
  color: var(--clr-muted);
  font-size: 1rem;
  flex: 0;
  text-align: center;
}


@media (max-width: 600px) {
  .art-card h3 {
    font-size: 1.25rem;
    margin-top: -6rem;
  }

  .art-card .price {
    font-size: 1rem;
  }

  .collect-btn {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
  }
}



/* === Section Contact ============================== */



.contact-photo img {
  max-width: 50%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  display: block;
  object-fit: cover;
}

.contact-section {
  display: flex;
  background-color: #f8f6f1; /* fond doux différent du reste */
  padding: 4rem 2rem;
  justify-content: center;
}


.contact-wrapper {
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}


.contact-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 4rem;
  max-width: 1100px;
  width: 100%;
  padding: 0 2rem;
}

.contact-form-block {
  flex: 1;
  min-width: 320px;
  max-width: 520px;
}

.contact-details-block {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  text-align: center;
}

.contact-photo {
  max-width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}




.contact-intro {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.2rem;
  text-align:center;
  margin-bottom: 2rem;
  color: var(--clr-muted);
}

.contact-form-block form label {
  display: block;
  margin-top: 1rem;
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.contact-form-block form input,
.contact-form-block form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
}

.contact-form-block form button.btn {
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

.contact-infos {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--clr-dark);
}

.contact-infos a {
  color: var(--clr-primary);
  text-decoration: none;
}





@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .contact-details-block {
    max-width: 100%;
    text-align: center;
  }

  .contact-photo {
    max-width: 80%;
  }
}


.full-carousel-section {
    background: #f8f6f1;
    overflow: hidden;
    margin-bottom: 0;
}


/* =====================================================
   HOME — harmonisation avec la hero premium
   ===================================================== */

/* Section œuvres récentes */
.full-carousel-section {
  background: #F7F1EA;
}

/* Titre "Œuvres récentes" */
.full-carousel-section .section-title {
  margin-top: 0;
  margin-bottom: 2.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #2c2c2c;
}

/* Ligne sous le titre plus fine, comme les barres du bouton hero */
.full-carousel-section .section-title::after {
  width: 72px;
  height: 1px;
  background: var(--clr-primary);
  margin-top: 1rem;
}

/* Carousel plus sobre */
.carousel-slide img {
  box-shadow:
    0 22px 55px rgba(45, 48, 50, 0.16),
    0 0 0 1px rgba(199, 167, 107, 0.16);
}



/* =====================================================
   MOBILE — carousel swipe 1 œuvre
   ===================================================== */
   
@media (max-width: 768px) {

  .full-carousel-section {
    padding: 2.5rem 0 3rem;
    overflow: hidden;
  }

  .carousel-wrapper {
    overflow-x: scroll !important;
    overflow-y: hidden;
    padding: 0 1rem 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
  }

  .carousel-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 0rem;
    width: max-content;
    animation: none !important;
    transform: none !important;
  }

  .carousel-slide {
    flex: 0 0 90vw;
    width: 90vw;
    height: 48vh;
    max-height: 420px;
    min-height: 200px;
    scroll-snap-align: center;
  }

  .carousel-slide a {
    display: block;
    width: 100%;
    height: 100%;
  }

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

  .carousel-fade-left,
  .carousel-fade-right {
    display: none;
  }

  .carousel-wrapper::-webkit-scrollbar {
    display: none;
  }

  .carousel-wrapper {
    scrollbar-width: none;
  }
}   

/* Citation sous le carousel */
.cta-poetique-section {
  background: #F7F1EA;
  padding: 1.5rem 2rem 4rem;
}

.cta-poetique-text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
  color: #2c2c2c;
  opacity: 0.9;
}

/* Bouton citation comme le bouton hero */
.cta-poetique-button {
  background: transparent;
  color: #2c2c2c;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0.9rem 0;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.cta-poetique-button::before,
.cta-poetique-button::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: var(--clr-primary);
  margin: 0.65rem auto;
  transition: width 0.4s ease;
}

.cta-poetique-button:hover {
  background: transparent;
  color: var(--clr-primary-dark);
  transform: translateY(-2px);
  box-shadow: none;
}

.cta-poetique-button:hover::before,
.cta-poetique-button:hover::after {
  width: 100px;
}

/* Section À propos harmonisée */
.about-section {
  background: linear-gradient(120deg, #F7F1EA 0%, #EFE4D8 48%, #F7F1EA 100%);
  padding: 5rem 2rem;
}

.about-home-text h2 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 600;
  line-height: 1;
  color: #2c2c2c;
}

.about-home-text p {
  color: #5f5750;
  font-size: 1rem;
  line-height: 1.8;
}

/* Bouton À propos dans le même esprit */
.about-home .btn {
  background: transparent;
  color: #2c2c2c;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0.9rem 0;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
}

.about-home .btn::before,
.about-home .btn::after {
  content: "";
  display: block;
  width: 54px;
  height: 1px;
  background: var(--clr-primary);
  margin: 0.6rem auto;
}

.about-home .btn:hover {
  background: transparent;
  color: var(--clr-primary-dark);
  transform: translateY(-2px);
  box-shadow: none;
}

/* Section contact accueil */
.contact-section {
  background: #F7F1EA;
}

.contact-wrapper {
  border-radius: 0;
  border: 1px solid rgba(199, 167, 107, 0.22);
  box-shadow: 0 24px 70px rgba(45, 48, 50, 0.08);
}

.contact-intro {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  color: #2c2c2c;
}

  .carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  
.carousel-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  animation: scrollCarousel 20s linear infinite;
}




.carousel-slide {
  flex: 0 0 240px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s ease, z-index 0.3s ease;
  will-change: transform;

}

@media (max-width: 600px) {
  .carousel-slide {
    flex: 0 0 160px;
    height: 200px;
  }
}


.carousel-slide a {
  display: block;
  width :100;/*à retirer si on veut différentes tailles d'image*/
  height:100%;/*à retirer si on veut différentes tailles d'image*/

}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: none ;
}

.carousel-slide.focused {
  opacity: 1;
}


.carousel-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.carousel-fade-left,
.carousel-fade-right {
position: absolute;
top: 0;
bottom: 0;
width: 100px; /* ← zone plus fine qu’avant */
z-index: 2;
pointer-events: none;
}

.carousel-fade-left {
left: 0;
background: linear-gradient(to right, #f8f6f1 60%, rgba(248, 246, 241, 0) 100%);
}

.carousel-fade-right {
right: 0;
background: linear-gradient(to left, #f8f6f1 60%, rgba(248, 246, 241, 0) 100%);
}





/* === Style commun pour tous les boutons === */
.btn,

.contact-section button[type="submit"],
.cart-summary .btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: #000;
  color: #fff;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  border-radius: 2rem;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover,
.hero-button:hover,
.contact-section button[type="submit"]:hover,
.cart-summary .btn:hover {
  background-color: #333;
  transform: translateY(-2px);
}

.btn-light {
  background-color: #fff;
  color: #000;
  border: 1px solid #ccc;
}

.btn-light:hover {
  background-color: #f0f0f0;
}


@media (max-width: 500px) {
  .btn {
    padding: 0.6rem 1.6rem;
    font-size: 0.9rem;
  }
}



.gallery-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
  padding-top:0;
}

.gallery-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.0);
}

.gallery-hero-overlay {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.gallery-hero-text {
  z-index: 2;
  color: white;
  animation: fadeInUp 1s ease forwards;
}

.gallery-hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  color:#ffffff;
  margin-bottom: 1rem;
}

.gallery-hero-subtitle {
  font-family: "Work Sans", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  opacity: 0.85;
}
/* =====================================================
   MOBILE — Gallery hero simple avec une œuvre forte
   ===================================================== */
/* =====================================================
   MOBILE — Gallery hero simple sans arc 3D
   ===================================================== */
@media (max-width: 768px) {

  header.page-hero {
    position: relative;
    height: 65vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0; /* 👈 important */
    transform: scale(1.05);
  }

  /* overlay sombre cohérent avec home */
  header.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.25),
      rgba(0,0,0,0.55)
    );
    z-index: 1;
  }

  .page-title {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;

    font-size: clamp(2.6rem, 12vw, 3.8rem);
    line-height: 0.95;
    letter-spacing: 0.04em;
  }
}

/* =====================================================
   GALLERY HERO — mix atelier + toile
   ===================================================== */

.gallery-hero-mix {
  position: relative;
  height: 70vh;
  min-height: 520px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #111;
}

.gallery-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
filter: brightness(0.65) blur(0.5px);
  transform: scale(1.04);
}

.gallery-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.62)),
    radial-gradient(circle at center, rgba(255,255,255,.08), transparent 55%);
  z-index: 1;
}

.gallery-hero-featured {
  position: relative;
  z-index: 2;
  width: min(34vw, 430px);
  aspect-ratio: 1 / 1;
  box-shadow:
    0 40px 100px rgba(0,0,0,.42),
    0 0 0 1px rgba(199,167,107,.22);
  transform: translateY(-3rem);
  margin-bottom: 2rem;
}

.gallery-hero-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  box-shadow:
    0 30px 80px rgba(0,0,0,.45),
    0 0 0 1px rgba(255,255,255,.08);
}

/* Texte */
.gallery-hero-text {
  position: absolute;
  z-index: 3;
  bottom: 10%;
  text-align: center;
  padding: 0 1.5rem;
}

.gallery-hero-text h1 {
  color: #fff;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: .9;
  margin-bottom: .8rem;
  text-shadow: 0 10px 35px rgba(0,0,0,.55);
}

.gallery-hero-text p {
  color: rgba(255,255,255,.86);
  font-size: .78rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .gallery-hero-mix {
    height: 66vh;
    min-height: unset;
  }

  .gallery-hero-bg {
    filter: brightness(0.48) blur(1px);
    object-position: center;
  }

  .gallery-hero-featured {
    width: min(72vw, 320px);
    transform: translateY(-2rem);
  }

  .gallery-hero-text {
    bottom: 8%;
  }

  .gallery-hero-text h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .gallery-hero-text p {
    font-size: .68rem;
    letter-spacing: .22em;
  }
}

.gallery-hero-premium {
  position: relative;
  min-height: 72vh;
  padding: 7rem 2rem 4rem;
  overflow: hidden;
  background: #F7F1EA;
  display: grid;
  place-items: center;
}

.gallery-hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(199,167,107,.22), transparent 9%),
    radial-gradient(circle at 82% 82%, rgba(199,167,107,.18), transparent 12%);
  opacity: .75;
}

.gallery-hero-premium-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .16;
  filter: saturate(.85) contrast(.9);
  transform: scale(1.04);
}

.gallery-hero-premium-card {
  position: relative;
  z-index: 1;
  width: min(58vw, 520px);
  box-shadow:
    0 32px 80px rgba(45,48,50,.18),
    0 0 0 1px rgba(199,167,107,.18);
}

.gallery-hero-premium-card img {
  display: block;
  width: 100%;
  height: auto;
}

.gallery-hero-premium-text {
  position: relative;
  z-index: 2;
  margin-top: 2rem;
  text-align: center;
}

.gallery-kicker,
.gallery-subtitle {
  font-family: "Work Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .72rem;
  color: var(--clr-muted);
}

.gallery-hero-premium-text h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: .9;
  margin: .4rem 0 .8rem;
  color: var(--clr-dark);
}

@media (max-width: 768px) {
  .gallery-hero-premium {
    height: 50vh;
    min-height:unset;
    padding: 2.5rem 1.2rem 2.5rem;
  }

  .gallery-hero-premium-bg {
    opacity: .11;
  }

  .gallery-hero-premium-card {
    width: min(78vw, 360px);
  }

  .gallery-hero-premium-text {
    margin-top: 1.4rem;
  }

  .gallery-hero-premium-text h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .gallery-kicker,
  .gallery-subtitle {
    font-size: .65rem;
    letter-spacing: .2em;
  }
}
/* === ABOUT PAGE === */


/* === Page À propos ================================================= */
.about {
  /* conteneur déjà présent */
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;

}

.about-img {
  /* limite claire de la largeur */
  flex: 0 0 clamp(240px, 34vw, 380px);
  /* min 240 px, max 380 px */
}



.about-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

.about-text {
  /* partie texte reste fluide */
  flex: 1 1 280px;
  min-width: 240px;
}


.about-hero {
  display: flex;
  height: 60vh;
  min-height: 480px;
  margin-top: 0;
  padding-top: 0;
  overflow: hidden;
}

.about-hero-left {
  flex: 1;
  background: linear-gradient(to right, #faf6f3 0%, #f0e2d2 40%, #e5d7f3 100%);
  height:100%;
  display: flex;
  justify-content: center;
  align-items: center;

}

.about-hero-right {
  flex: 1;
  height: 100%;
}

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

.about-hero-text {
  color: #000;
  text-align: center;
  animation: fadeInUp 1s ease forwards;
}

.about-hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  margin-bottom: 1rem;
}

.about-hero-subtitle {
  font-family: "Work Sans", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  opacity: 0.85;
}


.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 768px) {
  .about-hero {
    position: relative;
    flex-direction: column;
    height: 60vh;
    padding: 0;
    margin: 0;
  }

  .about-hero-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    pointer-events: none;
  }


    .about-hero-right {
      position: relative;
      width: 100%;
      height: 100%;
    }
    .about-hero-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      position: relative;
    }

    .about-hero-text {
      text-align: center;
      padding: 1rem;
      width: 100%;
      max-width: 100%;
      color: white;
      pointer-events: none;
    }

    .about-hero-title {
      font-size: 2.8rem;
      color: #fff;
      margin-bottom: 0.5rem;
      text-align: center;
    }

    .about-hero-subtitle {
      font-size: 1.5rem;
      color: #eee;
      text-align: center;
    }

  .about {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-text {
    order: 1;
    padding: 1.7rem;
  }

  .about-img {
    order: 2;
    margin-top: 1rem;
    flex: 0 0 auto;
    width: 100%;
    max-width: 300px; /* ✅ un peu plus grand */
  }

  .about-img img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%; /* ✅ rond */
    border: 4px solid #fff; /* ✅ fine bordure blanche élégante */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }
}



.cta-contact-section {
  background: linear-gradient(to right, #faf6f3 0%, #f0e2d2 40%, #e5d7f3 100%);
  padding: 4rem 2rem;
  text-align: center;
  border-top: 1px solid #e5d7f3;
}

.cta-contact-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: #2c2c2c;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-inline: auto;
}

.cta-contact-button {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  background-color: #000;
  color: #fff;
  font-weight: 500;
  border-radius: 2rem;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-contact-button:hover {
  background-color: #333;
}




/* Panier sur mobile */

.wide-cart {
  max-width: 900px;
}

.cart-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.cart-item-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  flex-wrap: wrap;
}

.cart-item-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  min-width: 160px;
}

.cart-item-left img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
}

.cart-title {
  font-size: 1rem;
  font-weight: 500;
  color: #222;
}

.cart-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.5rem;
}

.qty-controls {
  display: flex;
  gap: 0.4rem;
}

.qty-btn {
  width: 32px;
  height: 32px;
  font-size: 1.2rem;
}

.qty-input {
  width: 44px;
  text-align: center;
  font-size: 1rem;
  border: none;
  background: none;
}

.cart-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--clr-dark);
}

@media (max-width: 600px) {
  .cart-item-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cart-item-left,
  .cart-item-right {
    align-items: center;
  }

  .cart-item-left img {
    width: 120px;
    height: 120px;
  }
}


/* Bouton “Retirer” — style général */
.remove-btn {
  margin-top: 0;
  padding: 0.3rem 0.7rem;
  font-size: 0.8rem;
  background: none;
  color: #c0392b;
  border: 1px solid #c0392b;
  border-radius: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-end; /* desktop : aligné avec le contenu */
}

.remove-btn:hover {
  background: #c0392b;
  color: white;
}

.cart-empty {
  text-align: center;
  padding: 4rem 1rem;
}

.cart-empty .btn-outline {
  margin-top: 1.5rem;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  color: #333;
  border: 1px solid #aaa;
  border-radius: 1.5rem;
  background: transparent;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cart-empty .btn-outline:hover {
  background: #333;
  color: #fff;
}



/* ✅ Mobile : centré en bas */
@media (max-width: 600px) {
  .cart-item-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 1rem;
  }

  .cart-item-left,
  .cart-item-right {
    align-items: center;
  }

  .remove-btn {
    margin-top: 0;
    align-self: center;
  }

}

.livraison-gratuite {
  color: #27ae60;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.livraison-payante {
  color: #888;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.btn-outline {
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
  color: #333;
  border: 1px solid #aaa;
  border-radius: 1.5rem;
  background: transparent;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  background: #333;
  color: white;
}




/* TRADUCTION */

.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-left: auto;
}

.lang-btn {
  background: none;
  border: none;
  color: #222;
  font-family: "Work Sans", sans-serif;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lang-btn:hover,
.lang-btn.active {
  color: #000;
  font-weight: 600;
  text-decoration: underline;
}

/* Affichage conditionnel du sélecteur de langue */

.desktop-only {
  display: flex;
}

@media (max-width: 880px) {
  .desktop-only {
    display: none;
  }

  .mobile-language-switcher {
    margin-top: 2rem;
    text-align: center;
  }

  .mobile-language-switcher .language-switcher {
    justify-content: center;
    gap: 0.5rem;
  }

  .mobile-language-switcher .lang-btn {
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
  }
}



/* === FORCE contain + centré pour le slider d'une œuvre (robuste) === */
.slide-slider.is-artwork-slider { position: relative; aspect-ratio: 4 / 5; width: 100%; background: #f5f3ef; border-radius: var(--radius); overflow: hidden; }
.slide-slider.is-artwork-slider .rail { display: flex; height: 100%; }
.slide-slider.is-artwork-slider .rail > img { flex: 0 0 100%; width: 100% !important; height: 100% !important; object-fit: contain !important; object-position: center center !important; margin: 0 auto !important; display: block; }



/* Controls au-dessus de tout, cliquables */
.slide-slider .slide-nav {
  z-index: 10;
  pointer-events: auto;
}

.slide-slider .slider-progress {
  z-index: 1;
}


.meta {
  color: var(--clr-muted);
  font-size: 1.08rem;
}


.blurb {
  text-align: justify;
  hyphens: none;
  line-height: 1.9;
  font-size: 0.95rem;
  max-width: 60ch;
  color: #3a3a3a;
}

.price {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1.5rem 0;
}


/* Bonus: si la section recent-carousel (ancienne version) est utilisée, on l'élargit aussi sur mobile */
@media (max-width: 768px) {
  .recent-carousel-wrapper {
    max-width: 100vw;
    padding: 0 0.5rem;
  }
  .recent-slide {
    min-width: 80% !important; /* 1 visuel quasi pleine largeur */
  }
}

/* ===== Infos — Tabs only ===== */
.infos-title {
  text-align: center;
  margin-bottom: 1.25rem;
  font-family: "Cormorant Garamond", serif;
}

.infos-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 1.25rem;
}

.infos-tab {
  display: inline-block;
  padding: .6rem 1rem;
  border: 1px solid #e6e0d8;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  color: #222;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.infos-tab:hover {
  border-color: var(--clr-primary);
}

.infos-tab.active {
  background: var(--clr-primary);
  color: var(--clr-light);
  border-color: var(--clr-primary);
}

.infos-panel {
  background: #fff;
  border: 1px solid #ece7df;
  border-radius: 16px;
  padding: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 6px 14px rgba(0,0,0,.06);
}

.infos-h2 {
  font-size: 1.4rem;
  margin-bottom: .75rem;
}

.infos-panel h3 {
  font-size: 1.1rem;
  margin-top: 1rem;
  margin-bottom: .25rem;
}

.infos-panel p, .infos-panel li {
  color: #444;
  line-height: 1.7;
}

.infos-list {
  padding-left: 1.1rem;
  list-style: disc;
}


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

.checkout-page-body {
  background:
    radial-gradient(circle at top left, rgba(217, 194, 188, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(229, 215, 243, 0.22), transparent 30%),
    var(--clr-light);
}

.checkout-page {
  padding-top: 8rem;
  padding-bottom: 4rem;
  min-height: 100vh;
}

.checkout-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.checkout-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.checkout-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  color: var(--clr-dark);
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

.checkout-back:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  color: var(--clr-dark);
}

.checkout-topnote {
  font-size: 0.95rem;
  color: var(--clr-muted);
  margin: 0;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.checkout-card,
.checkout-summary-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(217, 194, 188, 0.55);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.checkout-card {
  border-radius: 2rem;
  padding: 2.4rem;
}

.checkout-summary-card {
  border-radius: 2rem;
  padding: 2rem;
  position: sticky;
  top: 7rem;
}

.checkout-eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-muted);
  font-weight: 600;
}

.checkout-title {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.checkout-intro {
  font-size: 1rem;
  color: #6d655f;
  max-width: 58ch;
  margin-bottom: 1.8rem;
}

.checkout-reassurance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.checkout-reassurance-item {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 1.2rem;
  padding: 1rem;
}

.checkout-reassurance-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.checkout-reassurance-item span {
  display: block;
  font-size: 0.88rem;
  color: var(--clr-muted);
  line-height: 1.5;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.checkout-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.checkout-field-full {
  grid-column: 1 / -1;
}

.checkout-field label {
  font-size: 0.92rem;
  font-weight: 500;
  color: #4b433d;
}

.checkout-field input,
.checkout-field select,
.checkout-field textarea {
  width: 100%;
  padding: 1rem 1rem;
  border-radius: 1rem;
  border: 1px solid #ddd3cb;
  background: rgba(255, 255, 255, 0.92);
  font-family: 'Work Sans', sans-serif;
  font-size: 0.98rem;
  color: var(--clr-dark);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.checkout-field textarea {
  resize: vertical;
  min-height: 120px;
}

.checkout-field input:focus,
.checkout-field select:focus,
.checkout-field textarea:focus {
  outline: none;
  border-color: var(--clr-primary-dark);
  box-shadow: 0 0 0 4px rgba(217, 194, 188, 0.22);
}

.checkout-submit-wrap {
  margin-top: 0.5rem;
}

.checkout-submit-btn {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-family: "Work Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.checkout-submit-btn:hover {
  background: #2e2e2e;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

.checkout-submit-btn:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.checkout-submit-note {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: var(--clr-muted);
}

.checkout-summary-head {
  margin-bottom: 1.2rem;
}

.checkout-summary-title {
  font-size: 2rem;
  margin-bottom: 0;
}

.checkout-order-summary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-summary-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-summary-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 1rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 1.1rem;
  padding: 0.9rem;
}

.checkout-summary-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 0.8rem;
}

.checkout-summary-meta {
  min-width: 0;
}

.checkout-summary-name {
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.checkout-summary-details {
  font-size: 0.9rem;
  color: var(--clr-muted);
}

.checkout-summary-line-total {
  font-weight: 600;
  white-space: nowrap;
}

.checkout-total-box {
  margin-top: 1.2rem;
  padding: 1rem 1.1rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
}

.checkout-total-box strong {
  font-size: 1.3rem;
  font-family: 'Cormorant Garamond', serif;
}

.checkout-summary-footer {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.checkout-summary-footer p {
  margin: 0 0 0.5rem;
  color: var(--clr-muted);
  font-size: 0.92rem;
}

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

  .checkout-summary-card {
    position: static;
  }

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

.checkout-form-grid:has(.checkout-field-full:only-child),
.checkout-form-grid {
  align-items: start;
}

.checkout-submit-note {
  max-width: 42ch;
}

.checkout-reassurance-item span {
  max-width: 26ch;
}

@media (max-width: 700px) {
  .checkout-shell {
    padding: 0 1rem;
  }

  .checkout-card,
  .checkout-summary-card {
    padding: 1.4rem;
    border-radius: 1.4rem;
  }

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

  .checkout-title {
    font-size: 2.4rem;
  }

  .checkout-summary-item {
    grid-template-columns: 60px 1fr;
  }

  .checkout-summary-line-total {
    grid-column: 2;
  }
}


/* === FIX GLOBAL MOBILE — empêche les débordements horizontaux === */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

* {
  max-width: 100%;
}

img,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
}

/* Sécurise les sections principales */
#app,
.navbar,
.hero-home-new,
.section,
.container,
.carousel-wrapper,
.gallery-grid,
.contact-section,
.about-section {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .container {
    padding-inline: 1rem;
  }

  .hero-home-new {
    width: 100%;
    overflow-x: hidden;
  }

  .carousel-track {
    max-width: none;
  }

  .mobile-menu {
    max-width: 85vw;
  }
}