/* FLAMINGO ART — Styles méditerranéens */

:root {
  /* Bleu design unifié : turquoise (remplace l'ancien bleu marine) */
  --bleu-profond: #2d9cba;
  --turquoise: #2d9cba;
  --turquoise-clair: #5ec8d8;
  --turquoise-fonce: #1f8aaa;
  --eau-claire: #b8e4ec;
  --flamingo: #e8737a;
  --flamingo-clair: #f4a5a0;
  --rose-poudre: #fce8e6;
  --sable: #e8dcc8;
  --sable-fonce: #c9b89a;
  --garrigue: #8a9a7b;
  --blanc-casse: #faf7f2;
  --olive: #6b7b5c;
  --bois: #c4a882;
  --texte: #2c3e42;
  --texte-leger: #5a6b70;
  --ombre: 0 16px 48px rgba(45, 156, 186, 0.16);
  --ombre-legere: 0 6px 24px rgba(45, 156, 186, 0.1);
  --radius: 14px;
  --radius-lg: 22px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --prose-max: 38rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--texte);
  background: var(--blanc-casse);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  padding-bottom: env(safe-area-inset-bottom);
}

body.has-mobile-bar {
  padding-bottom: calc(4.5rem + env(safe-area-inset-bottom));
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--bleu-profond);
}

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

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

/* ── Navigation ── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.nav.scrolled {
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--ombre-legere);
  padding: 0.75rem 2rem;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--flamingo), var(--turquoise));
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.1rem;
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--bleu-profond);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--texte);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--turquoise);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--turquoise);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 1.5rem;
}

.lang-btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.55rem;
  border: 1.5px solid rgba(45, 156, 186, 0.2);
  border-radius: 4px;
  background: transparent;
  color: var(--texte);
  cursor: pointer;
  transition: all var(--transition);
}

.lang-btn:hover,
.lang-btn.active {
  background: var(--bleu-profond);
  border-color: var(--bleu-profond);
  color: white;
}

.nav.scrolled .lang-btn {
  border-color: rgba(255, 255, 255, 0.35);
  color: white;
}

.nav.scrolled .lang-btn:hover,
.nav.scrolled .lang-btn.active {
  background: var(--turquoise);
  border-color: var(--turquoise);
  color: var(--bleu-profond);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bleu-profond);
  margin: 5px 0;
  transition: var(--transition);
}

/* ── Boutons ── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--turquoise), var(--turquoise-clair));
  color: white;
  box-shadow: 0 4px 18px rgba(45, 156, 186, 0.32);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2490ad, var(--turquoise));
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(45, 156, 186, 0.4);
}

.btn-lg {
  padding: 1rem 2.4rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.btn-arrow::after {
  content: '→';
  margin-left: 0.35rem;
  transition: transform var(--transition);
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-secondary:hover {
  background: white;
  color: var(--bleu-profond);
  border-color: white;
}

.btn-outline {
  background: transparent;
  color: var(--turquoise);
  border: 2px solid var(--turquoise);
}

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

.btn-sable {
  background: var(--sable);
  color: var(--bleu-profond);
}

.btn-sable:hover {
  background: var(--sable-fonce);
  transform: translateY(-2px);
}

/* ── Hero ── */

.hero {
  position: relative;
  min-height: 92vh;
  min-height: 92svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(45, 156, 186, 0.72) 0%,
    rgba(45, 156, 186, 0.4) 45%,
    rgba(232, 115, 122, 0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: 2rem;
  color: white;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  color: white;
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  font-weight: 300;
  opacity: 0.92;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

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

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  opacity: 0.7;
  animation: float 2.5s ease-in-out infinite;
}

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

/* ── Sections ── */

.section {
  padding: var(--space-xl) 2rem;
}

.section--white {
  background: white;
}

.section--sable {
  background: var(--sable);
}

.section--compact {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--flamingo);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-desc {
  max-width: var(--prose-max);
  margin: 0 auto;
  color: var(--texte-leger);
  font-size: 1.05rem;
  line-height: 1.8;
}

.section-header--tight {
  margin-bottom: 2.5rem;
}

.section-cta {
  margin-top: 2.5rem;
  text-align: center;
}

.prose {
  max-width: var(--prose-max);
  color: var(--texte-leger);
}

.prose p + p {
  margin-top: 1rem;
}

/* ── Intro band ── */

.intro-band {
  background: var(--sable);
  padding: 4rem 2rem;
}

.intro-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--ombre);
}

