:root {
  /* Palette Scrapnwood — champêtre */
  --wood: #FAF7F1;
  --paper: #ffffff;
  --forest: #5A6B42;
  --forest-deep: #3D5030;

  --cream:  #FAF7F1;
  --linen:  #F3EBDD;
  --sand:   #EADCC4;
  --bark:   #4a3520;
  --gold:   #C9964B;
  --gold-l: #D4A96A;
  --ink-warm: #3a2f24;

  --dark: #1f1f1f;
  --light: #ffffff;

  --radius: 14px;
  --shadow: 0 10px 25px rgba(74,53,32,.08);
  --max-width: 1500px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Product Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

body {
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
}

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

.container {
  max-width: var(--max-width);
  margin: auto;
  padding: 30px 20px;
}

/* HEADER */
header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
  backdrop-filter: blur(10px);
}

header .container{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}

/* Logo */
.logo{ display:flex; align-items:center; }
.logo img{
  height: 60px;
  width: auto;
  display:block;
}

/* NAV LINKS (desktop + mobile) */

/* Desktop spacing */
@media (min-width: 901px){
  .nav-link { margin-left: 10px; }
}

/* Hover / focus */
.nav-link:hover{
  background: #EDE3DF;
  transform: translateY(-1px);
}

.nav-link:focus-visible{
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.nav-link:focus{
  outline: 3px solid #49342C;
  outline-offset: 2px;
}

/* Etat actif (page courante) */
.nav-link.is-active{
  background: #DCC9C2;
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
}


/* -----------------------------
   HAMBURGER (Bootstrap Icon) + NAV (responsive)
   ----------------------------- */

/* Bouton menu: caché desktop */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  cursor: pointer;

  border-radius: 12px;
  background: rgba(90, 107, 66, .12);
  color: var(--forest);

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

  transition: opacity .15s ease, background .15s ease;
}

.nav-toggle i {
  font-size: 1.5rem; /* bi-list */
  line-height: 1;
}

.nav-toggle:hover {
  background: rgba(90, 107, 66, .2);
}

.nav-toggle:focus {
  outline: 3px solid rgba(90, 107, 66, .35);
  outline-offset: 2px;
}

/* Backdrop */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 998;
  opacity: 0;
  transition: opacity .2s ease;
}

.nav-backdrop.is-open { opacity: 1; }

/* Bloque le scroll quand menu ouvert */
.no-scroll { overflow: hidden; }

/* Mobile */
@media (max-width: 900px) {
  /* header plus compact */
  header .container {
    padding: 18px 16px;
  }

  /* logo mobile */
  .logo img {
    height: 38px;
  }

  /* affiche hamburger */
  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 1000; /* au-dessus du panneau */
  }

  /* nav en panneau latéral */
  nav.nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 86vw);
    background: var(--wood);
    box-shadow: -12px 0 30px rgba(0,0,0,.12);
    z-index: 999;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    padding: 90px 18px 18px;

    transform: translateX(105%);
    transition: transform .25s ease;

    /* permet à la croix absolute de se placer correctement */
    isolation: isolate;
  }

  nav.nav.is-open {
    transform: translateX(0);
  }

  /* Boutons de nav dans le panneau */
  nav.nav .nav-link {
    margin: 0;
    padding: 14px 14px;
    border-radius: 14px;
    font-size: 1.05rem;

    background: rgba(90, 107, 66, .10);
    transform: none;
  }

  nav.nav .nav-link:hover{
    background: rgba(90, 107, 66, .18);
  }

  nav.nav .nav-link.is-active{
    background: rgba(90, 107, 66, .24);
    box-shadow: none;
  }
}

/* Masquer le bouton menu quand le menu est ouvert (plus fiable que visibility) */
.nav-toggle[aria-expanded="true"] {
  opacity: 0;
  pointer-events: none;
}

/* -----------------------------
   CROIX (Bootstrap Icon) DANS LE MENU
   ----------------------------- */

.nav-close {
  display: none; /* caché desktop */
  position: absolute;
  top: 18px;
  right: 16px;

  width: 44px;
  height: 44px;

  border: 0;
  border-radius: 12px;
  cursor: pointer;

  background: rgba(90, 107, 66, .12);
  color: var(--forest);

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

  z-index: 2;
}

.nav-close i {
  font-size: 1.25rem; /* bi-x-lg */
  line-height: 1;
}

.nav-close:hover {
  background: rgba(90, 107, 66, .2);
}

.nav-close:focus {
  outline: 3px solid rgba(90, 107, 66, .35);
  outline-offset: 2px;
}

