    * { margin: 0; padding: 0; box-sizing: border-box; }
    
    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      padding: 0;
      min-height: 100vh;
    }

    .filters-container {
      background-color: #c4dafa;
      border-radius: 12px;
      margin: 10px 0 20px 0;
    }

    .tabulator-row .tabulator-cell {
      background-color: #fbf9f7;
      border: 0;
    }

    @media (hover: hover) and (pointer: fine) {
      .tabulator-row.tabulator-selectable:hover .tabulator-cell {
        background-color: #f4eee8;
      }

      .tabulator .tabulator-header .tabulator-col.tabulator-sortable.tabulator-col-sorter-element:hover {
        background-color: #f4eee8;
      }
    }


    .tabulator-row .tabulator-cell:first-child {
      border-left: 10px solid #AABE78;
    }

    .tabulator-row:nth-child(2n) .tabulator-cell:first-child {
      border-left: 10px solid #D2E68C;
    }
    
    .container {
      width: 100%;
      margin: 0 auto;
      background: white;
      border-radius: 0;
      padding: 10px 15px;
      box-shadow: none;
      height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .header-logo-menu > a {
      text-decoration: none;
    }

    .header-logo-menu, 
    .header-logo-menu ul {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
    }

    .header-logo-menu ul {
      font-size: 13px;
      list-style-type: none;
    }

    .header-logo-menu ul li {
      margin: 0 10px 0 0;
    }

    .header-logo-menu ul li a {
      text-decoration: none;
      color: #667eea;
    }

    .header-logo-menu ul li a:hover {
      color: #3759d7;
    }

    .logo-baseline {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    h1 {
      color: #AABE78;
      font-size: 18px;
      
    }

    h2 {
      color: #333;
      font-size: 11px;
      font-weight: normal;
    }
    
    .subtitle {
      color: #666;
      margin-bottom: 20px;
      font-size: 14px;
    }

    .header {
      background: #BBFBFF;
      border-radius: 12px;
      margin: 5px 0 20px 0;
      border: 1px solid #BBD9F7;
    }
    
    /* Barre de recherche */
    .search-bar {
      display: flex;
      gap: 15px;
      padding: 15px;
    }
    
    .search-bar input {
      width: 100%;
      padding: 10px 15px;
      border: 1px solid #BBD9F7;
      border-radius: 8px;
      font-size: 16px;
      transition: all 0.3s;
    }

    .search-bar select {
      width: 250px;
    }
    
    .search-bar input:focus {
      outline: none;
      border-color: #BBD9F7;
      box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    }

    select, input[type="number"] {
      padding: 10px 12px;
      border: 1px solid #BBD9F7;
      border-radius: 8px;
      font-size: 14px;
      background: white;
      transition: all 0.3s;
    }
    
    select:focus, input[type="number"]:focus {
      outline: none;
      border-color: #BBD9F7;
      box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }
    
    /* Filtres */
    .filters {
      padding: 0 15px 15px 15px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 15px;
    }
    
    .filter-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    
    .filter-group label {
      font-weight: 600;
      color: #333;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-left: 3px;
    }
    

    
    .price-inputs {
      display: flex;
      gap: 10px;
    }
    
    .price-inputs input {
      width: 100%;
    }
    
    .btn-reset {
      padding: 11px 20px;
      border: none;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      font-size: 14px;
      background: #ff6b6b;
      color: white;
      width: 30%;
    }
    
    .btn-reset:hover {
      background: #ee5a52;
    }
    
    /* Tabulator personnalisé */
    #phones-table {
      font-size: 14px;
      flex: 1;
      overflow: auto;
    }
    
    .tabulator .tabulator-header {
      border: 0;
      color: #333;
      font-weight: 600;
      padding-left: 0;
    }
    
    .tabulator .tabulator-header .tabulator-col {
      border-right: 1px solid rgba(255,255,255,0.2);
    }
    
    .tabulator-row {
      min-height: 45px;
    }
    
    .tabulator-row:hover {
      background-color: #f8f9fa !important;
    }
    
    .badge {
      display: inline-block;
      padding: 4px 10px;
      border-radius: 12px;
      font-size: 11px;
      font-weight: 600;
    }
    
    .badge-apple { background: #f0f0f0; color: #000; }
    .badge-samsung { background: #e3f2fd; color: #1565c0; }
    .badge-google { background: #fff3e0; color: #e65100; }
    .badge-xiaomi { background: #ffe0b2; color: #e65100; }
    .badge-other { background: #f3e5f5; color: #6a1b9a; }
    
    .price-cell {
      font-weight: 700;
      color: #667eea;
      font-size: 15px;
    }
    
    .connectivity-5g {
      color: #00b894;
      font-weight: 600;
    }
    
    .connectivity-4g {
      color: #ff7675;
      font-weight: 600;
    }
    
    .stats {
      margin-top: 15px;
      padding: 12px;
      background: #f8f9fa;
      border-radius: 8px;
      text-align: center;
      color: #666;
      font-size: 14px;
      flex-shrink: 0;
    }

    .active-filters {
      padding: 10px 0 0 0;
      border-radius: 8px;
      margin: 0 15px 15px 15px;
      display: none;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
    }

    .active-filters.show {
      display: flex;
    }

    .filter-tag {
      background: #6192D1;
      color: white;
      padding: 5px 12px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-right: 5px;
    }

    .filter-tag-label {
      opacity: 0.9;
    }

    .filter-tag-close {
      cursor: pointer;
      font-weight: bold;
      font-size: 16px;
      line-height: 1;
      opacity: 0.8;
      transition: opacity 0.2s;
      margin-left: 4px;
    }

    .filter-tag-close:hover {
      opacity: 1;
      transform: scale(1.2);
    }

    .infos {
      padding: 15px;
      margin-top: 10px;
      background: #fbf9f7;
      border-radius: 8px;
      text-align: center;
      width: 100%;
      font-size: 11px;
      color: #8A847E;
      border: 1px solid #E6DCD2;
    }


    .waitlist {
      position: absolute;
      background-image: url('/media/img/map.webp');
      border: 1px solid #ccc;
      padding: 60px 80px;
      border-radius: 8px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: fit-content;
      z-index: 1000;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
      text-align: center;
    }

    .waitlist-message {
      color: #4C83C1;
      padding: 20px 0 0 0;
    }

    .waitlist-info {
      background-color: #fff;
      margin: 20px;
      padding: 40px 50px;
      border-radius: 4px;
      border: 1px solid #E6DCD2;
    }

    .waitlist-form input {
      margin: 20px 0 0 0;
      padding: 10px 8px;
      border: 1px solid #ccc;
      border-radius: 4px;
      background-color: #f6f6f6;
    }

    .waitlist-form button {
      margin: 0 0 0 10px;
      padding: 10px 14px;
      border-radius: 4px;
      background-color: #6695ca;
      color: #fff;
      font-weight: bold;
      border: none;
      cursor: pointer;
    }

    .waitlist-form button:hover {
      background-color: #4c83c1;
    }