/* Styles de la page recyclerie (recyclerie.html) — externalisés du HTML le 15/08/2026 pour un chargement plus rapide et un code plus lisible. Contenu inchangé, simplement déplacé. */

    :root {
      --blue: #0077a3;
      --blue-strong: #1E88E5;
      --accent: #e63946;
      --green: #2e7d32;
      --green-light: #e8f5e9;
      --soft: #f5f7fb;
      --radius: 12px;
      --max-width: 1200px;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: 'Poppins', Arial, sans-serif; color: #222; background: var(--soft); -webkit-font-smoothing: antialiased; }

    /* ── Header ── */
    header { background: var(--blue); color: #fff; padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; box-shadow: 0 6px 18px rgba(3,44,61,0.12); position: sticky; top: 0; z-index: 100; }
    .brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: #fff; }
    header img.logo { height: 60px; width: auto; }
    .brand-name { font-weight: 700; font-size: 16px; }
    .brand-sub { font-size: 12px; opacity: 0.9; }
    nav { display: flex; align-items: center; gap: 12px; }
    nav a { color: #fff; text-decoration: none; font-size: 14px; opacity: 0.9; }
    nav a:hover { opacity: 1; }
    nav .cta { background: var(--accent); padding: 9px 16px; border-radius: 999px; font-weight: 600; opacity: 1; font-size: 14px; }
    @media(max-width:600px) { header img.logo { height: 44px; } }

    /* ── Hero ── */
    .hero { color: #fff; text-align: center; padding: 52px 20px; background: linear-gradient(135deg, rgba(46,125,50,0.92), rgba(0,184,148,0.90)), url('images/jardin-apres.jpg') center/cover no-repeat; }
    .hero-eyebrow { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); padding: 6px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; margin-bottom: 14px; }
    .hero h1 { font-size: 38px; font-weight: 700; margin-bottom: 8px; text-shadow: 0 4px 14px rgba(0,0,0,0.2); }
    .signature { font-family: 'Dancing Script', cursive; font-size: 22px; opacity: 0.9; display: block; margin-bottom: 12px; }
    .hero p { font-size: 16px; max-width: 620px; margin: 0 auto 22px; opacity: 0.92; line-height: 1.6; }
    .hero-badges { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
    .hero-badge { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); padding: 7px 16px; border-radius: 999px; font-size: 13px; font-weight: 500; }
    @media(max-width:600px){ .hero h1 { font-size:26px; } }

    /* ── Main layout ── */
    main { max-width: var(--max-width); margin: 32px auto 60px; padding: 0 18px; }

    /* ── Filtres + recherche ── */
    .toolbar { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; background: #fff; padding: 16px 20px; border-radius: var(--radius); box-shadow: 0 4px 16px rgba(3,44,61,0.06); }
    .toolbar-title { font-weight: 700; font-size: 16px; color: #222; flex: 1; min-width: 180px; }
    .search-box { display: flex; align-items: center; gap: 8px; background: var(--soft); border: 1.5px solid #e0eaf2; border-radius: 999px; padding: 8px 16px; flex: 1; min-width: 200px; max-width: 300px; }
    .search-box input { border: none; background: none; font-family: 'Poppins', sans-serif; font-size: 14px; color: #222; outline: none; width: 100%; }
    .search-box i { color: #aaa; font-size: 14px; }
    .filter-btns { display: flex; gap: 8px; flex-wrap: wrap; }
    .filter-btn { padding: 7px 16px; border-radius: 999px; border: 1.5px solid #dde8f0; background: #fff; font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600; color: #555; cursor: pointer; transition: all 0.2s; }
    .filter-btn:hover, .filter-btn.active { background: var(--green); border-color: var(--green); color: #fff; }
    .stock-count { font-size: 13px; color: #888; white-space: nowrap; }

    /* ── Grille produits ── */
    .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }

    /* ── Carte produit ── */
    .product-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 6px 24px rgba(3,44,61,0.07); transition: transform 0.25s, box-shadow 0.25s; cursor: pointer; position: relative; border: 1.5px solid transparent; display: flex; flex-direction: column; height: 100%; }
    .product-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(3,44,61,0.12); border-color: #d0e8f5; }
    .product-card.vendu { opacity: 0.75; cursor: default; }
    .product-card.vendu:hover { transform: none; box-shadow: 0 6px 24px rgba(3,44,61,0.07); }

    /* Vignette photo */
    .product-img { position: relative; width: 100%; height: 220px; overflow: hidden; background: #f7f8fa; display:flex; align-items:center; justify-content:center; }
    .product-img img { width: 100%; height: 100%; object-fit: contain; object-position: center; transition: transform 0.35s ease; display: block; }
    .product-card:not(.vendu):hover .product-img img { transform: scale(1.04); }
    .product-img .no-photo { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #bbb; font-size: 13px; gap: 8px; }
    .product-img .no-photo i { font-size: 36px; }

    /* Ruban VENDU */
    .vendu-ribbon { position: absolute; top: 18px; left: -8px; background: var(--accent); color: #fff; font-size: 13px; font-weight: 700; padding: 6px 20px 6px 16px; letter-spacing: 1px; clip-path: polygon(0 0, 100% 0, 92% 50%, 100% 100%, 0 100%); box-shadow: 2px 2px 8px rgba(0,0,0,0.2); z-index: 2; }

    /* Badge NOUVEAU */
    .badge-new { position: absolute; top: 10px; left: 10px; background: #e63946; color: #fff; font-size: 10px; font-weight: 800; padding: 3px 9px; border-radius: 999px; letter-spacing: 0.5px; z-index: 2; text-transform: uppercase; box-shadow: 0 2px 6px rgba(230,57,70,0.4); }

    /* Badge À SAISIR */
    .badge-highlight { position: absolute; top: 10px; left: 10px; background: linear-gradient(135deg, #f4a00a, #e67e00); color: #fff; font-size: 10px; font-weight: 800; padding: 3px 9px; border-radius: 999px; letter-spacing: 0.5px; z-index: 2; text-transform: uppercase; box-shadow: 0 2px 6px rgba(244,160,10,0.5); }
    .product-card.highlight { border-color: #f4a00a !important; box-shadow: 0 6px 24px rgba(244,160,10,0.18); }

    /* Badge catégorie */
    .cat-badge { position: absolute; top: 10px; right: 10px; background: rgba(0,0,0,0.45); color: #fff; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 999px; backdrop-filter: blur(4px); }

    /* Infos carte */
    .product-info { padding: 16px; display: flex; flex-direction: column; flex: 1; }
    .product-name { font-size: 16px; font-weight: 700; color: #222; margin-bottom: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .product-desc { font-size: 13px; color: #666; line-height: 1.5; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; height: 39px; }
    .product-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; }
    .product-price { font-size: 20px; font-weight: 700; color: var(--green); display: flex; align-items: baseline; gap: 7px; }
    .product-price .old-price { font-size: 13px; font-weight: 500; color: #bbb; text-decoration: line-through; }
    .product-price .discount-badge { font-size: 11px; font-weight: 700; background: #fdecea; color: #e63946; padding: 2px 7px; border-radius: 999px; }
    .btn-reserver { background: var(--green); color: #fff; border: none; padding: 9px 18px; border-radius: 999px; font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 700; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
    .btn-reserver:hover { background: #1b5e20; transform: translateY(-1px); }
    .vendu-label { font-size: 13px; font-weight: 700; color: var(--accent); }

    /* État dispo */
    .dispo-dot { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: #888; margin-bottom: 10px; }
    .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
    .dot.green { background: #43A047; }
    .dot.red { background: var(--accent); }

    /* ── Loading ── */
    .loading { text-align: center; padding: 60px 20px; color: #888; }
    .loading i { font-size: 32px; animation: spin 1s linear infinite; display: block; margin-bottom: 12px; color: var(--green); }
    @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

    /* ── Section À saisir ── */
    .section-highlight { margin: 0 0 32px 0; }
    .section-highlight-title { font-size: 15px; font-weight: 700; color: #e67e00; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
    .section-highlight-title::after { content: ''; flex: 1; height: 1.5px; background: linear-gradient(90deg, #f4a00a33, transparent); border-radius: 2px; }
    .section-highlight .products-grid { margin-bottom: 0; }

    /* ── Barre de tri ── */
    .sort-bar { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
    .sort-bar label { font-size: 12px; font-weight: 600; color: #888; }
    .sort-select { font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 600; color: #444; background: #fff; border: 1.5px solid #e0eaf2; border-radius: 999px; padding: 5px 14px; cursor: pointer; outline: none; }
    .sort-select:focus { border-color: var(--green); }

    /* ── Bouton partage WhatsApp fiche ── */
    .fiche-btn-share { background: #25D366; color: #fff; border: none; padding: 12px 18px; border-radius: 999px; font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; gap: 7px; white-space: nowrap; }
    .fiche-btn-share:hover { background: #128C7E; transform: translateY(-1px); }
    .fiche-btn-wsp { background: #25D366; color: #fff; border: none; padding: 14px 24px; border-radius: 999px; font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.2s; flex: 1; }
    .fiche-btn-wsp:hover { background: #128C7E; transform: translateY(-2px); }

    /* ── Vide ── */
    .empty-state { text-align: center; padding: 60px 20px; color: #aaa; }
    .empty-state i { font-size: 48px; margin-bottom: 14px; display: block; }

    /* ── Modal réservation ── */
    #modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 9000; backdrop-filter: blur(4px); }
    #modal-box { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.9); background: #fff; border-radius: 20px; padding: 0; max-width: 500px; width: 92%; z-index: 9001; box-shadow: 0 24px 60px rgba(0,0,0,0.22); opacity: 0; display: none; transition: all 0.3s cubic-bezier(.2,.9,.3,1); overflow: hidden; }
    #modal-box.visible { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    .modal-header { background: linear-gradient(135deg, var(--green), #43A047); color: #fff; padding: 22px 24px; display: flex; align-items: flex-start; gap: 14px; }
    .modal-header-img { width: 70px; height: 70px; border-radius: 10px; object-fit: cover; flex-shrink: 0; border: 2px solid rgba(255,255,255,0.3); }
    .modal-header-img-placeholder { width: 70px; height: 70px; border-radius: 10px; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; }
    .modal-product-name { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
    .modal-product-price { font-size: 22px; font-weight: 700; }
    .modal-close { position: absolute; top: 14px; right: 16px; background: rgba(255,255,255,0.2); border: none; color: #fff; font-size: 18px; cursor: pointer; border-radius: 50%; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; }
    .modal-body { padding: 22px 24px; }
    .modal-body p { font-size: 14px; color: #555; margin-bottom: 18px; line-height: 1.6; }
    .modal-body p strong { color: #222; }
    .form-group { margin-bottom: 14px; }
    .form-group label { display: block; font-size: 13px; font-weight: 600; color: #444; margin-bottom: 5px; }
    .form-group input, .form-group textarea { width: 100%; padding: 11px 14px; border: 1.5px solid #e0eaf2; border-radius: 10px; font-family: 'Poppins', sans-serif; font-size: 14px; color: #222; outline: none; transition: border-color 0.2s; }
    .form-group input:focus, .form-group textarea:focus { border-color: var(--green); }
    .form-group textarea { resize: vertical; min-height: 70px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .btn-submit { width: 100%; background: var(--green); color: #fff; border: none; padding: 14px; border-radius: 999px; font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700; cursor: pointer; margin-top: 6px; transition: all 0.2s; }
    .btn-submit:hover { background: #1b5e20; }
    .modal-note { font-size: 12px; color: #aaa; text-align: center; margin-top: 10px; }
    #modal-success { display: none; padding: 40px 24px; text-align: center; }
    #modal-success .success-icon { font-size: 52px; margin-bottom: 14px; display: block; }
    #modal-success h3 { color: var(--green); font-size: 22px; margin-bottom: 10px; }
    #modal-success p { color: #555; font-size: 15px; line-height: 1.6; }

    /* ── CTA bas de page ── */
    .bottom-cta { background: linear-gradient(135deg, var(--green), #43A047); border-radius: var(--radius); padding: 32px 28px; text-align: center; color: #fff; margin-top: 40px; }
    .bottom-cta h2 { font-size: 22px; margin-bottom: 10px; }
    .bottom-cta p { font-size: 15px; opacity: 0.9; margin-bottom: 20px; }
    .bottom-cta-btns { display: flex; gap: 12px; justify-content: center; align-items: center; flex-wrap: wrap; margin-top: 4px; }
    .btn-white { background: #fff; color: var(--green); padding: 12px 24px; border-radius: 999px; font-weight: 700; text-decoration: none; font-size: 14px; display: inline-flex; align-items: center; justify-content: center; text-align: center; }
    .btn-wsp { background: rgba(255,255,255,0.15); color: #fff; border: 2px solid rgba(255,255,255,0.4); padding: 12px 24px; border-radius: 999px; font-weight: 700; text-decoration: none; font-size: 14px; display: inline-flex; align-items: center; justify-content: center; text-align: center; }

    /* ── Footer ── */
    .site-footer { background: var(--blue); color: #fff; padding: 26px 20px; text-align: center; }
    .footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; max-width: var(--max-width); margin: 0 auto 0; gap: 14px; }
    .footer-left { display: flex; align-items: center; gap: 10px; font-weight: 600; }
    .footer-logo { height: 60px; }
    .footer-right a { color: #fff; text-decoration: none; font-size: 13px; margin: 0 8px; }
    .footer-bottom { margin-top: 14px; font-size: 12px; opacity: 0.7; }

    /* ── Menu de contact rapide (flottant) — regroupe WhatsApp / Urgence 24h / Chatbot dans un
       seul bouton plutôt que 3 boutons empilés en permanence (même traitement qu'index.html) ── */
    @keyframes pulse { 0%,100%{ transform:scale(1); } 50%{ transform:scale(1.05); } }
    @keyframes fab-pulse {
      0% { transform: scale(1); box-shadow: 0 6px 18px rgba(230, 57, 70, 0.3); opacity: 1; }
      50% { transform: scale(1.05); box-shadow: 0 8px 24px rgba(230, 57, 70, 0.4); opacity: 0.9; }
      100% { transform: scale(1); box-shadow: 0 6px 18px rgba(230, 57, 70, 0.3); opacity: 1; }
    }
    .contact-fab-wrap{ position:fixed; bottom:20px; right:20px; z-index:1002; display:flex; flex-direction:column-reverse; align-items:flex-end; gap:12px; }
    .contact-fab-main{ width:58px; height:58px; border-radius:50%; border:none; background:#e63946; color:#fff; font-size:24px; cursor:pointer; box-shadow:0 6px 18px rgba(230,57,70,0.35); display:flex; align-items:center; justify-content:center; position:relative; flex-shrink:0; animation:fab-pulse 2s ease-in-out 4; transition:transform 0.25s ease, box-shadow 0.25s ease; }
    .contact-fab-main:hover{ transform:scale(1.08); box-shadow:0 10px 26px rgba(230,57,70,0.45); }
    .contact-fab-main .fab-icon-close{ display:none; }
    .contact-fab-wrap.open .contact-fab-main .fab-icon-open{ display:none; }
    .contact-fab-wrap.open .contact-fab-main .fab-icon-close{ display:block; }
    .contact-fab-menu{ display:flex; flex-direction:column-reverse; align-items:flex-end; gap:12px; }
    .contact-fab-item{ display:flex; align-items:center; gap:8px; text-decoration:none; font-weight:700; box-shadow:0 6px 18px rgba(0,0,0,0.18); opacity:0; transform:translateY(10px) scale(0.9); pointer-events:none; transition:opacity 0.2s ease, transform 0.2s ease; }
    .contact-fab-wrap.open .contact-fab-item{ opacity:1; transform:translateY(0) scale(1); pointer-events:auto; }
    .contact-fab-wrap.open .fab-whatsapp{ transition-delay:0.02s; }
    .contact-fab-wrap.open .fab-chatbot{ transition-delay:0.06s; }
    .contact-fab-wrap.open .fab-urgence{ transition-delay:0.1s; }
    .fab-whatsapp{ width:48px; height:48px; border-radius:50%; background:#25D366; color:#fff; font-size:20px; justify-content:center; }
    .fab-chatbot{ background:#0077a3; color:#fff; padding:12px 16px; border-radius:999px; font-size:14px; }
    .fab-chatbot .bot-dot{ width:8px; height:8px; background:#69f0ae; border-radius:50%; animation:pulse 2s infinite; }
    .fab-urgence{ background:#e63946; color:#fff; padding:12px 16px; border-radius:999px; font-size:14px; }
    .call-button { position: fixed; bottom: 20px; right: 20px; background: linear-gradient(135deg,#28a745,#20c997); color: #fff; font-size: 15px; font-weight: bold; padding: 12px 18px; border-radius: 50px; text-decoration: none; z-index: 9999; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
    @media(min-width:768px) { .call-button { display: none; } }
  
    /* ── Menu hamburger mobile ── */
    .hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; padding:6px; }
    .hamburger span { display:block; width:24px; height:2px; background:#fff; border-radius:2px; transition:all 0.3s; }
    .hamburger.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
    .hamburger.open span:nth-child(2) { opacity:0; }
    .hamburger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }
    .mobile-menu { display:none; position:fixed; top:0; left:0; right:0; bottom:0; background:var(--blue); z-index:9999; flex-direction:column; align-items:center; justify-content:center; gap:28px; }
    .mobile-menu.open { display:flex; }
    .mobile-menu a { color:#fff; text-decoration:none; font-size:22px; font-weight:600; opacity:0.9; }
    .mobile-menu a:hover { opacity:1; }
    .mobile-menu a.cta { background:var(--accent,#e63946); padding:14px 32px; border-radius:999px; }
    .mobile-menu-close { position:absolute; top:20px; right:20px; background:none; border:none; color:#fff; font-size:28px; cursor:pointer; }
    @media(max-width:640px) {
      .hamburger { display:flex; }
      nav a:not(.cta) { display:none !important; }
      nav a.cta { display:none !important; }
    }
    @media(min-width:641px) {
      nav a { display:inline-flex !important; }
    }
  
    /* ── Modal fiche produit ── */
    #fiche-overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.65); z-index:8000; backdrop-filter:blur(5px); }
    #fiche-box {
      display:none; position:fixed; top:50%; left:50%;
      transform:translate(-50%,-50%) scale(0.92);
      background:#fff; border-radius:20px; max-width:680px; width:94%;
      z-index:8001; box-shadow:0 28px 70px rgba(0,0,0,0.25);
      opacity:0; display:none; transition:all 0.3s cubic-bezier(.2,.9,.3,1);
      max-height:92vh; overflow-y:auto;
    }
    #fiche-box.visible { opacity:1; transform:translate(-50%,-50%) scale(1); }
    .fiche-img-wrap { width:100%; background:#f7f8fa; border-radius:20px 20px 0 0; overflow:hidden; max-height:380px; display:flex; align-items:center; justify-content:center; position:relative; }
    .fiche-img-wrap img { width:100%; height:100%; object-fit:contain; padding:16px; max-height:380px; user-select:none; }
    .fiche-img-placeholder { width:100%; height:240px; display:flex; flex-direction:column; align-items:center; justify-content:center; color:#ccc; font-size:15px; gap:10px; }
    .fiche-img-placeholder i { font-size:52px; }

    /* Carrousel photos fiche */
    .fiche-photo-nav { position:absolute; top:50%; transform:translateY(-50%); background:rgba(0,0,0,0.42); color:#fff; border:none; width:36px; height:36px; border-radius:50%; font-size:20px; line-height:1; cursor:pointer; display:flex; align-items:center; justify-content:center; z-index:3; transition:background 0.2s; }
    .fiche-photo-nav:hover { background:rgba(0,0,0,0.65); }
    .fiche-photo-nav.prev { left:10px; }
    .fiche-photo-nav.next { right:10px; }
    .fiche-photo-dots { position:absolute; bottom:10px; left:0; right:0; display:flex; justify-content:center; gap:6px; z-index:3; }
    .fiche-dot { width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,0.7); border:1px solid rgba(0,0,0,0.15); cursor:pointer; padding:0; }
    .fiche-dot.active { background:var(--green); }
    .fiche-photo-counter { position:absolute; bottom:10px; right:10px; background:rgba(0,0,0,0.45); color:#fff; font-size:12px; font-weight:600; padding:3px 10px; border-radius:999px; z-index:3; }
    .fiche-body { padding:24px 28px 28px; }
    .fiche-cat { display:inline-block; background:#f0f6fa; color:var(--blue); font-size:12px; font-weight:700; padding:4px 12px; border-radius:999px; margin-bottom:10px; }
    .fiche-name { font-size:24px; font-weight:700; color:#222; margin:0 0 8px; line-height:1.2; }
    .fiche-dispo { display:flex; align-items:center; gap:6px; font-size:13px; margin-bottom:14px; }
    .fiche-desc { font-size:15px; color:#555; line-height:1.7; margin-bottom:20px; }
    .fiche-prix-row { display:flex; align-items:center; gap:14px; margin-bottom:22px; }
    .fiche-prix { font-size:32px; font-weight:700; color:var(--green); }
    .fiche-prix-barre { font-size:16px; color:#bbb; text-decoration:line-through; }
    .fiche-economy { background:#e8f5e9; color:var(--green); font-size:13px; font-weight:700; padding:4px 12px; border-radius:999px; }
    .fiche-actions { display:flex; gap:12px; flex-wrap:wrap; }
    .fiche-btn-reserve { flex:1; background:var(--green); color:#fff; border:none; padding:14px 24px; border-radius:999px; font-family:'Poppins',sans-serif; font-size:15px; font-weight:700; cursor:pointer; transition:all 0.2s; }
    .fiche-btn-reserve:hover { background:#1b5e20; transform:translateY(-2px); }
    .fiche-btn-close { background:#f5f5f5; color:#666; border:none; padding:14px 20px; border-radius:999px; font-family:'Poppins',sans-serif; font-size:14px; cursor:pointer; }
    .fiche-close-x { position:absolute; top:10px; right:10px; background:rgba(0,0,0,0.45); border:none; color:#fff; font-size:20px; cursor:pointer; border-radius:50%; width:34px; height:34px; display:flex; align-items:center; justify-content:center; z-index:20; }
    .fiche-close-x:hover { background:rgba(0,0,0,0.65); }

  
    /* ── Section caractéristiques fiche ── */
    .fiche-attrs { margin-bottom:18px; }
    .fiche-attrs-title { font-size:12px; font-weight:700; color:#aaa; text-transform:uppercase; letter-spacing:1px; margin-bottom:10px; }
    .fiche-attrs-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(160px,1fr)); gap:8px; }
    .fiche-attr { display:flex; align-items:center; gap:10px; background:#f8f9fa; border:1px solid #eee; border-radius:10px; padding:10px 14px; }
    .fiche-attr-icon { width:34px; height:34px; border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:16px; flex-shrink:0; }
    .fiche-attr-icon.etat { background:#e8f5e9; }
    .fiche-attr-icon.matiere { background:#e3f2fd; }
    .fiche-attr-icon.couleur { background:#fff8e1; }
    .fiche-attr-icon.style { background:#f3e5f5; }
    .fiche-attr-icon.dimensions { background:#f5f5f5; }
    .fiche-attr-info { display:flex; flex-direction:column; min-width:0; }
    .fiche-attr-label { font-size:10px; font-weight:700; color:#aaa; text-transform:uppercase; letter-spacing:0.5px; }
    .fiche-attr-value { font-size:13px; font-weight:600; color:#222; white-space:normal; overflow-wrap:break-word; }
    /* Badges sur les cartes */
    .card-attrs { display:flex; flex-wrap:wrap; gap:4px; margin:6px 0 8px; }
    .card-attr { font-size:11px; font-weight:600; padding:2px 8px; border-radius:999px; background:#f0f4f8; color:#666; border:1px solid #e0eaf2; }
