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

body {
  font-family: 'Inter', sans-serif;
  background: #fefcf7;
  color: #2c2a28;
  line-height: 1.4;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  overflow-x: hidden;
}

/* ========== HEADER ========== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #e6dfd5;
  position: relative;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #9b7b5c;
  text-decoration: none;
  z-index: 1002;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: #9b7b5c;
  cursor: pointer;
  z-index: 1002;
  transition: transform 0.3s ease;
}

.menu-toggle.active {
  transform: rotate(90deg);
}

.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: #5a4a3a;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s ease;
  padding: 6px 0;
  white-space: nowrap;
}

nav a:hover, nav a.active { 
  color: #c2a27a; 
}

/* ========== HERO ========== */
.hero-full {
  width: 100%;
  height: 600px;
  background: linear-gradient(rgba(30, 25, 22, 0.3), rgba(30, 25, 22, 0.2)), url('images/institut-beaute-bondy-hero.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  background: rgba(255, 252, 245, 0.9);
  backdrop-filter: blur(8px);
  padding: 40px 70px;
  border-radius: 60px 24px 60px 24px;
  max-width: 90%;
  margin: 0 20px;
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  font-weight: 600;
  color: #3a2c22;
}

.hero-content p {
  font-size: 18px;
  margin-top: 12px;
  color: #4f3e2e;
}

.btn {
  display: inline-block;
  margin-top: 28px;
  padding: 12px 38px;
  background: #b48c5c;
  color: white;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}

.btn:hover { background: #9b6e42; }

/* ========== PHILOSOPHIE ========== */
.philosophie-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin: 70px 0;
  background: #fff9f2;
  border-radius: 48px;
  padding: 56px 52px;
  border: 1px solid #f0e6dc;
}

.philosophie-text .sous-titre {
  font-size: 14px;
  font-weight: 400;
  color: #b48c5c;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.philosophie-text p {
  line-height: 1.7;
  color: #5e5346;
  margin-bottom: 20px;
  font-size: 16px;
}

.philosophie-text .signature {
  margin-top: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: #9b7b5c;
  border-left: 3px solid #d7c3a3;
  padding-left: 20px;
}

.philosophie-image {
  border-radius: 32px;
  overflow: hidden;
  height: 500px;
  background-image: url('images/assita-sanou-fondatrice-lamuseparis.jpg');
  background-size: cover;
  background-position: center;
}

/* ========== SOINS CARDS ========== */
.soins-carte-container {
  margin: 50px 0;
}

.soin-carte {
  display: flex;
  flex-direction: column;
  margin: 60px 0;
  background: #ffffff;
  border-radius: 48px;
  overflow: hidden;
  border: 1px solid #f0eae2;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.soin-carte:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
}

.carte-header {
  padding: 40px 48px 20px 48px;
  border-bottom: 1px solid #f0e8df;
}

.categorie-badge {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #b48c5c;
  margin-bottom: 12px;
}

.carte-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 500;
  color: #3a2c22;
}

.carte-header .desc-courte {
  font-size: 15px;
  color: #8a7a68;
  margin-top: 12px;
  max-width: 70%;
}

.soins-luxe-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #f0eae2;
}

.soin-item {
  background: #ffffff;
  padding: 28px 32px;
  transition: background 0.25s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 140px;
}

.soin-item:hover {
  background: #fefaf5;
}

.soin-info {
  flex: 2;
}

.soin-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2b2a27;
}

.soin-info .detail {
  font-size: 12px;
  color: #968974;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.prix-action {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  min-width: 130px;
}

.prix {
  font-size: 24px;
  font-weight: 700;
  color: #b48c5c;
  font-family: 'Cormorant Garamond', serif;
  text-align: right;
}

.btn-resa-soin {
  background: none;
  border: 1.5px solid #e2d5c8;
  padding: 8px 20px;
  border-radius: 40px;
  color: #b48c5c;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: 0.2s;
  white-space: nowrap;
}

.btn-resa-soin:hover {
  background: #b48c5c;
  border-color: #b48c5c;
  color: white;
}

/* ========== PACKS MODIFIÉ - PRIX ET BOUTONS ALIGNÉS ========== */
.packs-luxury {
  margin: 60px 0;
  background: #fff9f2;
  border-radius: 56px;
  padding: 64px 56px;
  border: 1px solid #e8ddcf;
}

