@media (max-width: 768px) {
  /* === GLOBAL === */

  .container {
    padding: 0 1rem;
    width: 100%;
  }

  main {
    padding: 0;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  /* HEADER */
  .header-mobile {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    position: relative;
    z-index: 10;
  }

  .header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .logo-container {
    flex: 0 0 auto;
  }

  /* MENU BURGER MOBILE */
  .menu-toggle {
    display: block;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
  }

  /* Nav cachée par défaut */
  .nav-container {
    display: none;
    flex-direction: column;
    width: 200px;
    background-color: var(--green);
    position: absolute;
    top: 60%;
    right: 0;
    padding: 10px 0;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease-out;
    border-radius: 6px;
  }

  /* Nav affichée */
  .nav-container.open {
    display: flex;
  }

  /* Animation slide */
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Menu items */
  .menu {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 2rem;
  }

  .menu li a {
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem 0;
    color: var(--text);
  }

  /* Cacher le toggle sur desktop */
  @media (min-width: 769px) {
    .menu-toggle {
      display: none;
    }
    .nav-container {
      display: flex !important;
      position: static;
      flex-direction: row;
      background: none;
    }
    .menu {
      flex-direction: row;
      gap: 2rem;
      padding: 0;
    }
  }

  /* ===========================================================
     HERO SECTION — Accueil
     =========================================================== */
  .hero {
    padding: 1rem 0;
    gap: 1.5rem;
    text-align: center;
  }

  .hero h1 {
    font-size: 24px;
    line-height: 1.1;
  }

  .hero .img-background {
    padding: 2rem 1rem;
    background-position: center;
  }

  .hero .img-background p {
    font-size: 1.2rem;
    margin-top: 1rem;
  }

  .poetic {
    font-size: 22px;
    padding: 0 0.5rem;
  }

  .cta-button,
  .cta-button-little,
  .button-histoire .cta-button-little {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 1rem;
  }

  .button-histoire {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
  }

  .histoire {
    font-size: 1rem;
    padding: 0 1.5rem;
  }

  /* ===========================================================
     MARCHÉ DE NOËL — Accueil
     =========================================================== */
  .marche-noel {
    padding: 1.5rem 1rem;
    margin-top: 1rem;
    text-align: center;
  }

  .marche-noel h2,
  .marche-noel h2 + p {
    font-size: 1.2rem;
  }

  .marche-noel p {
    font-size: 1.1rem;
    line-height: 1.4;
  }

  .button-marche {
    display: flex;
    flex-direction: column;
    margin-top: 1.5rem;
  }

  /* ===========================================================
     CATÉGORIES — Accueil
     =========================================================== */
  .categories {
    display: flex;
    flex-direction: column;
    align-items: center; /* <--- garantit le centrage */
    justify-content: center;
    gap: 2.5rem;
    padding: 2rem 0;
  }

  .categorie-content {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; /* <-- bouton collé en bas de la carte */
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .categorie-content img {
    height: auto;
    max-height: 250px;
    width: 100%;
    object-fit: cover; /* garde un joli recadrage */
    border-radius: 8px;
  }

  /* ===========================================================
     PAGE RÉSERVATION — MISE EN PAGE
     =========================================================== */

  .reservation-main {
    padding: 0 0.5rem;
  }

  .title-section h1 {
    font-size: 1.7rem;
    text-align: center;
    line-height: 1.3;
  }

  .title-section p {
    font-size: 1.1rem;
    text-align: center;
  }

  /* Étape 1 — Sélection produits */
  .filtre-categories {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .filtre-categories button {
    width: 100%;
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
  }

  .produits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .total-reservation {
    font-size: 1.3rem;
    text-align: center;
    margin-top: 1rem;
  }

  /* Fiche produits + Recapitulatif */
  .recapitulatif {
    padding: 1rem;
    margin-top: 2rem;
    font-size: 1rem;
  }

  #liste-produits li {
    font-size: 1rem;
    line-height: 1.4;
  }

  /* Étape 2 — Formulaire */
  form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  form label {
    display: flex;
    flex-direction: column;
    font-size: 1.1rem;
    gap: 0.5rem;
  }

  form input,
  form select,
  form textarea {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
  }

  .jour-retrait {
    width: 100%;
  }

  .note-importance {
    font-size: 1rem;
    line-height: 1.4;
    padding: 1rem 0.5rem;
    background: #faf8f2;
    border-radius: 6px;
  }

  #total-estime {
    text-align: center;
    font-size: 1.3rem;
  }

  .cta-button-little[type="submit"] {
    width: 100%;
    font-size: 1.1rem;
  }

  .button-marche .cta-button {
    font-size: 1rem;
  }

  /* ===========================================================
     MODAL PRODUITS
     =========================================================== */
  .modal-content {
    width: 90%;
    padding: 1rem;
  }

  .fiche-produit img {
    width: 100%;
  }

  /* ===========================================================
     FOOTER — mobile
     =========================================================== */
  .footer-grid {
    grid-template-columns: 1fr; /* une seule colonne */
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}