.intro-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.intro-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}

.intro-text p {
  color: var(--texte-leger);
  margin-bottom: 1rem;
}

/* ── Cards grille ── */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card,
a.card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--ombre-legere);
  transition: all var(--transition);
  color: inherit;
  display: block;
}

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

.card-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

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

.card-body {
  padding: 1.8rem;
}

.card-body h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.card-body p {
  color: var(--texte-leger);
  font-size: 0.95rem;
}

.card-tag {
  display: inline-block;
  padding: 0.25rem 0.8rem;
  background: var(--sable);
  color: var(--olive);
  font-size: 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

/* ── Minette section ── */

.minette-section {
  background: linear-gradient(160deg, var(--bleu-profond) 0%, var(--turquoise-clair) 100%);
  color: white;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.minette-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(110, 196, 207, 0.15) 0%, transparent 70%);
}

.minette-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.minette-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.minette-photo img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: top center;
}

/* Minette : tête et oreilles toujours visibles */
img.minette-img {
  object-fit: cover;
  object-position: top center;
}

.gallery-item img.minette-img {
  object-position: top center;
}

.minette-text h2 {
  color: white;
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.minette-text p {
  opacity: 0.88;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

/* ── Témoignage / citation ── */

.quote-block {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--blanc-casse);
}

.quote-block blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--bleu-profond);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

.quote-block cite {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--turquoise);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Page header (sous-pages) ── */

.page-hero {
  padding: 10rem 2rem 5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--sable) 0%, var(--blanc-casse) 100%);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--texte-leger);
  max-width: 550px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ── À propos ── */

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-image-stack {
  position: relative;
}

.about-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--ombre);
}

.about-image-main img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 210px;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 5px solid var(--blanc-casse);
  box-shadow: var(--ombre);
}

.about-image-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--texte-leger);
  margin-bottom: 1.2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.value-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--ombre-legere);
}

.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.2rem;
  background: var(--sable);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.value-card p {
  color: var(--texte-leger);
  font-size: 0.9rem;
}

/* ── Savoir-faire Cricut ── */

.craft-section,
.cricut-section {
  background: white;
  padding: 5rem 2rem;
}

.craft-grid,
.cricut-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.craft-steps,
.cricut-steps {
  list-style: none;
  margin-top: 2rem;
}

.craft-steps li,
.cricut-steps li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--turquoise);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 600;
}

.craft-steps li strong,
.cricut-steps li strong {
  display: block;
  color: var(--bleu-profond);
  margin-bottom: 0.2rem;
}

.craft-steps li span,
.cricut-steps li span {
  color: var(--texte-leger);
  font-size: 0.9rem;
}

/* ── Galerie / Créations ── */

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  border: 2px solid var(--sable-fonce);
  background: transparent;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--texte);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--turquoise);
  border-color: var(--turquoise);
  color: white;
}

/* ── Vitrine produits ── */

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
  align-items: stretch;
}

.showcase-card {
  background: var(--blanc-casse);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--ombre-legere);
  transition: transform var(--transition), box-shadow var(--transition);
  aspect-ratio: auto;
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}

/* Annule le recadrage 4/3 + cover hérité de .gallery-item */
.showcase-card.gallery-item {
  aspect-ratio: auto;
  background: var(--blanc-casse);
  overflow: hidden;
  height: 100%;
}

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

/* Zone image fixe : toutes les cartes ont la même hauteur visuelle */
.showcase-image {
  aspect-ratio: 4 / 5;
  width: 100%;
  flex-shrink: 0;
  overflow: hidden;
  background: linear-gradient(165deg, #faf7f2 0%, var(--sable) 55%, #e4d6c0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  box-sizing: border-box;
}

/* Photo entière, centrée, sans crop (formats différents OK) */
.showcase-card.gallery-item .showcase-image img,
.showcase-card .showcase-image img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform var(--transition);
  border-radius: 6px;
}

