:root{
  --bg: #f9f5f6;
  --bg-soft: #f1ece8;
  --header: #e7e2dd;
  --text: #444;
  --title: #2e2e2e;
  --accent: #a67856;
  --border: #eadfd8;
  --shadow: 0 10px 24px rgba(0,0,0,.12);
}

*{ box-sizing: border-box; }

body{
  margin:0;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
}

h1,h2,h3,h4,h5,h6{
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--title);
  margin: 0 0 12px;
}

p{ margin: 0 0 14px; }

/* Header */
.site-header{
  background: var(--header);
  padding: 15px 30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-wrapper{
  display:flex;
  align-items:center;
  gap: 10px;
}

.site-header h1{
  margin:0;
  font-size: 22px;
  font-weight: 600;
  color:#333;
}

/* Logo rond */
.logo{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  padding: 6px;
  display:block;
  flex-shrink: 0;
}

@media (max-width: 640px){
  .logo{
    width: 56px;
    height: 56px;
    padding: 8px;
  }
}

/* Nav */
nav{
  display:flex;
  gap: 15px;
}

nav a{
  text-decoration:none;
  color:#555;
  font-weight: 500;
  transition: color .2s ease;
}

nav a:hover{ color: var(--accent); }

/* Burger */
.menu-toggle{
  display:none;
  flex-direction:column;
  cursor:pointer;
  background: transparent;
  border: 0;
  padding: 6px;
}

.menu-toggle span{
  background:#333;
  height:3px;
  margin:4px 0;
  width:25px;
  border-radius:3px;
}

@media (max-width: 768px){
  nav{
    display:none;
    flex-direction:column;
    position:absolute;
    top: 70px;
    right: 20px;
    background: var(--header);
    padding: 12px 18px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    z-index: 200;
  }

  nav a{ padding: 8px 0; }
  nav.active{ display:flex; }
  .menu-toggle{ display:flex; }
}

/* Sections */
section{
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

section h2{
  font-size: 26px;
  margin-bottom: 20px;
  text-align:center;
}

/* Hero */
.hero{
  text-align:center;
  padding: 80px 20px;
  background: var(--bg-soft);
  max-width: none;
}

.hero h2{
  font-size: 32px;
  color: var(--title);
}

.hero p{
  font-size: 20px;
  max-width: 760px;
  margin: 16px auto;
}

/* Cards */
.cards{ max-width: 1100px; }
.cards h2{ margin-bottom: 10px; }

.cards-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 12px;
}

@media (min-width: 760px){
  .cards-grid{ grid-template-columns: repeat(3, 1fr); }
}

.card{
  background:#fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height: 210px;
}

.tag{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
  display:inline-block;
  margin: 14px 14px 0 14px;
  padding: 6px 10px;
  border-radius: 999px;
}

.tag-rose{ background:#e9d5cf; }
.tag-menthe{ background:#dceee6; }

.card h3{
  margin: 10px 14px 6px 14px;
  font-size: 20px;
}

.card p{
  margin: 0 14px 14px 14px;
  opacity: .9;
}

.cta{
  margin: 10px 14px 16px 14px;
  display:inline-block;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--accent);
  color:#fff;
  font-weight: 700;
  text-align:center;
  text-decoration:none;
}

.cta:hover{ filter: brightness(.95); }

/* À propos */
.mission{
  text-align:center;
  font-style: italic;
  color:#6b584a;
  margin-top: 26px;
}

/* Contact */
.contact-description{
  text-align:center;
  max-width: 720px;
  margin: 0 auto 18px;
}

.contact-image-wrapper{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction: column;
}

.contact-image-wrapper img{
  width: 180px;
  height: 180px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transform: scale(0.70);
  transform-origin: center;
}

.contact-cta{
  text-align:center;
  margin-top: 20px;
}

.contact-cta a{
  display:inline-block;
  padding: 10px 20px;
  background: #c5b8a5;
  color:#fff;
  text-decoration:none;
  border-radius: 10px;
  font-weight: 700;
}

/* Footer */
.site-footer{
  background: var(--header);
  text-align:center;
  padding: 20px;
  margin-top: 40px;
  font-size: 14px;
  color:#666;
}

.site-footer a{
  color:#6b584a;
  text-decoration:none;
}
.contact-description .contact-line{
  display: block;
  margin: 6px 0; /* ajuste l’espace entre les lignes */
}
.tarifs-section {
  padding: 30px 20px;
}

.tarifs-section h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #2f2f35;
}

.tarif-card {
  background: #ffffff;
  border: 1px solid #e8dcd5;
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 18px;
}

.tarif-card h3 {
  margin-bottom: 10px;
  color: #2f2f35;
}

.tarif-card p {
  color: #555;
  line-height: 1.6;
}

.tarif-card strong {
  display: block;
  margin-top: 15px;
  font-size: 1.2rem;
  color: #b07a55;
}
/* Correction mise en page bas de page */
#apropos,
#contact {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
  display: block;
}