.packs-header {
  text-align: center;
  margin-bottom: 56px;
}

.packs-header .tag {
  font-size: 11px;
  letter-spacing: 4px;
  color: #b48c5c;
}

.packs-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 500;
  margin: 16px 0 8px;
  color: #3a2c22;
}

.packs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pack-luxe {
  background: #ffffff;
  border-radius: 32px;
  padding: 28px;
  transition: all 0.3s;
  border: 1px solid #f0eae2;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pack-luxe:hover {
  border-color: #d4b48c;
  background: #fefaf5;
  transform: translateY(-6px);
}

.pack-nom {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #2b2a27;
}

.pack-desc {
  font-size: 13px;
  color: #7e6e5e;
  margin-bottom: 12px;
}

.pack-duree {
  font-size: 12px;
  color: #b48c5c;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #f0e8df;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.offres {
  margin: 18px 0;
  border-top: 1px solid #f0e8df;
  padding-top: 18px;
  flex: 1;
}

.offre-ligne {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}

.offre-prix {
  color: #b48c5c;
  font-weight: 600;
}

.btn-pack {
  width: 100%;
  background: none;
  border: 1.5px solid #e2d5c8;
  padding: 10px 0;
  border-radius: 40px;
  color: #b48c5c;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: 0.2s;
  margin-top: 16px;
}

.btn-pack:hover {
  background: #b48c5c;
  border-color: #b48c5c;
  color: white;
}

.btn-wa {
  background: #e8f0e6;
  border-color: #c4d4bb;
  color: #5e7a53;
}

.btn-wa:hover {
  background: #5e7a53;
  border-color: #5e7a53;
  color: white;
}

/* ========== INSPO GRID ========== */
.inspo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
  margin: 70px 0;
  background: #fcf8f2;
  border-radius: 48px;
  padding: 50px 48px;
}

.inspo-text h2 { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 48px; 
  font-weight: 500; 
  color: #352d24; 
}

.inspo-text p { 
  margin: 24px 0; 
  line-height: 1.6; 
  color: #5e5346; 
  font-size: 16px;
}

.inspo-gallery { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 20px; 
}

.inspo-img { 
  border-radius: 28px; 
  overflow: hidden; 
  height: 280px; 
  background-size: cover; 
  background-position: center; 
}

/* ========== PAGE SECTIONS ========== */
.page-section {
  margin: 70px 0;
  background: #ffffff;
  border-radius: 48px;
  padding: 50px 48px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.05);
  border: 1px solid #f0e8df;
}

.page-header { 
  text-align: center; 
  margin-bottom: 48px; 
}

.page-header h2 { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 46px; 
  font-weight: 500; 
  color: #3a2c22; 
  margin-bottom: 12px; 
}

.page-header p { 
  font-size: 16px; 
  color: #7a6a5a; 
}

/* ========== BLOG ========== */
.blog-article {
  margin-bottom: 48px;
  background: #fefaf5;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid #f0e8df;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.blog-grid.reverse {
  direction: rtl;
}

.blog-grid.reverse .blog-text {
  direction: ltr;
}

.blog-text {
  padding: 40px;
}

.blog-image {
  min-height: 340px;
  background-size: cover;
  background-position: center;
}

.blog-tag {
  display: inline-block;
  background: #e8d9cc;
  padding: 5px 14px;
  border-radius: 60px;
  font-size: 12px;
  font-weight: 600;
  color: #9b7b5c;
  margin-bottom: 16px;
}

.blog-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  margin-bottom: 16px;
  color: #3a2c22;
}

.blog-text p {
  color: #5e5346;
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 16px;
}

.blog-bienfaits {
  background: #f7f0e8;
  padding: 16px 20px;
  border-radius: 24px;
  font-size: 14px;
  margin-top: 16px;
}

/* ========== AVIS & GALERIE ========== */
.avis-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.stat-card {
  text-align: center;
  background: #fefaf5;
  padding: 24px 32px;
  border-radius: 32px;
  border: 1px solid #f0e8df;
  min-width: 140px;
}

.stat-note {
  font-size: 48px;
  font-weight: 700;
  color: #b48c5c;
  font-family: 'Cormorant Garamond', serif;
}