.showcase-card.gallery-item:hover .showcase-image img,
.showcase-card:hover .showcase-image img {
  transform: scale(1.02);
}

.showcase-body {
  padding: 1.1rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1 1 auto;
  min-height: 0;
}

.showcase-body h3 {
  font-size: 1.15rem;
  margin: 0;
  color: var(--bleu-profond);
  line-height: 1.25;
  min-height: 1.5em;
}

.showcase-body p {
  font-size: 0.9rem;
  color: var(--texte-leger);
  margin: 0;
  flex: 1 1 auto;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  min-height: 2.8em;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  align-self: flex-start;
}

.showcase-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.5rem;
  flex-wrap: nowrap;
  flex-shrink: 0;
}

.showcase-actions .btn-sm {
  align-self: center;
  white-space: nowrap;
}

.product-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--turquoise);
  letter-spacing: 0.02em;
}

.showcase-actions .btn[disabled] {
  opacity: 0.7;
  cursor: wait;
}

.showcase-actions .btn.is-added {
  background: var(--garrigue, #6b7b5c);
}

/* ── Panier multi-tableaux ── */

.cart-fab {
  position: fixed;
  right: 1.25rem;
  bottom: calc(1.25rem + env(safe-area-inset-bottom));
  z-index: 90;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--turquoise), var(--turquoise-clair));
  color: white;
  box-shadow: 0 8px 28px rgba(45, 156, 186, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transition: transform 0.2s, opacity 0.2s;
}

body.has-mobile-bar .cart-fab {
  bottom: calc(5.5rem + env(safe-area-inset-bottom));
}

.cart-fab.is-empty {
  opacity: 0.55;
}

.cart-fab.has-items {
  opacity: 1;
  animation: cart-pop 0.35s ease;
}

.cart-fab:hover {
  transform: scale(1.06);
}

.cart-fab-count {
  position: absolute;
  top: -0.15rem;
  right: -0.15rem;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: var(--flamingo, #e8737a);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-body, system-ui);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-fab.is-empty .cart-fab-count {
  display: none;
}

@keyframes cart-pop {
  0% { transform: scale(1); }
  40% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.cart-drawer[hidden] {
  display: none !important;
}

.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 50, 60, 0.45);
  backdrop-filter: blur(2px);
}

.cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(400px, 100%);
  height: 100%;
  background: var(--blanc-casse, #faf7f2);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  animation: cart-slide 0.28s ease;
}

@keyframes cart-slide {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid rgba(45, 156, 186, 0.15);
}

.cart-drawer-header h2 {
  font-size: 1.35rem;
  margin: 0;
  color: var(--turquoise);
}

.cart-drawer-close {
  border: none;
  background: none;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  color: var(--texte-leger);
  padding: 0.25rem 0.5rem;
}

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

.cart-empty {
  color: var(--texte-leger);
  text-align: center;
  padding: 2rem 1rem;
}

.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.75rem;
  align-items: start;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cart-line-img {
  width: 64px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--sable);
}

.cart-line-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.9rem;
}

.cart-line-info strong {
  font-size: 0.95rem;
  color: var(--texte);
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.35rem;
  flex-wrap: wrap;
}

.cart-qty button {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 6px;
  border: 1px solid rgba(45, 156, 186, 0.35);
  background: white;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  color: var(--turquoise);
}