#apropos p,
#contact p {
  max-width: 650px;
  margin: 14px auto;
  line-height: 1.7;
}

#contact iframe,
#contact .calendly-inline-widget {
  margin: 30px auto;
  display: block;
  max-width: 100%;
}

footer {
  display: block;
  text-align: center;
  max-width: 800px;
  margin: 50px auto 20px auto;
  padding: 20px;
}
/* Correction affichage desktop : sections empilées */
#apropos,
#contact,
footer {
  width: 100%;
  max-width: 850px;
  margin: 60px auto;
  padding: 20px;
  text-align: center;
  display: block;
  float: none;
  clear: both;
}

#apropos {
  margin-top: 80px;
}

#contact iframe,
#contact .calendly-inline-widget {
  display: block;
  margin: 30px auto;
  max-width: 100%;
}

footer {
  margin-top: 40px;
  background: #e7e2dd;
}
}
.product-gallery{
    width:380px;
    height:280px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    flex-shrink:0;
}

.product-gallery img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:20px;
    display:block;
}

.product-card .product-info{
    flex:1;
    position:relative;
    z-index:2;
}
@media(max-width:900px){

    .product-gallery{
        width:100%;
        height:auto;
        grid-template-columns:1fr;
    }

    .product-gallery img{
        height:260px;
    }

}
.product-card{
    display:flex !important;
    align-items:center !important;
    gap:40px !important;
}

.product-gallery{
    width:380px !important;
    height:280px !important;
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:12px !important;
    flex-shrink:0 !important;
}

.product-gallery img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    border-radius:20px !important;
    display:block !important;
}

.product-info{
    flex:1 !important;
    position:relative !important;
    z-index:5 !important;
}
/* Consultation express */

.consultation-express {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    text-align: center;
    background-color: #f8f5f1;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.consultation-express h2 {
    color: #6d5544;
    margin-bottom: 20px;
}

.consultation-express p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.prix-consultation {
    font-size: 1.3rem;
    font-weight: 600;
    color: #b8875e;
    margin: 25px 0;
}

.btn-consultation {
    display: inline-block;
    background-color: #b8875e;
    color: white;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-consultation:hover {
    background-color: #a6774f;
}
.retour-accueil {
    padding: 20px 8%;
    background-color: #f9f5f1;
}

.retour-accueil a {
    color: #24304a;
    text-decoration: none;
    font-weight: 600;
}
/* Témoignages */

.temoignages {
  padding: 60px 20px;
  background: #faf7f4;
  text-align: center;
}

.temoignages h2 {
  margin-bottom: 10px;
  color: #5f5a57;
}

.intro-temoignages {
  max-width: 700px;
  margin: 0 auto 35px;
  color: #7a7470;
  font-size: 1rem;
}

.temoignages-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.temoignage-card {
  background: #ffffff;
  padding: 28px 24px;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  border: 1px solid #eee2dc;
  text-align: left;
}

.temoignage-card p {
  margin: 0;
  color: #5f5a57;
  line-height: 1.6;
  font-style: italic;
}

.temoignage-card span {
  display: block;
  margin-top: 16px;
  color: #8d7770;
  font-weight: 600;
}
