/* ============================================================
   fcc-mobile.css  —  static mobile menu (below 1200px only)
   Mirror of fcc-megamenu.css (min-width:1200px): this file is
   strictly max-width:1199px. Scoped under #fccm-nav so the
   theme's high-specificity header rules cannot leak in.
   ============================================================ */

@media (min-width: 1200px) {
  #fccm-nav.fccm { display: none !important; }
}

@media (max-width: 1199px) {
  #fccm-nav {
    --gold:#B08D48;
    --wine:#5A1030;
    --wa:#25D366;
    --ink:#1c1c1c;
    --dim:#8b867e;
    --label:#a09a8e;
    --line:#e6e1d8;
    --press:#f4f1ea;
    display: block;
    background: #ffffff;
    color: var(--ink);
    font-family: inherit;
    -webkit-font-smoothing: antialiased;
  }
  #fccm-nav * { box-sizing: border-box; }

  #fccm-nav .fccm-actions {
    display: flex;
    gap: 8px;
    padding: 12px;
    background: #ffffff;
  }
  #fccm-nav .fccm-act {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 42px;
    border-radius: 9px;
    color: #ffffff !important;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none !important;
    line-height: 1;
    white-space: nowrap;
  }
  #fccm-nav .fccm-act span { color: #ffffff !important; }
  #fccm-nav .fccm-act svg { flex: none; }
  #fccm-nav .fccm-act--book { background: var(--gold) !important; }
  #fccm-nav .fccm-act--call { background: var(--wine) !important; }
  #fccm-nav .fccm-act--wa   { background: var(--wa) !important; }

  #fccm-nav .fccm-sec { border-top: 1px solid var(--line); }
  #fccm-nav .fccm-sec:first-of-type { border-top: 0; }
  #fccm-nav .fccm-sec__head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 53px;
    padding: 0 16px;
    background: transparent;
    border: 0;
    color: var(--ink);
    font-size: 15.5px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  #fccm-nav .fccm-sec__head:active { background: var(--press); }
  #fccm-nav .fccm-sec__title { flex: 1 1 auto; }
  #fccm-nav .fccm-sec__caret {
    flex: none;
    width: 9px;
    height: 9px;
    display: inline-block;
    border-right: 1.6px solid var(--dim);
    border-bottom: 1.6px solid var(--dim);
    transform: rotate(45deg);
    transform-origin: 60% 60%;
    margin-bottom: 3px;
  }
  #fccm-nav .fccm-sec__head[aria-expanded="true"] { color: var(--gold); }
  #fccm-nav .fccm-sec__head[aria-expanded="true"] .fccm-sec__title { color: var(--gold); }
  #fccm-nav .fccm-sec__head[aria-expanded="true"] .fccm-sec__caret {
    border-color: var(--gold);
    transform: rotate(225deg);
    margin-bottom: -2px;
  }

  #fccm-nav .fccm-sec__body { display: none; padding: 2px 0 8px; }
  #fccm-nav .fccm-sec__head[aria-expanded="true"] + .fccm-sec__body { display: block; }

  #fccm-nav .fccm-grp__label {
    padding: 12px 16px 5px;
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--label);
  }

  #fccm-nav .fccm-row {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    padding: 7px 16px;
    text-decoration: none !important;
    color: var(--ink);
    -webkit-tap-highlight-color: transparent;
  }
  #fccm-nav .fccm-row:active { background: var(--press); }
  #fccm-nav .fccm-row__img {
    flex: none;
    width: 60px !important;
    height: 38px !important;
    max-width: 60px !important;
    object-fit: cover;
    border-radius: 5px;
    filter: none !important;
    background: var(--press);
    margin: 0;
  }
  #fccm-nav .fccm-row__tw {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-width: 0;
  }
  #fccm-nav .fccm-row__t {
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--ink);
  }
  #fccm-nav .fccm-row__d {
    margin-top: 2px;
    font-size: 12px;
    color: var(--dim);
    line-height: 1.25;
  }
  #fccm-nav .fccm-row__price {
    flex: none;
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
  }
  #fccm-nav .fccm-row--all .fccm-row__t,
  #fccm-nav .fccm-row--grouplink .fccm-row__t { color: var(--gold); }
  #fccm-nav .fccm-row--btn {
    margin: 10px 16px 4px;
    min-height: 44px;
    justify-content: center;
    border-radius: 9px;
    background: var(--wine);
    padding: 0 16px;
  }
  #fccm-nav .fccm-row--btn .fccm-row__t { color: #ffffff !important; }

  #fccm-nav .fccm-phone {
    padding: 16px;
    background: #faf9f7;
    border-top: 1px solid var(--line);
  }
  #fccm-nav .fccm-phone__num {
    display: inline-block;
    font-size: 19px;
    font-weight: 600;
    color: var(--gold) !important;
    text-decoration: none !important;
  }
  #fccm-nav .fccm-phone__note {
    margin-top: 3px;
    font-size: 12px;
    color: var(--dim);
  }
}