.stat-etoiles {
  color: #f5b642;
  font-size: 18px;
  margin: 8px 0;
}

.avis-slider-container,
.gallery-slider-container {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.avis-slider,
.gallery-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 28px;
  padding: 10px 4px 20px 4px;
  scrollbar-width: thin;
}

.avis-card,
.gallery-card {
  background: #fefaf5;
  border-radius: 28px;
  padding: 28px;
  border: 1px solid #f0e8df;
  min-width: 340px;
  width: 340px;
  flex-shrink: 0;
}

.gallery-card {
  padding: 0;
  overflow: hidden;
}

.gallery-card-image {
  height: 340px;
  background-size: cover;
  background-position: center;
}

.gallery-card-caption {
  padding: 16px 20px;
  text-align: center;
  font-size: 14px;
  color: #7a6a5a;
  font-weight: 500;
}

.avis-etoiles { 
  color: #f5b642; 
  margin-bottom: 12px; 
  font-size: 16px; 
}

.avis-header { 
  display: flex; 
  align-items: center; 
  margin-bottom: 12px; 
}

.avis-initial { 
  width: 40px; 
  height: 40px; 
  background: #e8d9cc; 
  border-radius: 50%; 
  text-align: center; 
  line-height: 40px; 
  font-weight: 600; 
  color: #9b7b5c; 
  margin-right: 12px; 
}

.avis-nom { 
  font-weight: 600; 
  color: #3a2c22; 
}

.avis-date { 
  font-size: 11px; 
  color: #b8aa99; 
  margin-top: 4px; 
}

.avis-contenu { 
  color: #5e5346; 
  line-height: 1.6; 
  font-size: 14px; 
  margin-top: 12px;
}

.avis-verifie {
  font-size: 11px;
  color: #4caf50;
  margin-top: 8px;
}

.slider-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.slider-btn {
  background: #efe7dd;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  color: #9b7b5c;
  font-size: 20px;
  transition: all 0.2s;
}

.slider-btn:hover {
  background: #c2a27a;
  color: white;
}

/* ========== CONTACT ========== */
.contact-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 48px; 
}

.contact-info { 
  background: #fefaf5; 
  border-radius: 32px; 
  padding: 32px; 
}

.contact-info h3 { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 28px; 
  color: #9b7b5c; 
  margin-bottom: 24px; 
}

.info-item { 
  display: flex; 
  align-items: center; 
  gap: 16px; 
  margin-bottom: 24px; 
  font-size: 15px;
}

.info-item i { 
  width: 45px; 
  height: 45px; 
  background: #efe7dd; 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: #b48c5c; 
  font-size: 18px; 
}

.contact-form input, 
.contact-form textarea { 
  width: 100%; 
  padding: 14px 18px; 
  margin-bottom: 16px; 
  border: 1px solid #e6dfd5; 
  border-radius: 24px; 
  font-family: 'Inter', sans-serif; 
  background: white;
  font-size: 14px;
}

.contact-form textarea { 
  min-height: 120px; 
}

.map-container { 
  border-radius: 32px; 
  overflow: hidden; 
  height: 300px; 
  margin-top: 32px; 
}

/* ========== FAQ ========== */
.faq-list {
  margin-top: 20px;
}

.faq-item { 
  border-bottom: 1px solid #f0e8df; 
  margin-bottom: 0;
}

.faq-question { 
  font-weight: 600; 
  color: #3a2c22; 
  padding: 20px 0; 
  cursor: pointer; 
  display: flex; 
  justify-content: space-between; 
  font-size: 18px; 
}

.faq-answer { 
  max-height: 0; 
  overflow: hidden; 
  transition: max-height 0.4s ease; 
  color: #6b5e52; 
  line-height: 1.6; 
  font-size: 15px; 
}

.faq-item.active .faq-answer { 
  max-height: 300px; 
  padding-bottom: 20px; 
}

/* ========== LUXE LINKS ========== */
.luxe-links { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  text-align: center; 
  background: #fff9f2; 
  border-radius: 80px; 
  margin: 50px 0; 
  border: 1px solid #ede3d7; 
}

.luxe-links div { 
  padding: 38px 20px; 
}

.luxe-links h4 { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 28px; 
  margin-bottom: 8px; 
  color: #9b7b5c; 
}