.cart-qty button:hover {
  background: var(--eau-claire, #b8e4ec);
}

.cart-remove {
  width: auto !important;
  padding: 0 0.5rem !important;
  font-size: 0.75rem !important;
  border: none !important;
  color: var(--texte-leger) !important;
  text-decoration: underline;
  background: transparent !important;
}

.cart-line-price {
  font-weight: 600;
  color: var(--turquoise);
  white-space: nowrap;
}

.cart-drawer-footer {
  padding: 1rem 1.25rem calc(1rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(45, 156, 186, 0.15);
  background: white;
}

.cart-subtotal,
.cart-shipping-line,
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0 0 0.3rem;
  font-size: 0.95rem;
}

.cart-subtotal strong,
.cart-shipping-line strong {
  font-weight: 600;
  color: var(--texte);
}

.cart-total {
  margin-top: 0.35rem;
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(45, 156, 186, 0.12);
}

.cart-total strong {
  font-size: 1.35rem;
  color: var(--turquoise);
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.cart-hint {
  font-size: 0.78rem;
  color: var(--texte-leger);
  margin-bottom: 0.85rem;
  line-height: 1.4;
}

body.cart-open {
  overflow: hidden;
}

.cart-banner {
  margin: 0;
  padding: 0.75rem 1.25rem;
  font-size: 0.88rem;
  line-height: 1.4;
  background: #e8f6fa;
  color: var(--texte);
  border-bottom: 1px solid rgba(45, 156, 186, 0.2);
}

.cart-line-unit {
  font-size: 0.8rem;
  color: var(--texte-leger);
}

.cart-clear-link,
.cart-drawer-footer .btn-ghost {
  background: transparent !important;
  border: none !important;
  color: var(--texte-leger) !important;
  text-decoration: underline;
  font-size: 0.85rem !important;
  box-shadow: none !important;
}

.cart-multi-hint {
  max-width: 40rem;
  margin: 0 auto 1.5rem;
  padding: 0.85rem 1.15rem;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.45;
  background: linear-gradient(135deg, #e8f6fa, #faf7f2);
  border: 1.5px solid rgba(45, 156, 186, 0.35);
  border-radius: var(--radius);
  color: var(--texte);
}

.cart-multi-hint strong {
  color: var(--turquoise);
}

a.showcase-card {
  text-decoration: none;
  color: inherit;
}

.showcase-grid--home {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--sable);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 156, 186, 0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: white;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.gallery-overlay p {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(45, 156, 186, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  max-width: 900px;
  width: 100%;
  text-align: center;
  color: white;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  margin: 0 auto 1.5rem;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  background: var(--blanc-casse);
  padding: 0.5rem;
}

.lightbox-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.lightbox-desc {
  opacity: 0.8;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity var(--transition);
}

.lightbox-close:hover {
  opacity: 1;
}

/* ── Contact ── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info-only {
  max-width: 560px;
  margin: 0 auto;
}

.contact-info-only .contact-info {
  width: 100%;
}

/* Encart commande personnalisée */
.custom-order-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem 2rem;
  align-items: start;
  max-width: 820px;
  margin: 0 auto;
  padding: 2rem 2.25rem;
  background: linear-gradient(145deg, var(--eau-claire) 0%, var(--blanc-casse) 45%, var(--rose-poudre) 100%);
  border: 2px solid rgba(45, 156, 186, 0.35);
  border-radius: var(--radius-lg);
  box-shadow: var(--ombre);
}

.custom-order-banner-icon {
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  background: white;
  border-radius: 50%;
  box-shadow: var(--ombre-legere);
}

.custom-order-banner-content .section-label {
  margin-bottom: 0.4rem;
}

.custom-order-banner-content h2 {
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  margin-bottom: 0.75rem;
  color: var(--turquoise);
}

.custom-order-banner-content > p {
  color: var(--texte);
  margin-bottom: 1.25rem;
  max-width: 38rem;
}

.custom-order-list {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.custom-order-list li {
  position: relative;
  padding: 0.85rem 1rem 0.85rem 2.5rem;
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius);
  border-left: 4px solid var(--turquoise);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--texte);
}

.custom-order-list li::before {
  content: '→';
  position: absolute;
  left: 0.85rem;
  top: 0.85rem;
  color: var(--turquoise);
  font-weight: 600;
}

.custom-order-list li strong {
  color: var(--turquoise-fonce, var(--turquoise));
}

@media (max-width: 600px) {
  .custom-order-banner {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.25rem;
    text-align: left;
  }

  .custom-order-banner-icon {
    margin: 0 auto;
  }
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--sable);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--turquoise);
}

