/* -------------------- RESET -------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background-color: #f7f7f7;
    color: #333;
    line-height: 1.6;
  }
  
  /* -------------------- HEADER -------------------- */
  header {
    background: linear-gradient(135deg, #b08d57, #333);
    color: white;
    text-align: center;
    padding: 60px 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2), 0 0 15px rgba(255,223,0,0.3) inset;
  }
  
  header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
  
  header .logo-icon {
    width: 40px;
    height: 40px;
    background: #b08d57;
    border-radius: 5px 5px 12px 12px;
    position: relative;
    animation: bounce 2s infinite;
    transform-origin: bottom center;
  }
  
  /* Poignée du sac */
  header .logo-icon::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 8px;
    width: 24px;
    height: 8px;
    border: 3px solid #fff;
    border-bottom: none;
    border-radius: 4px 4px 0 0;
  }
  
  /* Éclat doré */
  header .logo-icon::after {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 223, 0, 0.5);
    opacity: 0;
    animation: sparkle 2s infinite;
  }
  
  header .logo-text span {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 5px;
    display: block;
  }
  
  header .logo-text small {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    opacity: 0.85;
    display: block;
    margin-top: 5px;
  }
  
  header p {
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
  }
  
  /* -------------------- NAV -------------------- */
  nav {
    background: rgba(255,255,255,0.95);
    text-align: center;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
  }
  
  nav.scrolled {
    padding: 10px;
    background: rgba(255,255,255,1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }
  
  nav a {
    color: #111;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    transition: color 0.3s;
  }
  
  nav a:hover {
    color: #b08d57;
  }
  
  /* -------------------- SECTIONS -------------------- */
  section {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
  }
  
  section.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
    position: relative;
  }
  
  section h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #b08d57;
    display: block;
    margin: 10px auto;
  }
  
  /* -------------------- PRODUITS -------------------- */
  .produits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
  }
  
  .carte {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .carte:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  }
  
  .carte img {
    width: 100%;
    height: 260px;
    object-fit: cover;
  }
  
  .carte h3 {
    margin: 15px;
    font-size: 1.2rem;
  }
  
  .carte p {
    margin: 0 15px;
    font-weight: bold;
    color: #b08d57;
  }
  
  /* -------------------- BOUTONS -------------------- */
  button {
    display: block;
    width: calc(100% - 30px);
    margin: 15px;
    padding: 12px;
    border: none;
    border-radius: 30px;
    background: #111;
    color: white;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  button:hover {
    background: #b08d57;
    transform: scale(1.08) rotate(-1deg);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
  }
  
  /* Bouton WhatsApp shake */
  button#whatsapp:hover {
    animation: shake 0.5s;
    transform-origin: center;
  }
  
  /* -------------------- FOOTER -------------------- */
  footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 25px;
    margin-top: 50px;
    font-size: 0.9rem;
  }
  
  /* -------------------- KEYFRAMES -------------------- */
  @keyframes bounce {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  
  @keyframes sparkle {
    0%,100% { transform: scale(1); opacity: 0; }
    50% { transform: scale(1.3); opacity: 1; }
  }
  
  @keyframes shake {
    0% { transform: rotate(0deg); }
    20% { transform: rotate(-10deg); }
    40% { transform: rotate(10deg); }
    60% { transform: rotate(-10deg); }
    80% { transform: rotate(10deg); }
    100% { transform: rotate(0deg); }
  }
  
  /* -------------------- RESPONSIVE -------------------- */
  @media (max-width: 600px) {
    header .logo-text span {
      font-size: 2.2rem;
    }
    section h2 {
      font-size: 1.8rem;
    }
  }
  
  