.luxe-links p { 
  font-size: 14px; 
  color: #7a6a5a; 
}

/* ========== FOOTER ========== */
footer { 
  text-align: center; 
  padding: 42px 0 48px; 
  color: #8f7f6e; 
  font-size: 14px; 
  border-top: 1px solid #e6dfd5; 
  margin-top: 20px; 
}

footer a {
  color: #8f7f6e;
  text-decoration: none;
}

footer a:hover {
  color: #b48c5c;
}

/* ========== MODAL PAIEMENT ========== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  padding: 20px;
}

.payment-modal-refined {
  max-width: 700px;
  width: 90%;
  max-height: 90vh;
  border-radius: 40px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  animation: modalFadeIn 0.4s ease-out;
  display: flex;
  flex-direction: column;
  position: relative;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.payment-modal-refined .close-modal {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #9b7b5c;
  cursor: pointer;
  border: 1px solid #f0e8df;
  transition: all 0.2s ease;
  z-index: 10;
}

.payment-modal-refined .close-modal:hover {
  background: #f5efe8;
  transform: rotate(90deg);
}

.payment-header {
  flex-shrink: 0;
  background: linear-gradient(135deg, #fefaf5 0%, #f9f2ea 100%);
  padding: 28px;
  text-align: center;
  border-bottom: 1px solid #f0e6dc;
}

.payment-icon {
  width: 64px;
  height: 64px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.payment-icon i {
  font-size: 28px;
  color: #b48c5c;
}

.payment-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: #3a2c22;
  margin-bottom: 8px;
}

.payment-subtitle {
  font-size: 14px;
  color: #8a7a68;
}

.payment-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px 32px;
  max-height: calc(90vh - 140px);
}

/* Récapitulatif */
.recap-elegant {
  background: #fefaf5;
  border-radius: 24px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #f0e8df;
}

.recap-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-weight: 600;
  color: #3a2c22;
}

.recap-header i {
  color: #b48c5c;
  font-size: 18px;
}

.recap-content {
  font-size: 14px;
  color: #5e5346;
}

.recap-content hr {
  margin: 12px 0;
  border: none;
  border-top: 1px solid #f0e8df;
}

/* Sélection des séances pour packs */
.nb-seances-elegant {
  background: #fefaf5;
  border-radius: 24px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #f0e8df;
}

.seances-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-weight: 600;
  color: #3a2c22;
}

.seances-header i {
  color: #b48c5c;
  font-size: 18px;
}

.seances-options {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.seance-option {
  flex: 1;
  min-width: 120px;
}

.seance-option input {
  display: none;
}

.seance-option label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: white;
  border: 1.5px solid #e6dfd5;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.seance-option input:checked + label,
.seance-option label:hover {
  border-color: #b48c5c;
  background: #fff9f2;
}

.seance-option label strong {
  font-size: 18px;
  color: #3a2c22;
}

.seance-option label span {
  font-size: 16px;
  font-weight: 600;
  color: #b48c5c;
}

/* Options de paiement */
.payment-modes-elegant {
  margin-bottom: 20px;
}

.payment-options-card {
  background: #fefaf5;
  border-radius: 24px;
  padding: 20px;
  border: 1px solid #f0e8df;
}

.payment-options-title {
  font-weight: 600;
  margin-bottom: 16px;
  color: #3a2c22;
}

.payment-options-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.payment-option-label {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: white;
  border-radius: 20px;
  border: 1px solid #e6dfd5;
  cursor: pointer;
}

.payment-option-label:hover {
  border-color: #b48c5c;
}

.payment-option-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.payment-option-content strong {
  font-size: 14px;
  color: #3a2c22;
}

.payment-option-content span {
  font-size: 12px;
  color: #8a7a68;
}

.payment-warning {
  font-size: 11px;
  color: #b48c5c;
  margin-top: 12px;
}

/* Boutons paiement */
.btn-stripe-elegant {
  width: 100%;
  padding: 16px 20px;
  background: #1a1a2e;
  border: none;
  border-radius: 4px;
  color: white;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 20px 0;
  transition: all 0.3s ease;
}

.btn-stripe-elegant:hover {
  background: #2a2a4e;
  transform: translateY(-2px);
}



.security-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 12px;
  color: #8a7a68;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #f0e8df;
}

