
.mymenu-burger {
      display: none;
      cursor: pointer;
      font-size: 24px;
      padding: 10px;
    }

    /* Visible uniquement sur mobile */
    @media (max-width: 768px) {
      .mymenu-burger {
        display: block;
      }
    }

    /* ======== MENU OVERLAY ======== */
    .mymenu-overlay {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      height: 100%;
      background: #fff;
      box-shadow: -2px 0 10px rgba(0,0,0,0.2);
      transition: right 0.3s ease-in-out;
      z-index: 9999;
      padding: 20px;
    }

    .mymenu-overlay.open {
      right: 0;
    }

    /* ======== HEADER MENU ======== */
    .mymenu-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }

    .mymenu-close {
      cursor: pointer;
      font-size: 22px;
    }

    /* ======== LISTE LIENS ======== */
    .mymenu-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .mymenu-links a {
      display: block;
      padding: 12px;
      border-radius: 6px;
      text-decoration: none;
      color: #000;
      font-weight: 500;
      background: #f5f5f5;
      transition: background 0.2s;
    }

    .mymenu-links a.active {
      background: #0b1e5f;
      color: white;
    }

    .mymenu-links a:hover {
      background: #ddd;
    }
