body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background-color: #fff3fb;
    color: #3b1d3f;
  }
  
  .header {
    background-color: #f5e6f7;
    padding: 50px 20px;
    text-align: center;
    position: relative;
  }
  
  .header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #9c4a9b;
  }
  
  .cart {
    position: absolute;
    top: 20px;
    right: 30px;
    background: #f9cbee;
    padding: 10px 15px;
    border-radius: 25px;
    font-weight: bold;
  }
  
  .filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
  }
  
  .filters button {
    padding: 10px 20px;
    border: none;
    background-color: #e9b8dd;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .filters button:hover {
    background-color: #d799cb;
  }
  
  .produits-maquillage {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    padding: 0 40px 40px;
    max-width: 1200px;
    margin: auto;
  }
  
  .produit {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .produit:hover {
    transform: translateY(-8px);
  }
  
  .produit img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
  
  .produit h3 {
    margin: 15px 0 5px;
    font-size: 1.2em;
    color: #5e2954;
  }
  
  .prix {
    color: #9b3d87;
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  button {
    background-color: #e0b0d9;
    color: #4a1b3c;
    border: none;
    padding: 10px 20px;
    margin-bottom: 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  button:hover {
    background-color: #ce9cc9;
  }
  @keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    50% { transform: translateX(3px); }
    75% { transform: translateX(-3px); }
    100% { transform: translateX(0); }
  }
  
  .cart.shake {
    animation: shake 0.5s;
  }
    