@media (max-width: 900px) {
  .nav-close {
    display: inline-flex;
  }
}

/* BOUTONS GLOBAUX */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  background: #ffffff;
  color: var(--forest);
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,.15);
}

/* FOOTER */
footer {
  background: var(--forest);
  color: var(--paper);
  padding: 40px 20px;
  margin-top: 80px;
  text-align: center;
}

/* Effet machine à écrire */
.typed {
  display: inline;
  white-space: normal;
  overflow-wrap: break-word;
}

@keyframes blink {
  50% { border-color: transparent; }
}


/* Séparer visuellement la nav (Contact) et les actions */
#primary-nav .header-actions{
  margin-left: 10px;
  padding-left: 12px;
  border-left: 1px solid rgba(0,0,0,.10);
}

/* Actions plus compactes */
#primary-nav .pill-btn{
  padding: 8px 10px;          /* plus petit */
  height: 36px;               /* plus petit */
  font-size: .92rem;
  font-weight: 800;
  border-radius: 999px;
  background: rgba(0,0,0,.04); /* plus neutre que le vert */
  border: 1px solid rgba(0,0,0,.08);
}

#primary-nav .pill-btn.ghost{
  background: transparent;
}

/* Déconnexion en "danger" discret (optionnel mais lisible) */
#primary-nav .pill-btn.logout{
  color: rgba(138,46,46,.95);
  border-color: rgba(138,46,46,.18);
  background: rgba(138,46,46,.06);
}
#primary-nav .pill-btn.logout:hover{
  background: rgba(138,46,46,.10);
}

#primary-nav .header-actions{
  gap: 8px;
}




  #primary-nav .header-actions{
    margin-left: 0;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}


.header-actions{
  display:flex;
  align-items:center;
  gap: 10px;
}

.icon-btn{
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(90,107,66,.10);
  border: 1px solid rgba(0,0,0,.06);
}
.icon-btn i{ font-size: 1.2rem; }

.badge-count{
  position:absolute;
  top: -6px;
  right: -6px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: var(--forest);
  color: #fff;
  font-weight: 900;
  font-size: .78rem;
  border: 2px solid #fff;
}

.pill-btn{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(90,107,66,.10);
  border: 1px solid rgba(0,0,0,.06);
  font-weight: 800;
}
.pill-btn.ghost{
  background: transparent;
}

.icon-btn.is-active, .pill-btn.is-active{
  border-color: rgba(90,107,66,.65);
}

.nav-sep{
  height: 1px;
  background: rgba(0,0,0,.08);
  margin: 10px 0;
  border-radius: 999px;
}

/* Icônes dans les liens nav */
.nav .nav-link i{
  margin-right: 8px;
  font-size: 1.05rem;
}



.nav .badge-count{
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: var(--forest);
  color: #fff;
  font-weight: 900;
  font-size: .78rem;
}
/* Liens */
.nav-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 1.05rem;
  color: #66483D;

  background: transparent;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}

/* NAV desktop sur une seule ligne */
.header-row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
}

#primary-nav.nav{
  display:flex;
  align-items:center;
  gap: 14px;
  margin-left: auto;
}


/* Wrapper liens */
#primary-nav .nav-links{
  display:flex;
  align-items:center;
  gap: 10px;
}

/* Séparateur */
#primary-nav .nav-sep{
  width: 1px;
  height: 28px;
  background: rgba(0,0,0,.12);
  border-radius: 999px;
  margin: 0 4px;
}

/* Actions icônes */
#primary-nav .header-actions.icon-only{
  display:flex;
  align-items:center;
  gap: 10px;
}

#primary-nav .icon-btn{
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.08);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}

#primary-nav .icon-btn i{
  font-size: 1.05rem;
  color: rgba(31,31,31,.78);
}

#primary-nav .icon-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
  background: rgba(0,0,0,.06);
}

#primary-nav .icon-btn.is-active{
  border-color: rgba(90,107,66,.65);
  background: rgba(90,107,66,.10);
}

#primary-nav .icon-btn.danger{
  background: rgba(138,46,46,.06);
  border-color: rgba(138,46,46,.16);
}
#primary-nav .icon-btn.danger i{ color: rgba(138,46,46,.90); }
#primary-nav .icon-btn.danger:hover{ background: rgba(138,46,46,.10); }

/* Badge panier */
#primary-nav .badge-count{
  position:absolute;
  top: -7px;
  right: -7px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: var(--forest);
  color: #fff;
  font-weight: 900;
  font-size: .72rem;
  border: 2px solid #fff;
}

