 /* Styles spécifiques catalogue - même thème Electric Xtra */
    .catalogue-section { padding: 100px 20px; max-width: 1400px; margin: 0 auto; }
    .catalogue-header { text-align: center; margin-bottom: 80px; }
    .catalogue-title { font-family: 'Orbitron', monospace; font-size: 3.5rem; font-weight: 900; background: linear-gradient(45deg, #FF5E00, #00B2FF); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; }
    .catalogue-subtitle { font-size: 1.4rem; opacity: 0.8; color: #E0E0E0; max-width: 600px; margin: 0 auto; }
    
    .category-tabs { display: flex; justify-content: center; gap: 15px; margin-bottom: 60px; flex-wrap: wrap; }
    .category-tab { padding: 15px 30px; background: rgba(255,255,255,0.03); border: 2px solid rgba(255,94,0,0.3); border-radius: 50px; cursor: pointer; font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 1.1rem; transition: all 0.3s ease; color: #FFFFFF; }
    .category-tab:hover, .category-tab.active { background: linear-gradient(45deg, rgba(255,94,0,0.2), rgba(0,178,255,0.2)); border-color: #FF5E00; box-shadow: 0 0 20px rgba(255,94,0,0.4); color: #FF5E00; }
    
    .products-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 30px; }
    .product-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,94,0,0.2); border-radius: 15px; padding: 30px; backdrop-filter: blur(10px); transition: all 0.3s ease; position: relative; overflow: hidden; cursor: pointer; }
    .product-card::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent); transition: left 0.5s; }
    .product-card:hover::before { left: 100%; }
    .product-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(255,94,0,0.3); border-color: #FF5E00; }
    .product-image { width: 100%; aspect-ratio: 1/1; max-height: 350px; background: linear-gradient(45deg, #FF5E00, #00B2FF); border-radius: 10px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; font-size: 4rem; color: white; overflow: hidden; }
    .product-image img { width: 100%; height: 100%; object-fit: contain; }
    .product-title { font-family: 'Orbitron', monospace; font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; color: #FFFFFF; }
    .product-stats { color: #00B2FF; font-size: 0.95rem; margin-bottom: 15px; line-height: 1.6; }
    .product-price { font-family: 'Orbitron', monospace; font-size: 2rem; font-weight: 900; background: linear-gradient(45deg, #FF5E00, #00B2FF); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 15px; }
    .product-tags { display: flex; gap: 8px; flex-wrap: wrap; }
    .tag { background: rgba(0,178,255,0.2); color: #00B2FF; padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 500; }
    .tag.premium { background: rgba(255,94,0,0.2); color: #FF5E00; }
    
    /* Modal Styles */
    .modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); backdrop-filter: blur(10px); z-index: 9999; align-items: center; justify-content: center; animation: fadeIn 0.3s ease; }
    .modal-overlay.active { display: flex; }
    .modal-content { background: linear-gradient(135deg, rgba(10,10,10,0.95), rgba(20,20,20,0.95)); border: 2px solid rgba(255,94,0,0.3); border-radius: 20px; padding: 50px; max-width: 1400px; width: 95%; max-height: 95vh; overflow-y: auto; position: relative; animation: slideUp 0.4s ease; box-shadow: 0 20px 60px rgba(255,94,0,0.4); }
    .modal-close { position: absolute; top: 20px; right: 20px; font-size: 2rem; color: #FF5E00; cursor: pointer; background: none; border: none; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; border-radius: 50%; z-index: 10; }
    .modal-close:hover { background: rgba(255,94,0,0.2); transform: rotate(90deg); }
    .modal-header { display: flex; gap: 40px; margin-bottom: 30px; flex-wrap: wrap; }
    .modal-image { flex: 0 0 700px; aspect-ratio: 1/1; background: linear-gradient(45deg, #FF5E00, #00B2FF); border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 12rem; overflow: hidden; box-shadow: 0 10px 40px rgba(255,94,0,0.3); }
    .modal-image img { width: 100%; height: 100%; object-fit: contain; }
    .modal-info { flex: 1; min-width: 300px; }
    .modal-title { font-family: 'Orbitron', monospace; font-size: 3rem; font-weight: 900; background: linear-gradient(45deg, #FF5E00, #00B2FF); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 20px; line-height: 1.2; }
    .modal-price { font-family: 'Orbitron', monospace; font-size: 3.5rem; font-weight: 900; color: #FF5E00; margin-bottom: 25px; text-shadow: 0 0 20px rgba(255,94,0,0.5); }
    .modal-stats { color: #00B2FF; font-size: 1.3rem; line-height: 2; margin-bottom: 25px; padding: 20px; background: rgba(0,178,255,0.1); border-left: 4px solid #00B2FF; border-radius: 8px; }
    .modal-tags { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 25px; margin-bottom: 20px; }
    .modal-tags .tag { padding: 8px 18px; font-size: 1rem; }
    .modal-description { color: #E0E0E0; font-size: 1.1rem; line-height: 1.8; margin-bottom: 25px; opacity: 0.95; padding: 20px; background: rgba(255,255,255,0.05); border-radius: 12px; }
    .modal-actions { display: flex; gap: 20px; margin-top: 25px; }
    .btn-modal { padding: 18px 50px; border: none; border-radius: 50px; font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.2rem; cursor: pointer; transition: all 0.3s ease; }
    .btn-modal.primary { background: linear-gradient(45deg, #FF5E00, #FF8C00); color: white; }
    .btn-modal.primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,94,0,0.5); }
    .btn-modal.secondary { background: rgba(0,178,255,0.2); color: #00B2FF; border: 2px solid #00B2FF; }
    .btn-modal.secondary:hover { background: rgba(0,178,255,0.3); }
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
    @keyframes slideUp { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

    @media (max-width: 768px) {
        .products-grid { grid-template-columns: 1fr; gap: 20px; }
        .catalogue-title { font-size: 2.5rem; }
        .category-tabs { flex-direction: column; align-items: center; }
        .modal-content { padding: 25px; max-width: 95%; }
        .modal-header { flex-direction: column; }
        .modal-image { flex: 0 0 280px; font-size: 6rem; }
        .modal-title { font-size: 2rem; }
        .modal-price { font-size: 2.5rem; }
        .modal-stats { font-size: 1.1rem; }
        .modal-description { font-size: 1rem; }
    }