/* ==========================================================
   🟩 DESKTOP — MENU HORIZONTAL + SOUS-MENUS (≥ 981px)
========================================================== */

@media (min-width: 981px) {

  /* ==================================================
     RESET MOBILE (DESKTOP ONLY)
     ================================================== */
  .tf-menu-mobile-header,
  .tf-menu-close,
  .tf-burger {
    display: none !important;
  }

  /* ==================================================
     MENU CONTAINER
     ================================================== */
  #tf-main-menu {
    position: static;
    display: flex;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  /* ==================================================
     NIVEAU 1 — MENU PRINCIPAL
     ================================================== */
  .tf-menu {
    display: flex;
    align-items: center;
    gap: 36px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .tf-menu > li {
    position: relative;
    display: flex;
    align-items: center;
  }

  .tf-menu > li > a {
    display: inline-flex;
    align-items: center;
    padding: 0;
    line-height: 1;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #111;
    text-decoration: none;
    white-space: nowrap;
  }

  .tf-menu > li > a:hover {
    color: #e10600;
  }

  /* Chevron niveau 1 */
  .tf-menu > li.menu-item-has-children > a::after {
    content: "▾";
    margin-left: 6px;
    font-size: 12px;
    opacity: .6;
  }

  /* ==================================================
     NIVEAU 2 — DROPDOWN
     ================================================== */
  .tf-menu > li > ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    padding: 12px 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,.08);
    z-index: 1000;
  }

  .tf-menu > li:hover > ul {
    display: block;
  }

  /* Liens niveau 2+ (important : pas niveau 1) */
  .tf-menu > li > ul a {
    display: block;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    color: #111;
    text-decoration: none;
  }

  .tf-menu > li > ul a:hover {
    background: #f6f6f6;
  }

  /* ==================================================
     NIVEAU 3 — SUB DROPDOWN
     ================================================== */
  .tf-menu ul ul {
    top: 0;
    left: 100%;
  }

  .tf-menu ul li:hover > ul {
    display: block;
  }

  .tf-menu ul > li.menu-item-has-children > a {
    position: relative;
    padding-right: 36px;
  }

  .tf-menu ul > li.menu-item-has-children > a::after {
    content: "▸";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    opacity: .6;
  }

}