       /* ---- Page boutique ---- */
        .mat-hero {
            padding: 8rem 5% 3rem;
            text-align: center;
        }
        .mat-hero p {
            color: #b0b0b0;
            font-size: 1.1rem;
            max-width: 650px;
            margin: 0 auto 0.8rem;
            line-height: 1.7;
        }
        .mat-tva {
            display: inline-block;
            background: rgba(46,213,115,0.12);
            border: 1px solid rgba(46,213,115,0.3);
            color: #2ed573;
            border-radius: 20px;
            padding: 4px 16px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: 0.5rem;
        }

        /* Grille annonces */
        .mat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 2rem;
            max-width: 1100px;
            margin: 0 auto;
            padding: 2rem 5% 5rem;
        }

        .mat-card {
            background: linear-gradient(135deg, rgba(102,126,234,0.08), rgba(118,75,162,0.08));
            border: 1px solid rgba(102,126,234,0.18);
            border-radius: 20px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
        }
        .mat-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(102,126,234,0.2);
        }

        /* Photo */
        .mat-photo {
            width: 100%;
            height: 220px;
            object-fit: cover;
            background: rgba(102,126,234,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            color: rgba(102,126,234,0.3);
            flex-shrink: 0;
        }
        .mat-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .mat-body {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .mat-badges {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            margin-bottom: 0.8rem;
        }
        .mat-badge {
            font-size: 11px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .badge-dispo  { background: rgba(46,213,115,0.15);  color: #2ed573;  border: 1px solid rgba(46,213,115,0.3); }
        .badge-vendu  { background: rgba(255,71,87,0.15);   color: #ff6b6b;  border: 1px solid rgba(255,71,87,0.3); }
        .badge-reserve{ background: rgba(255,165,2,0.15);   color: #ffa502;  border: 1px solid rgba(255,165,2,0.3); }
        .badge-cat    { background: rgba(102,126,234,0.12); color: #667eea;  border: 1px solid rgba(102,126,234,0.2); }

        .mat-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: #e0e0e0;
            margin-bottom: 0.6rem;
            line-height: 1.3;
        }
        .mat-ref {
            font-size: 0.78rem;
            color: #555;
            margin-bottom: 0.8rem;
            font-family: monospace;
        }
        .mat-desc {
            color: #b0b0b0;
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1.2rem;
            flex: 1;
        }

        .mat-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: auto;
            padding-top: 1rem;
            border-top: 1px solid rgba(255,255,255,0.06);
        }
        .mat-prix {
            font-size: 1.5rem;
            font-weight: 800;
            color: #667eea;
        }
        .mat-prix-ht {
            font-size: 0.75rem;
            color: #555;
            display: block;
            font-weight: 400;
        }
        .mat-prix-sur-demande {
            font-size: 1rem;
            color: #888;
            font-style: italic;
        }

        .mat-btn {
            display: inline-block;
            padding: 8px 20px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: #fff;
            border: none;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: transform 0.2s, box-shadow 0.2s;
            white-space: nowrap;
        }
        .mat-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(102,126,234,0.4);
        }
        .mat-btn:disabled, .mat-btn.disabled {
            background: #333;
            color: #555;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        /* Modal contact */
        .mat-modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.75);
            z-index: 9990;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }
        .mat-modal-overlay.open { display: flex; }
        .mat-modal {
            background: #111118;
            border: 1px solid rgba(102,126,234,0.25);
            border-radius: 20px;
            padding: 2rem;
            width: 100%;
            max-width: 480px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.6);
            animation: modalIn 0.3s cubic-bezier(.34,1.56,.64,1);
        }
        @keyframes modalIn {
            from { opacity: 0; transform: scale(0.9) translateY(20px); }
            to   { opacity: 1; transform: scale(1) translateY(0); }
        }
        .mat-modal h3 {
            color: #667eea;
            font-size: 1.2rem;
            margin-bottom: 0.3rem;
        }
        .mat-modal-ref {
            font-size: 0.78rem;
            color: #555;
            font-family: monospace;
            margin-bottom: 1.2rem;
        }
        .mat-modal input,
        .mat-modal textarea {
            width: 100%;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(102,126,234,0.25);
            border-radius: 10px;
            color: #e0e0e0;
            font-size: 13px;
            padding: 10px 14px;
            margin-bottom: 10px;
            outline: none;
            font-family: inherit;
            box-sizing: border-box;
            resize: vertical;
            transition: border-color 0.2s;
        }
        .mat-modal input:focus,
        .mat-modal textarea:focus { border-color: #667eea; }
        .mat-modal input::placeholder,
        .mat-modal textarea::placeholder { color: #555; }
        .mat-modal-actions {
            display: flex;
            gap: 10px;
            margin-top: 4px;
        }
        .mat-modal-cancel {
            flex: 1;
            padding: 10px;
            background: transparent;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 10px;
            color: #888;
            font-size: 13px;
            cursor: pointer;
            transition: border-color 0.2s;
        }
        .mat-modal-cancel:hover { border-color: #667eea; color: #e0e0e0; }
        .mat-modal-submit {
            flex: 2;
            padding: 10px;
            background: linear-gradient(135deg,#667eea,#764ba2);
            border: none;
            border-radius: 10px;
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .mat-modal-submit:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(102,126,234,0.4); }
        #mat-modal-msg { font-size: 12px; min-height: 16px; margin-top: 8px; }
        .mat-msg-ok  { color: #2ed573; }
        .mat-msg-err { color: #ff6b6b; }

        /* Vide */
        .mat-empty {
            grid-column: 1/-1;
            text-align: center;
            color: #555;
            font-style: italic;
            padding: 4rem 0;
            font-size: 1.1rem;
        }

        @media (max-width: 768px) {
            .mat-grid { grid-template-columns: 1fr; }
        }