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

  :root {
    --sage:        #7B9E87;
    --sage-light:  #A8C4A0;
    --sage-pale:   #D6E8D2;
    --cream:       #F7F5F0;
    --white:       #FFFFFF;
    --terracotta:  #7B9E87;
    --terracotta-light: #F5D4B8;
    --text:        #3A3A3A;
    --text-light:  #6B7280;
    --shadow-sage: rgba(123,158,135,0.35);
    --shadow-soft: rgba(0,0,0,0.10);
    --r-card:      28px;
    --r-btn:       50px;
  }

  html { scroll-behavior: smooth; }
  body { font-family: 'Nunito', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }

  /* PAW BG */
  .paw-bg { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; opacity: 0.045; }
  .paw-bg svg { position: absolute; }

  /* NAV */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(247,245,240,0.92); backdrop-filter: blur(16px);
    border-bottom: 2px solid var(--sage-pale);
    padding: 0 5vw; display: flex; align-items: center; justify-content: space-between; height: 72px;
  }
  .nav-logo { font-family: 'Fredoka One', cursive; font-size: 1.7rem; color: var(--sage); display: flex; align-items: center; gap: 10px; }
  .nav-logo-img { width: 40px; height: 40px; object-fit: contain; filter: brightness(0); }
  .nav-logo span { color: var(--terracotta); }
  .nav-links { display: flex; gap: 28px; list-style: none; }
  .nav-links a { text-decoration: none; color: var(--text-light); font-weight: 700; font-size: .9rem; transition: color .2s; }
  .nav-links a:hover { color: var(--sage); }
  .btn-nav {
    background: var(--sage); color: #fff; border: none; border-radius: var(--r-btn);
    padding: 10px 24px; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: .9rem; cursor: pointer;
    box-shadow: 0 6px 18px var(--shadow-sage); transition: transform .18s, box-shadow .18s;
  }
  .btn-nav:hover { transform: translateY(-2px); box-shadow: 0 10px 24px var(--shadow-sage); }

  /* HERO */
  .hero {
    position: relative; z-index: 1; min-height: 90vh;
    display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px; padding: 80px 5vw 60px;
  }
  .hero-text h1 { font-family: 'Fredoka One', cursive; font-size: clamp(2.6rem, 5.5vw, 4.8rem); line-height: 1.1; }
  .hero-text h1 em { color: var(--sage); font-style: normal; }
  .hero-text p { margin-top: 18px; font-size: 1.1rem; color: var(--text-light); line-height: 1.7; max-width: 440px; }
  .hero-cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--sage); color: #fff; border: none; border-radius: var(--r-btn);
    padding: 15px 36px; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1rem; cursor: pointer;
    box-shadow: 0 8px 24px var(--shadow-sage); transition: transform .18s, box-shadow .18s;
    text-decoration: none; display: inline-block;
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 32px var(--shadow-sage); }
  .btn-outline {
    background: transparent; color: var(--sage); border: 2.5px solid var(--sage); border-radius: var(--r-btn);
    padding: 13px 30px; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1rem; cursor: pointer;
    transition: background .18s, color .18s; text-decoration: none; display: inline-block;
  }
  .btn-outline:hover { background: var(--sage); color: #fff; }

  .hero-stats { display: flex; gap: 24px; margin-top: 40px; flex-wrap: wrap; }
  .stat-pill {
    background: var(--white); border-radius: 18px; padding: 14px 20px;
    box-shadow: 0 6px 20px var(--shadow-soft); text-align: center;
  }
  .stat-pill strong { display: block; font-family: 'Fredoka One', cursive; font-size: 1.7rem; color: var(--sage); }
  .stat-pill span { font-size: .78rem; color: var(--text-light); font-weight: 600; }

  .hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
  .hero-blob {
    width: 400px; height: 400px;
    background: var(--sage-pale); border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
    position: relative; animation: blobPulse 6s ease-in-out infinite;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 20px 60px rgba(123,158,135,0.2);
  }
  @keyframes blobPulse { 0%,100% { border-radius: 60% 40% 55% 45%/50% 60% 40% 50%; } 50% { border-radius: 45% 55% 40% 60%/60% 45% 55% 40%; } }
  .hero-dog { width: 68%; height: 68%; object-fit: contain; filter: brightness(0) drop-shadow(0 10px 20px rgba(0,0,0,0.15)); animation: float 3.5s ease-in-out infinite; }
  @keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
  .badge-float {
    position: absolute; background: var(--white); border-radius: 18px; padding: 11px 16px;
    box-shadow: 0 8px 24px var(--shadow-soft); font-weight: 700; font-size: .82rem;
    display: flex; align-items: center; gap: 8px; animation: floatBadge 4s ease-in-out infinite;
  }
  .badge-float.b1 { top: 36px; left: -24px; animation-delay: 0s; }
  .badge-float.b2 { bottom: 56px; right: -28px; animation-delay: 1.5s; }
  .badge-float.b3 { top: 50%; left: -50px; animation-delay: .8s; }
  @keyframes floatBadge { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-8px) rotate(2deg); } }
  .badge-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--sage); }

  /* SECTIONS */
  .section { position: relative; z-index: 1; padding: 88px 5vw; }
  .section-label {
    display: inline-block; background: var(--sage-pale); color: var(--sage);
    border-radius: var(--r-btn); padding: 5px 16px;
    font-weight: 800; font-size: .78rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px;
  }
  .section-title { font-family: 'Fredoka One', cursive; font-size: clamp(1.9rem, 3.8vw, 2.9rem); color: var(--text); line-height: 1.15; }
  .section-title em { color: var(--sage); font-style: normal; }
  .section-sub { color: var(--text-light); font-size: 1rem; line-height: 1.7; max-width: 520px; margin-top: 10px; }
  .section-header { margin-bottom: 52px; }

  /* CLAY CARDS */
  .clay-card {
    background: var(--white); border-radius: var(--r-card); padding: 34px 28px;
    box-shadow: 0 10px 0 var(--shadow-sage), 0 16px 40px rgba(0,0,0,0.08);
    transition: transform .22s, box-shadow .22s; position: relative; overflow: hidden;
  }
  .clay-card::before { content: ''; position: absolute; inset: 0; border-radius: var(--r-card); border: 2px solid rgba(255,255,255,0.8); pointer-events: none; }
  .clay-card:hover { transform: translateY(-6px); box-shadow: 0 16px 0 var(--shadow-sage), 0 24px 50px rgba(0,0,0,0.11); }
  .clay-card.terracotta { box-shadow: 0 10px 0 rgba(232,168,124,0.4), 0 16px 40px rgba(0,0,0,0.08); }
  .clay-card.terracotta:hover { box-shadow: 0 16px 0 rgba(232,168,124,0.4), 0 24px 50px rgba(0,0,0,0.11); }

  /* SERVICES */
  .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
  .service-icon { font-size: 2.6rem; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; width: 68px; height: 68px; background: var(--sage-pale); border-radius: 20px; }
  .service-name { font-family: 'Fredoka One', cursive; font-size: 1.35rem; color: var(--text); margin-bottom: 9px; }
  .service-desc { color: var(--text-light); font-size: .9rem; line-height: 1.6; }
  .service-tag { display: inline-block; margin-top: 14px; background: var(--sage-pale); color: var(--sage); border-radius: var(--r-btn); padding: 4px 14px; font-weight: 700; font-size: .78rem; }

  /* HORAIRES */
  .horaires-bg { background: var(--sage); }
  .horaires-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
  .horaire-card {
    background: rgba(255,255,255,0.15); border-radius: 20px; padding: 24px 22px;
    backdrop-filter: blur(8px); border: 1.5px solid rgba(255,255,255,0.25);
    transition: background .2s;
  }
  .horaire-card:hover { background: rgba(255,255,255,0.22); }
  .horaire-day { font-family: 'Fredoka One', cursive; font-size: 1.25rem; color: #fff; margin-bottom: 8px; }
  .horaire-time { color: rgba(255,255,255,0.85); font-size: .9rem; font-weight: 600; line-height: 1.6; }
  .horaire-card.closed .horaire-time { color: rgba(255,255,255,0.45); font-style: italic; }
  .horaires-header { text-align: center; margin-bottom: 44px; }
  .horaires-header .section-title { color: #fff; }
  .horaires-header .section-sub { color: rgba(255,255,255,0.75); margin: 10px auto 0; }
  .horaires-header .section-label { background: rgba(255,255,255,0.2); color: #fff; }

  /* GALLERY */
  .gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); grid-template-rows: repeat(2,200px); gap: 14px; }
  .gallery-item { border-radius: 20px; overflow: hidden; position: relative; cursor: pointer; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 2; }
  .gallery-inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 5rem; transition: transform .3s; position: relative; }
  .gallery-item:hover .gallery-inner { transform: scale(1.06); }
  .gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(123,158,135,0.75),transparent); opacity: 0; transition: opacity .3s; display: flex; align-items: flex-end; padding: 14px; }
  .gallery-item:hover .gallery-overlay { opacity: 1; }
  .gallery-overlay span { color: #fff; font-weight: 800; font-size: .88rem; }
  .g-c1 { background: #D6E8D2; } .g-c2 { background: #F5D4B8; } .g-c3 { background: #C8DDD4; }
  .g-c4 { background: #EBD5C8; } .g-c5 { background: #D4E4DC; }

  /* BOOKING */
  .booking-section { background: var(--white); }
  .booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .booking-perks { display: flex; flex-direction: column; gap: 14px; }
  .perk { display: flex; align-items: flex-start; gap: 13px; }
  .perk-icon { width: 44px; height: 44px; border-radius: 14px; background: var(--sage-pale); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
  .perk-text strong { display: block; font-weight: 700; margin-bottom: 2px; font-size: .92rem; }
  .perk-text span { font-size: .83rem; color: var(--text-light); }
  .booking-form { background: var(--cream); border-radius: var(--r-card); padding: 38px 34px; box-shadow: 0 10px 0 var(--shadow-sage), 0 18px 44px rgba(0,0,0,0.07); }
  .form-title { font-family: 'Fredoka One', cursive; font-size: 1.45rem; margin-bottom: 26px; color: var(--text); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
  .form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
  .form-group label { font-weight: 700; font-size: .83rem; color: var(--text-light); }
  .form-group input, .form-group select, .form-group textarea {
    background: var(--white); border: 2px solid transparent; border-radius: 13px;
    padding: 11px 14px; font-family: 'Nunito', sans-serif; font-size: .93rem; color: var(--text);
    outline: none; transition: border-color .18s, box-shadow .18s; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--sage); box-shadow: 0 0 0 4px var(--sage-pale); }
  .form-group textarea { resize: vertical; min-height: 72px; }
  .btn-submit {
    width: 100%; background: var(--sage); color: #fff; border: none; border-radius: var(--r-btn);
    padding: 15px; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1rem; cursor: pointer;
    box-shadow: 0 8px 24px var(--shadow-sage); transition: transform .18s, box-shadow .18s; margin-top: 6px;
  }
  .btn-submit:hover { transform: translateY(-3px); box-shadow: 0 14px 32px var(--shadow-sage); }

  /* TESTIMONIALS */
  .testimonials-bg { background: var(--sage-pale); }
  .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; }
  .testi-card { background: var(--white); border-radius: var(--r-card); padding: 30px; box-shadow: 0 10px 0 var(--shadow-sage), 0 16px 40px rgba(0,0,0,0.07); transition: transform .22s; }
  .testi-card:hover { transform: translateY(-4px); }
  .testi-stars { color: #F59E0B; font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
  .testi-text { font-size: .93rem; line-height: 1.7; color: var(--text-light); margin-bottom: 22px; font-style: italic; }
  .testi-author { display: flex; align-items: center; gap: 12px; }
  .testi-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--sage-pale); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
  .testi-name { font-weight: 800; font-size: .92rem; }
  .testi-meta { font-size: .78rem; color: var(--text-light); }

  /* MAP STRIP */
  .map-strip { background: var(--white); padding: 70px 5vw; }
  .map-strip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
  .map-info h2 { font-family: 'Fredoka One', cursive; font-size: clamp(1.7rem, 3vw, 2.5rem); margin-bottom: 14px; }
  .map-info p { color: var(--text-light); line-height: 1.7; }
  .map-detail { display: flex; align-items: flex-start; gap: 12px; margin-top: 20px; }
  .map-detail-icon { width: 40px; height: 40px; border-radius: 12px; background: var(--sage-pale); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
  .map-detail-text strong { display: block; font-weight: 700; font-size: .9rem; }
  .map-detail-text span { font-size: .83rem; color: var(--text-light); }
  .map-embed { border-radius: 24px; overflow: hidden; height: 320px; box-shadow: 0 10px 0 var(--shadow-sage), 0 18px 40px rgba(0,0,0,0.09); }
  .map-embed iframe { width: 100%; height: 100%; border: 0; }

  /* FOOTER */
  footer { background: var(--text); color: rgba(255,255,255,0.8); padding: 56px 5vw 36px; position: relative; z-index: 1; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
  .footer-logo { font-family: 'Fredoka One', cursive; font-size: 1.5rem; color: var(--sage-light); margin-bottom: 12px; }
  .footer-desc { font-size: .88rem; line-height: 1.7; opacity: .7; }
  .footer-col h4 { color: #fff; font-weight: 700; margin-bottom: 14px; font-size: .92rem; }
  .footer-col a { display: block; color: rgba(255,255,255,0.6); text-decoration: none; font-size: .85rem; margin-bottom: 9px; transition: color .18s; }
  .footer-col a:hover { color: var(--sage-light); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 26px; display: flex; align-items: center; justify-content: space-between; font-size: .83rem; opacity: .5; }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; text-align: center; padding-top: 50px; }
    .hero-text p { margin: 18px auto 0; }
    .hero-cta { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { margin-top: 40px; }
    .hero-blob { width: 300px; height: 300px; }
    .booking-grid, .map-strip-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
    .gallery-item:first-child { grid-column: span 1; grid-row: span 1; }
    .gallery-item:nth-child(4) { grid-column: span 1; }
    nav .nav-links { display: none; }
  }
  @media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-wrap: wrap; }
  }

  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.visible { opacity: 1; transform: none; }

  .toast { position: fixed; bottom: 30px; right: 30px; z-index: 999; background: var(--sage); color: #fff; border-radius: 16px; padding: 14px 22px; font-weight: 700; font-size: .92rem; box-shadow: 0 10px 32px var(--shadow-sage); transform: translateY(80px); opacity: 0; transition: transform .3s, opacity .3s; }
  .toast.show { transform: translateY(0); opacity: 1; }

  /* BOUTIQUE */
  .boutique-bg { background: var(--white); }
  .boutique-toolbar { display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; margin-bottom: 36px; }
  .boutique-carousel-wrap { position:relative; display:flex; align-items:center; gap:10px; }
  .produits-grid {
    display:flex; gap:22px; overflow-x:auto; scroll-snap-type:x mandatory; scroll-behavior:smooth;
    -webkit-overflow-scrolling:touch; padding: 6px 4px 18px; flex:1; min-width:0;
    scrollbar-width: thin; scrollbar-color: var(--sage-pale) transparent;
  }
  .produits-grid::-webkit-scrollbar { height:7px; }
  .produits-grid::-webkit-scrollbar-thumb { background: var(--sage-pale); border-radius:10px; }
  .produits-grid::-webkit-scrollbar-track { background:transparent; }
  .produit-card { display:flex; flex-direction:column; flex:0 0 260px; scroll-snap-align:start; }
  .produit-img { height:150px; border-radius:18px; display:flex; align-items:center; justify-content:center; font-size:4rem; margin-bottom:16px; background: var(--sage-pale); overflow:hidden; }
  .produit-img img { width:100%; height:100%; object-fit:cover; }
  .produit-name { font-family:'Fredoka One',cursive; font-size:1.1rem; margin-bottom:6px; }
  .produit-desc { color: var(--text-light); font-size:.85rem; line-height:1.5; flex-grow:1; }
  .produit-variante-select {
    width:100%; margin:10px 0 4px; padding:9px 12px; border-radius:10px; border:1px solid #e2ddd3;
    font-family:'Nunito',sans-serif; font-size:.82rem; font-weight:700; color: var(--text);
    background: var(--white); cursor:pointer;
  }
  .produit-footer { display:flex; align-items:center; justify-content:space-between; margin-top:16px; }
  .produit-price { font-family:'Fredoka One',cursive; font-size:1.25rem; color:var(--sage); }
  .boutique-empty { text-align:center; padding:50px 20px; color: var(--text-light); width:100%; }
  .boutique-empty span { font-size:2.6rem; display:block; margin-bottom:12px; }
  .carousel-arrow {
    flex-shrink:0; width:44px; height:44px; border-radius:50%; border:none; background: var(--white);
    color: var(--sage); font-size:1.5rem; line-height:1; cursor:pointer; display:flex; align-items:center; justify-content:center;
    box-shadow: 0 4px 16px var(--shadow-soft); transition: background .18s, color .18s, transform .15s;
  }
  .carousel-arrow:hover { background: var(--sage); color:#fff; transform: scale(1.06); }
  @media (max-width: 640px) {
    .carousel-arrow { width:36px; height:36px; font-size:1.25rem; }
    .produit-card { flex-basis: 220px; }
  }

  /* PAGE BOUTIQUE (overlay) */
  .boutique-page {
    position: fixed; inset: 0; z-index: 500;
    background: linear-gradient(180deg, var(--sage-pale) 0%, var(--cream) 340px);
    display: flex; flex-direction: column; overflow-y: auto;
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(18px) scale(0.985);
    transition: opacity .38s cubic-bezier(.22,1,.36,1), transform .38s cubic-bezier(.22,1,.36,1), visibility 0s linear .38s;
  }
  .boutique-page.show {
    opacity: 1; visibility: visible; pointer-events: auto; transform: none;
    transition: opacity .38s cubic-bezier(.22,1,.36,1), transform .38s cubic-bezier(.22,1,.36,1);
  }
  .boutique-page-nav {
    position: sticky; top: 0; z-index: 5; background: rgba(247,245,240,0.85); backdrop-filter: blur(16px);
    border-bottom: 2px solid rgba(123,158,135,0.25);
  }
  .boutique-page-nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 5vw; height: 72px;
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
  }
  .bp-title { font-family: 'Fredoka One', cursive; font-size: 1.3rem; color: var(--sage); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .bp-title span { color: var(--text); font-size: .95rem; font-family: 'Nunito', sans-serif; font-weight: 700; margin-left: 6px; }
  .bp-back {
    background: var(--white); color: var(--sage); border: none; border-radius: var(--r-btn);
    padding: 9px 18px; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: .85rem; cursor: pointer;
    box-shadow: 0 4px 14px var(--shadow-soft); transition: background .18s, color .18s, transform .18s;
  }
  .bp-back:hover { background: var(--sage); color: #fff; transform: translateX(-2px); }
  .bp-close {
    width: 40px; height: 40px; border-radius: 50%; border: none; background: var(--white); color: var(--text);
    font-size: 1.1rem; cursor: pointer; box-shadow: 0 4px 14px var(--shadow-soft); transition: background .18s, color .18s, transform .18s;
    flex-shrink: 0;
  }
  .bp-close:hover { background: var(--sage); color: #fff; transform: rotate(90deg); }
  .boutique-page-body { max-width: 1200px; margin: 0 auto; padding: 60px 5vw 90px; width: 100%; position: relative; }
  .bp-header { margin-bottom: 44px; }
  .bp-header .section-label { background: rgba(255,255,255,0.7); }

  .bp-categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
  .bp-cat-card {
    position: relative; background: var(--white); border-radius: var(--r-card); padding: 30px 26px; cursor: pointer;
    box-shadow: 0 10px 0 var(--shadow-sage), 0 16px 40px rgba(0,0,0,0.08);
    transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s; text-align: left; border: none;
    font-family: 'Nunito', sans-serif; overflow: hidden;
    opacity: 0; transform: translateY(18px);
    animation: bpCardIn .5s cubic-bezier(.22,1,.36,1) forwards;
    animation-delay: calc(var(--stagger, 0) * 0.06s);
  }
  @keyframes bpCardIn { to { opacity: 1; transform: translateY(0); } }
  .bp-cat-card::after {
    content: ''; position: absolute; inset: 0; border-radius: var(--r-card);
    border: 2px solid rgba(255,255,255,0.7); pointer-events: none;
  }
  .bp-cat-card:hover { transform: translateY(-7px) scale(1.015); box-shadow: 0 16px 0 var(--shadow-sage), 0 26px 50px rgba(0,0,0,0.12); }
  .bp-cat-icon {
    width: 58px; height: 58px; border-radius: 18px; font-size: 1.7rem;
    display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
    background: var(--sage-pale); transition: transform .25s;
  }
  .bp-cat-card:hover .bp-cat-icon { transform: scale(1.08) rotate(-4deg); }
  .bp-cat-name { font-family: 'Fredoka One', cursive; font-size: 1.15rem; color: var(--text); margin-bottom: 6px; padding-right: 20px; }
  .bp-cat-count { font-size: .82rem; color: var(--text-light); font-weight: 700; }
  .bp-cat-arrow {
    position: absolute; top: 26px; right: 24px; font-size: 1.1rem; color: var(--sage);
    opacity: 0; transform: translateX(-6px); transition: opacity .2s, transform .2s;
  }
  .bp-cat-card:hover .bp-cat-arrow { opacity: 1; transform: translateX(0); }
  /* Palette de couleurs pour distinguer les catégories au premier coup d'œil */
  .bp-c1 .bp-cat-icon { background: #D6E8D2; }
  .bp-c2 .bp-cat-icon { background: #F5D4B8; }
  .bp-c3 .bp-cat-icon { background: #C8DDD4; }
  .bp-c4 .bp-cat-icon { background: #EBD5C8; }
  .bp-c5 .bp-cat-icon { background: #D4E4DC; }

  .bp-products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
  .bp-products-grid .produit-card {
    opacity: 0; transform: translateY(18px);
    animation: bpCardIn .5s cubic-bezier(.22,1,.36,1) forwards;
    animation-delay: calc(var(--stagger, 0) * 0.05s);
  }
  .bp-products-grid .produit-img { position: relative; }
  .bp-products-grid .produit-img img { transition: transform .4s cubic-bezier(.22,1,.36,1); }
  .bp-products-grid .produit-card:hover .produit-img img { transform: scale(1.08); }
  .bp-products-grid .produit-price {
    background: var(--sage-pale); border-radius: var(--r-btn); padding: 5px 14px; font-size: 1.05rem;
  }
  .bp-empty { text-align: center; padding: 60px 20px; color: var(--text-light); grid-column: 1/-1; }
  .bp-empty span { font-size: 2.8rem; display: block; margin-bottom: 14px; }

  /* Google rating badge */
  .google-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--white); border-radius: 14px; padding: 12px 18px;
    box-shadow: 0 4px 16px var(--shadow-soft); margin-top: 20px;
    font-size: .88rem; font-weight: 700; color: var(--text);
  }
  .google-badge .stars { color: #F59E0B; font-size: 1rem; }
  .google-badge .count { color: var(--text-light); font-weight: 600; }


  .faq-container {
  max-width: 800px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 6px 18px var(--shadow-soft);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  border: none;
  background: none;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
  font-size: 1rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: all 0.3s ease;
  color: var(--text-light);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 10px 20px 20px;
}