.payment-methods-icons {
  display: flex;
  gap: 8px;
  font-size: 18px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .packs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }
  
  .hero-full {
    height: 500px;
  }
  
  .hero-content h1 {
    font-size: 48px;
  }
  
  .packs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .carte-header .desc-courte {
    max-width: 100%;
  }
  
  .inspo-text h2 {
    font-size: 38px;
  }
  
  .soins-luxe-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 1001;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s ease, opacity 0.3s ease;
  }
  
  nav.active {
    visibility: visible;
    opacity: 1;
  }
  
  nav a {
    font-size: 28px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    padding: 12px 30px;
    white-space: nowrap;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s ease;
  }
  
  nav.active a {
    transform: translateY(0);
    opacity: 1;
  }
  
  nav.active a:nth-child(1) { transition-delay: 0.05s; }
  nav.active a:nth-child(2) { transition-delay: 0.1s; }
  nav.active a:nth-child(3) { transition-delay: 0.15s; }
  nav.active a:nth-child(4) { transition-delay: 0.2s; }
  nav.active a:nth-child(5) { transition-delay: 0.25s; }
  nav.active a:nth-child(6) { transition-delay: 0.3s; }
  nav.active a:nth-child(7) { transition-delay: 0.35s; }
  nav.active a:nth-child(8) { transition-delay: 0.4s; }
  
  .hero-full {
    height: 450px;
  }
  
  .hero-content {
    padding: 25px 30px;
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-content p {
    font-size: 14px;
  }
  
  .btn {
    padding: 10px 25px;
    font-size: 13px;
    margin-top: 20px;
  }
  
  .philosophie-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 24px;
    margin: 40px 0;
  }
  
  .philosophie-image {
    height: 300px;
  }
  
  .soin-carte {
    margin: 30px 0;
  }
  
  .carte-header {
    padding: 24px;
  }
  
  .carte-header h2 {
    font-size: 28px;
  }
  
  .soin-item {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  
  .prix-action {
    align-items: center;
    width: 100%;
  }
  
  .prix {
    text-align: center;
  }
  
  .btn-resa-soin {
    width: 100%;
  }
  
  .packs-luxury {
    padding: 32px 24px;
  }
  
  .packs-header h3 {
    font-size: 32px;
  }
  
  .packs-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-grid.reverse {
    direction: ltr;
  }
  
  .blog-text {
    padding: 24px;
  }
  
  .blog-image {
    height: 220px;
  }
  
  .inspo-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px;
  }
  
  .inspo-text h2 {
    font-size: 32px;
  }
  
  .inspo-gallery {
    gap: 12px;
  }
  
  .inspo-img {
    height: 180px;
  }
  
  .page-section {
    padding: 32px 24px;
    margin: 40px 0;
  }
  
  .page-header h2 {
    font-size: 32px;
  }
  
  .avis-card, .gallery-card {
    min-width: 280px;
    width: 280px;
  }
  
  .gallery-card-image {
    height: 280px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .luxe-links {
    grid-template-columns: 1fr;
    border-radius: 32px;
  }
  
  .seances-options {
    flex-direction: column;
  }
  
  .seance-option {
    min-width: auto;
  }
  
  .payment-options-grid {
    flex-direction: column;
  }
  
  .payment-body {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero-full {
    height: 380px;
  }
  
  .hero-content {
    padding: 20px;
  }
  
  .hero-content h1 {
    font-size: 26px;
  }
  
  .logo {
    font-size: 22px;
  }
  
  .carte-header h2 {
    font-size: 24px;
  }
  
  .prix {
    font-size: 22px;
  }
  
  .stat-card {
    padding: 12px 16px;
  }
  
  .stat-note {
    font-size: 28px;
  }
  
  .payment-header h3 {
    font-size: 22px;
  }
}

@media (min-width: 1440px) {
  .container {
    padding: 0 40px;
  }
  
  .hero-full {
    height: 800px;
  }
  
  .hero-content h1 {
    font-size: 72px;
  }
}

@media print {
  .menu-toggle, .nav-overlay, .slider-buttons, .btn, .btn-pack, .btn-resa-soin, .modal, #cookieBanner {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .hero-full {
    height: auto;
    background: none;
  }
  
  .hero-content {
    background: none;
    backdrop-filter: none;
  }
}