.contact-detail strong {
  display: block;
  color: var(--bleu-profond);
  margin-bottom: 0.2rem;
}

.contact-detail span {
  color: var(--texte-leger);
  font-size: 0.95rem;
}

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--ombre);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--bleu-profond);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--sable);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--texte);
  background: var(--blanc-casse);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--turquoise);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

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

/* ── Process / Comment commander ── */

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: var(--sable-fonce);
}

.process-step:last-child::after {
  display: none;
}

.process-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.2rem;
  background: var(--bleu-profond);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--texte-leger);
  font-size: 0.85rem;
}

/* ── Footer ── */

.footer {
  background: var(--bleu-profond);
  color: rgba(255, 255, 255, 0.85);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: white;
  margin-bottom: 0.8rem;
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.7;
  max-width: 320px;
}

.footer h4 {
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  font-size: 0.9rem;
  opacity: 0.75;
  transition: opacity var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--turquoise-clair);
}

.footer-bottom {
  max-width: 1100px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ── CTA band ── */

.cta-band {
  background: var(--sable);
  padding: 4rem 2rem;
  text-align: center;
}

.cta-band h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-band p {
  color: var(--texte-leger);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-band--gradient {
  background: linear-gradient(160deg, var(--rose-poudre) 0%, var(--sable) 50%, var(--eau-claire) 100%);
}

/* Cartes ambiance (3 visuels lagune) */
.mood-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.mood-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  box-shadow: var(--ombre-legere);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.mood-card-image {
  height: 200px;
  overflow: hidden;
}

.mood-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.mood-card:hover .mood-card-image img {
  transform: scale(1.05);
}

.mood-card-body {
  padding: 1.1rem 1.3rem 1.3rem;
}

.mood-card-body h3 {
  font-size: 1.15rem;
  color: var(--bleu-profond);
}

/* Placeholder futures photos */
.placeholder-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(145deg, var(--sable) 0%, var(--rose-poudre) 100%);
  border: 2px dashed rgba(45, 156, 186, 0.15);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  gap: 0.6rem;
}

.placeholder-icon {
  font-size: 2.2rem;
  opacity: 0.7;
}

.placeholder-card h3 {
  font-size: 1.2rem;
  color: var(--bleu-profond);
}

.placeholder-card p {
  font-size: 0.9rem;
  color: var(--texte-leger);
  max-width: 16rem;
}

/* Minette renforcée */
.minette-section {
  padding: var(--space-xl) 2rem;
}

.minette-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.minette-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  opacity: 0.9;
  margin-top: 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--flamingo-clair);
}

.footer-minette {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Barre mobile */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(45, 156, 186, 0.1);
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
  gap: 0.75rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
}

.mobile-bar a {
  flex: 1;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.mobile-bar .mobile-bar-primary {
  background: linear-gradient(135deg, var(--turquoise), var(--turquoise-clair));
  color: white;
}

.mobile-bar .mobile-bar-secondary {
  background: white;
  color: var(--turquoise);
  border: 1.5px solid var(--turquoise);
}

.filter-bar {
  overflow-x: auto;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}

.filter-bar::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  flex-shrink: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.team-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--ombre-legere);
}

.team-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

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

.img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--ombre);
}

.img-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.text-muted {
  color: var(--texte-leger);
}

.centered-image {
  max-width: 600px;
  margin: 2rem auto 0;
}

/* ── Responsive ── */

@media (max-width: 900px) {
  .hero {
    min-height: 72svh;
  }

  .hero-img {
    object-position: center 72%;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--blanc-casse);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transition: right var(--transition);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-toggle {
    display: block;
  }

  .lang-switcher {
    margin-left: 0;
    margin-right: 0.5rem;
  }

  .intro-grid,
  .minette-grid,
  .about-story,
  .craft-grid,
  .cricut-grid,
  .contact-grid,
  .mood-grid,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mobile-bar {
    display: flex;
  }

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

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .process-step::after {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image-accent {
    right: 1rem;
    bottom: -1rem;
    width: 150px;
    height: 200px;
  }

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

@media (max-width: 600px) {
  .section {
    padding: 4rem 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
}