/* Mobile : menu panneau => liens en colonne, actions aussi */
@media (max-width: 900px){
  #primary-nav.nav{
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-left: 0;
  }
  #primary-nav .nav-sep{
    width: 100%;
    height: 1px;
    margin: 6px 0;
  }
  #primary-nav .header-actions.icon-only{
    justify-content: flex-start;
    padding-top: 6px;
  }
}

/* Panier (icône + badge) */
.nav-cart{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;          /* ajuste si tes autres icônes ont une taille */
  height: 42px;
  border-radius: 999px;
}

.nav-cart i{
  font-size: 1.1rem;
  line-height: 1;
}

/* Badge */
.badge-count{
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  border-radius: 999px;

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

  font-size: 12px;
  font-weight: 900;

  background: #2f6f52;   /* vert */
  color: #fff;
  border: 2px solid #fff; /* contour blanc pour lisibilité */
}

.nav-link.is-active{
  background: #DCC9C2;
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
}

/* Actions à droite */
.header-actions.icon-only{
  display:flex;
  align-items:center;
  gap: 10px;
  padding-left: 12px;
  margin-left: 6px;
  border-left: 1px solid var(--header-border);
}

/* Boutons icônes */
.icon-btn{
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 999px;

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

  background: var(--chip);
  border: 1px solid rgba(0,0,0,.08);

  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}

.icon-btn i{
  font-size: 1.05rem;
  color: rgba(31,31,31,.78);
}

.icon-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0,0,0,.12);
  background: var(--chip-hover);
}

.icon-btn:focus-visible{
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.icon-btn.is-active{
  border-color: rgba(90,107,66,.70);
  background: rgba(90,107,66,.14);
}

.icon-btn.danger{
  background: rgba(138,46,46,.06);
  border-color: rgba(138,46,46,.18);
}
.icon-btn.danger i{ color: rgba(138,46,46,.90); }
.icon-btn.danger:hover{ background: rgba(138,46,46,.10); }

/* Badge panier */
.badge-count{
  position:absolute;
  top: -7px;
  right: -7px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;

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

  background: var(--accent);
  color: #fff;
  font-weight: 900;
  font-size: .72rem;
  border: 2px solid #fff;
}

/* -----------------------------------------
   Mobile: panneau latéral
   ----------------------------------------- */

/* Hamburger hidden desktop */
.nav-toggle{
  display:none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  background: rgba(90,107,66,.14);
  color: rgba(31,31,31,.82);
  cursor:pointer;

  align-items:center;
  justify-content:center;
}

.nav-toggle i{ font-size: 1.6rem; line-height:1; }

.nav-toggle:focus-visible{
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

/* Backdrop */
.nav-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.42);
  z-index: 98;
  opacity: 0;
  transition: opacity .20s ease;
}
.nav-backdrop.is-open{ opacity: 1; }

/* bloquer scroll */
.no-scroll{ overflow: hidden; }

.nav-close{
  display:none;
  position:absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  background: rgba(90,107,66,.14);
  cursor:pointer;

  align-items:center;
  justify-content:center;
}
.nav-close i{ font-size: 1.25rem; line-height:1; }
.nav-close:focus-visible{
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

/* Mobile layout */
@media (max-width: 900px){
  header .container{ padding: 14px 16px; }
  .logo img{ height: 40px; }

  .nav-toggle{ display:inline-flex; z-index: 100; }

  #primary-nav.nav{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(360px, 88vw);

    background: #fff;
    z-index: 99;
    box-shadow: -20px 0 55px rgba(0,0,0,.18);

    padding: 80px 16px 18px;
    display:flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;

    transform: translateX(105%);
    transition: transform .25s ease;
    border-left: 1px solid rgba(0,0,0,.08);
    isolation: isolate;
  }

  #primary-nav.nav.is-open{ transform: translateX(0); }

  .nav-close{ display:inline-flex; }

  #primary-nav .nav-links{
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  #primary-nav .nav-link{
    justify-content: flex-start;
    border-radius: 16px;
    padding: 14px 14px;
    background: rgba(90,107,66,.10);
    transform: none;
  }

  #primary-nav .nav-link:hover{
    background: rgba(90,107,66,.18);
  }

  #primary-nav .nav-link.is-active{
    background: rgba(90,107,66,.26);
    box-shadow: none;
  }

  .header-actions.icon-only{
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
    padding-top: 6px;
    flex-wrap: wrap;
  }

  /* cacher bouton menu quand ouvert */
  .nav-toggle[aria-expanded="true"]{
    opacity: 0;
    pointer-events:none;
  }
}

