    /* ========================================
       ✅ MARKETPLACE - BACKGROUND QUI CHANGE
       ======================================== */
    
    .marketplace-container {
        padding: 4rem 3rem;
        max-width: 1600px;
        margin: 0 auto;
        background: transparent; /* ✅ Laisse le body gérer le background */
    }

    .marketplace-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .marketplace-title {
        font-family: 'Cinzel', serif;
        font-size: 3.5rem;
        background: linear-gradient(135deg, var(--ayira-orange), var(--gold));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .marketplace-subtitle {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.6);
        font-weight: 400;
        transition: color 0.3s ease;
    }

    /* ✅ Mode clair - Sous-titre plus foncé */
    body.light-theme .marketplace-subtitle {
        color: #555;
        font-weight: 500;
    }

    .filters-section {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 4rem;
    }

    .filter-btn {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(243, 156, 18, 0.2);
        color: rgba(255, 255, 255, 0.8);
        padding: 0.75rem 1.75rem;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-size: 0.95rem;
        font-weight: 500;
        letter-spacing: 0.3px;
        text-decoration: none;
        display: inline-block;
    }

    /* ✅ Mode clair - Filtres avec fond blanc */
    body.light-theme .filter-btn {
        background: #ffffff;
        border: 2px solid rgba(243, 156, 18, 0.4);
        color: #2c3e50;
        font-weight: 600;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .filter-btn:hover {
        background: rgba(243, 156, 18, 0.1);
        border-color: var(--ayira-orange);
        color: var(--ayira-orange);
        transform: translateY(-2px);
    }

    body.light-theme .filter-btn:hover {
        box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
    }

    .filter-btn.active {
        background: linear-gradient(135deg, var(--ayira-orange), var(--ayira-red));
        border-color: transparent;
        color: var(--white);
        box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 2.5rem;
    }

    /* ✅ CARTES PRODUITS - Background qui change */
    .product-card {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUpProduct 0.6s ease-out forwards;
    }

    /* ✅ Mode clair - Cartes blanches avec bordures */
    body.light-theme .product-card {
        background: #ffffff;
        border: 2px solid rgba(243, 156, 18, 0.3);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }

    @keyframes fadeInUpProduct {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .product-card:hover {
        border-color: var(--ayira-orange);
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(243, 156, 18, 0.3);
        background: rgba(255, 255, 255, 0.04);
    }

    body.light-theme .product-card:hover {
        background: #ffffff;
        box-shadow: 0 12px 30px rgba(243, 156, 18, 0.25);
    }

    .product-image {
        width: 100%;
        height: 280px;
        position: relative;
        overflow: hidden;
        background: #0a0a0a;
    }

    body.light-theme .product-image {
        background: #f8f9fa;
    }

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .product-card:hover .product-image img {
        transform: scale(1.08);
    }

    .product-badge {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: linear-gradient(135deg, #27ae60, #2ecc71);
        color: white;
        padding: 0.4rem 1rem;
        border-radius: 6px;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        z-index: 2;
    }

    .product-info {
        padding: 1.75rem;
        background: transparent;
    }

    body.light-theme .product-info {
        background: #fafbfc;
    }

    .product-category {
        font-size: 0.8rem;
        color: var(--ayira-orange);
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 0.75rem;
        font-weight: 700;
    }

    .product-title {
        font-family: 'Cinzel', serif;
        font-size: 1.4rem;
        color: var(--white);
        margin-bottom: 0.5rem;
        font-weight: 600;
        line-height: 1.3;
        transition: color 0.3s ease;
    }

    body.light-theme .product-title {
        color: #1a1a1a;
        font-weight: 700;
    }

    .product-artist {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.5);
        margin-bottom: 1rem;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    body.light-theme .product-artist {
        color: #7f8c8d;
        font-weight: 600;
    }

    .product-description {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.6);
        line-height: 1.6;
        margin-bottom: 1.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        transition: color 0.3s ease;
    }

    body.light-theme .product-description {
        color: #5a6c7d;
        font-weight: 500;
    }

    .product-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 1.25rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        transition: border-color 0.3s ease;
    }

    body.light-theme .product-footer {
        border-top: 2px solid rgba(243, 156, 18, 0.2);
    }

    .product-price {
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--gold);
        font-family: 'Cinzel', serif;
    }

    .product-price.free {
        color: #27ae60;
    }

    .product-currency {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.6);
        margin-left: 0.3rem;
        transition: color 0.3s ease;
    }

    body.light-theme .product-currency {
        color: #7f8c8d;
        font-weight: 600;
    }

    .add-to-cart-btn {
        background: linear-gradient(135deg, var(--ayira-orange), var(--ayira-red));
        color: var(--white);
        border: none;
        padding: 0.75rem 1.75rem;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-weight: 600;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .add-to-cart-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(243, 156, 18, 0.4);
    }

    .add-to-cart-btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

    .view-btn {
        background: linear-gradient(135deg, #3498db, #2980b9);
        color: var(--white);
        border: none;
        padding: 0.75rem 1.75rem;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-weight: 600;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        text-decoration: none;
    }

    .view-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
    }

    .image-error {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(243, 156, 18, 0.1), rgba(211, 47, 47, 0.1));
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.9rem;
        text-align: center;
        padding: 1rem;
        transition: all 0.3s ease;
    }

    body.light-theme .image-error {
        background: #f8d7da;
        color: #721c24;
        font-weight: 600;
    }

    /* ✅ MODAL - Compatible mode clair */
    .ayira-modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(8px);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 99999;
        animation: fadeIn 0.3s ease-out;
    }

    .ayira-modal-overlay.active {
        display: flex;
    }

    .ayira-modal {
        background: linear-gradient(135deg, rgba(20, 20, 20, 0.98), rgba(30, 30, 30, 0.98));
        border: 1px solid rgba(243, 156, 18, 0.3);
        border-radius: 20px;
        max-width: 500px;
        width: 90%;
        padding: 2.5rem;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
    }

    body.light-theme .ayira-modal {
        background: #ffffff;
        border: 2px solid rgba(243, 156, 18, 0.4);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    @keyframes modalSlideIn {
        from {
            opacity: 0;
            transform: translateY(-30px) scale(0.95);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .modal-close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.6);
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 1.2rem;
    }

    body.light-theme .modal-close {
        background: rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.1);
        color: rgba(0, 0, 0, 0.6);
    }

    .modal-close:hover {
        background: rgba(243, 156, 18, 0.1);
        border-color: var(--ayira-orange);
        color: var(--ayira-orange);
        transform: rotate(90deg);
    }

    .modal-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--ayira-orange), var(--ayira-red));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 2.5rem;
        box-shadow: 0 8px 24px rgba(243, 156, 18, 0.4);
    }

    .modal-title {
        font-family: 'Cinzel', serif;
        font-size: 1.8rem;
        color: white;
        text-align: center;
        margin-bottom: 1rem;
        font-weight: 700;
        transition: color 0.3s ease;
    }

    body.light-theme .modal-title {
        color: #1a1a1a;
    }

    .modal-message {
        color: rgba(255, 255, 255, 0.7);
        text-align: center;
        line-height: 1.6;
        margin-bottom: 2rem;
        font-size: 1rem;
        transition: color 0.3s ease;
    }

    body.light-theme .modal-message {
        color: #5a6c7d;
        font-weight: 500;
    }

    .modal-buttons {
        display: flex;
        gap: 1rem;
    }

    .modal-btn {
        flex: 1;
        padding: 1rem 1.5rem;
        border-radius: 10px;
        border: none;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .modal-btn-primary {
        background: linear-gradient(135deg, var(--ayira-orange), var(--ayira-red));
        color: white;
        box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
    }

    .modal-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(243, 156, 18, 0.5);
    }

    .modal-btn-secondary {
        background: rgba(255, 255, 255, 0.05);
        color: rgba(255, 255, 255, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    body.light-theme .modal-btn-secondary {
        background: #f8f9fa;
        border: 2px solid rgba(243, 156, 18, 0.4);
        color: var(--ayira-orange);
    }

    .modal-btn-secondary:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.2);
    }

    body.light-theme .modal-btn-secondary:hover {
        background: rgba(243, 156, 18, 0.1);
        border-color: var(--ayira-orange);
    }

    /* Notifications Toast */
    .ayira-toast {
        position: fixed;
        top: 20px;
        right: 20px;
        padding: 1rem 1.5rem;
        border-radius: 10px;
        color: white;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        z-index: 100000;
        box-shadow: 0 10px 30px rgba(0,0,0,0.4);
        animation: slideInRight 0.3s ease-out;
        font-size: 0.95rem;
        font-weight: 500;
        max-width: 400px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .ayira-toast.success {
        background: linear-gradient(135deg, #27ae60, #2ecc71);
    }

    .ayira-toast.error {
        background: linear-gradient(135deg, #e74c3c, #c0392b);
    }

    .ayira-toast.warning {
        background: linear-gradient(135deg, #f39c12, #e67e22);
    }

    .ayira-toast.info {
        background: linear-gradient(135deg, #3498db, #2980b9);
    }

    @keyframes slideInRight {
        from {
            transform: translateX(400px);
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    @keyframes slideOutRight {
        from {
            transform: translateX(0);
            opacity: 1;
        }
        to {
            transform: translateX(400px);
            opacity: 0;
        }
    }

    /* Message aucune œuvre */
    .no-artworks-container {
        grid-column: 1 / -1;
        text-align: center;
        padding: 4rem 2rem;
        color: rgba(255, 255, 255, 0.6);
        transition: color 0.3s ease;
    }

    body.light-theme .no-artworks-container {
        color: #7f8c8d;
    }

    .no-artworks-container i {
        font-size: 4rem;
        margin-bottom: 1rem;
        opacity: 0.5;
    }

    .no-artworks-container p {
        font-size: 1.2rem;
        font-weight: 600;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .marketplace-container {
            padding: 2rem 1rem;
        }

        .marketplace-title {
            font-size: 2.5rem;
        }

        .products-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .ayira-modal {
            padding: 2rem;
            margin: 1rem;
        }

        .modal-buttons {
            flex-direction: column;
        }

        .ayira-toast {
            left: 10px;
            right: 10px;
            max-width: calc(100% - 20px);
        }
    }