/* ===== GRID PRODUITS ===== */
.product-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 30px;
}

/* ===== CARTE PRODUIT ===== */
.product-card{
  background:#fff;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  display:flex;
  flex-direction:column;
  transition: transform .18s ease, box-shadow .18s ease;
}

.product-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0,0,0,.14);
}

/* IMAGE */
.product-card .thumb{
  height: 220px;
  background: rgba(90,107,66,.08);
  display:flex;
  align-items:center;
  justify-content:center;
}

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

/* CONTENU */
.product-card .content{
  padding: 14px 16px 16px;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.product-card h3{
  margin:0;
  font-size:1.05rem;
  font-weight:950;
  color:#49342C;
}

.product-card .desc{
  font-size:.92rem;
  color: rgba(0,0,0,.65);
  font-weight:700;
  line-height:1.4;
}

.product-card .price{
  font-weight:950;
  font-size:1.1rem;
  color:#2f6f52;
  margin-top:4px;
}

.product-card .stock{
  font-size:.85rem;
  font-weight:800;
  color:#2f6f52;
}

/* ACTIONS */
.product-card .actions{
  margin-top:10px;
  display:flex;
  gap:10px;
}

.product-card .actions a,
.product-card .actions button{
  flex:1;
  height:38px;
  border-radius:999px;
  font-weight:900;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  cursor:pointer;
}

.product-card .actions .btn-primary{
  background: var(--forest);
  color:#fff;
  border-color: transparent;
}

/* VERSION: CHAMPETRE-V3 (+ page-header) (classes réelles: shop-hero, cart-hero...) */
/* ═══════════════════════════════════════════════════
   THÈME CHAMPÊTRE — héros de page (toutes classes réelles)
   ═══════════════════════════════════════════════════ */
.hero, .p-hero, .page-hero, .page-header, .shop-hero, .cart-hero, .checkout-hero, .avis-hero, .fac-hero, .legal-hero, .cmd-hero, .pay-hero, .acc-hero {
  position: relative;
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, #FDFAF4 0%, transparent 60%),
    linear-gradient(165deg, #F7F0E3 0%, #F0E5D2 55%, #EADCC4 100%) !important;
  color: var(--ink-warm) !important;
  overflow: hidden;
}
.hero::before, .p-hero::before, .page-hero::before, .page-header::before, .shop-hero::before, .cart-hero::before, .checkout-hero::before, .avis-hero::before, .fac-hero::before, .legal-hero::before, .cmd-hero::before, .pay-hero::before, .acc-hero::before {
  content: '';
  position: absolute;
  left: -60px; bottom: -50px;
  width: 300px; height: 380px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 260'%3E%3Cg stroke='%23B89B72' stroke-opacity='.45' fill='none' stroke-width='1.1'%3E%3Cpath d='M100 260 C 98 200 96 150 88 100 C 84 75 76 50 62 30'/%3E%3Cpath d='M92 160 C 80 140 66 128 48 122'/%3E%3Cpath d='M95 120 C 108 100 122 90 140 86'/%3E%3Cpath d='M90 200 C 76 186 60 178 42 176'/%3E%3C/g%3E%3Cg fill='%23C9AE85' fill-opacity='.4'%3E%3Ccircle cx='62' cy='30' r='3'/%3E%3Ccircle cx='54' cy='38' r='2.2'/%3E%3Ccircle cx='48' cy='122' r='2.8'/%3E%3Ccircle cx='140' cy='86' r='2.9'/%3E%3Ccircle cx='42' cy='176' r='2.6'/%3E%3Ccircle cx='146' cy='94' r='2'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(12deg);
  pointer-events: none;
  opacity: .8;
  filter: none;
  border-radius: 0;
}
.hero::after, .p-hero::after, .page-hero::after, .page-header::after, .shop-hero::after, .cart-hero::after, .checkout-hero::after, .avis-hero::after, .fac-hero::after, .legal-hero::after, .cmd-hero::after, .pay-hero::after, .acc-hero::after {
  content: '';
  position: absolute;
  right: -60px; bottom: -50px;
  width: 300px; height: 380px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 260'%3E%3Cg stroke='%23B89B72' stroke-opacity='.45' fill='none' stroke-width='1.1'%3E%3Cpath d='M100 260 C 98 200 96 150 88 100 C 84 75 76 50 62 30'/%3E%3Cpath d='M92 160 C 80 140 66 128 48 122'/%3E%3Cpath d='M95 120 C 108 100 122 90 140 86'/%3E%3Cpath d='M90 200 C 76 186 60 178 42 176'/%3E%3C/g%3E%3Cg fill='%23C9AE85' fill-opacity='.4'%3E%3Ccircle cx='62' cy='30' r='3'/%3E%3Ccircle cx='54' cy='38' r='2.2'/%3E%3Ccircle cx='48' cy='122' r='2.8'/%3E%3Ccircle cx='140' cy='86' r='2.9'/%3E%3Ccircle cx='42' cy='176' r='2.6'/%3E%3Ccircle cx='146' cy='94' r='2'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transform: scaleX(-1) rotate(12deg);
  pointer-events: none;
  opacity: .8;
  filter: none;
  border-radius: 0;
}
.hero > *, .p-hero > *, .page-hero > *, .page-header > *, .shop-hero > *, .cart-hero > *, .checkout-hero > *, .avis-hero > *, .fac-hero > *, .legal-hero > *, .cmd-hero > *, .pay-hero > *, .acc-hero > * {
  position: relative;
  z-index: 1;
}
/* Blobs décoratifs hérités du thème sombre : masqués */
.hero [class*="blob"], .p-hero [class*="blob"], .page-hero [class*="blob"], .page-header [class*="blob"], .shop-hero [class*="blob"], .cart-hero [class*="blob"], .checkout-hero [class*="blob"], .avis-hero [class*="blob"], .fac-hero [class*="blob"], .legal-hero [class*="blob"], .cmd-hero [class*="blob"], .pay-hero [class*="blob"], .acc-hero [class*="blob"] { display: none !important; }

/* Titres serif brun + accent kaki italique */
.hero h1, .p-hero h1, .page-hero h1, .page-header h1, .shop-hero h1, .cart-hero h1, .checkout-hero h1, .avis-hero h1, .fac-hero h1, .legal-hero h1, .cmd-hero h1, .pay-hero h1, .acc-hero h1 {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-weight: 600 !important;
  color: var(--ink-warm) !important;
  letter-spacing: .01em;
}
.hero h1 em, .hero h1 span, .p-hero h1 em, .p-hero h1 span, .page-hero h1 em, .page-hero h1 span, .page-header h1 em, .page-header h1 span, .shop-hero h1 em, .shop-hero h1 span, .cart-hero h1 em, .cart-hero h1 span, .checkout-hero h1 em, .checkout-hero h1 span, .avis-hero h1 em, .avis-hero h1 span, .fac-hero h1 em, .fac-hero h1 span, .legal-hero h1 em, .legal-hero h1 span, .cmd-hero h1 em, .cmd-hero h1 span, .pay-hero h1 em, .pay-hero h1 span, .acc-hero h1 em, .acc-hero h1 span {
  font-style: italic;
  color: var(--forest) !important;
}
/* Sous-titres */
.hero p, .p-hero p, .page-hero p, .page-header p, .shop-hero p, .cart-hero p, .checkout-hero p, .avis-hero p, .fac-hero p, .legal-hero p, .cmd-hero p, .pay-hero p, .acc-hero p {
  color: rgba(58,47,36,.68) !important;
}
/* Badges de hero : pastille blanche, texte kaki */
.hero [class*="badge"], .p-hero [class*="badge"], .page-hero [class*="badge"], .page-header [class*="badge"], .shop-hero [class*="badge"], .cart-hero [class*="badge"], .checkout-hero [class*="badge"], .avis-hero [class*="badge"], .fac-hero [class*="badge"], .legal-hero [class*="badge"], .cmd-hero [class*="badge"], .pay-hero [class*="badge"], .acc-hero [class*="badge"] {
  background: rgba(255,255,255,.68) !important;
  border: 1px solid rgba(90,107,66,.22) !important;
  color: var(--forest-deep) !important;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(74,53,32,.06);
}
.hero [class*="badge"] i, .p-hero [class*="badge"] i, .page-hero [class*="badge"] i, .page-header [class*="badge"] i, .shop-hero [class*="badge"] i, .cart-hero [class*="badge"] i, .checkout-hero [class*="badge"] i, .avis-hero [class*="badge"] i, .fac-hero [class*="badge"] i, .legal-hero [class*="badge"] i, .cmd-hero [class*="badge"] i, .pay-hero [class*="badge"] i, .acc-hero [class*="badge"] i {
  color: var(--gold) !important;
}

/* Cartes : ombre chaude */
.card, .box, .panel {
  box-shadow: 0 10px 25px rgba(74,53,32,.08);
}
