/**
 * CBP Account Responsive — Mobile accordion nav for My Account
 * Collapses WooCommerce account navigation into a toggle on mobile.
 */

/* ── Mobile Account Nav Accordion ── */
@media (max-width: 767px) {

  .woocommerce-MyAccount-navigation {
    position: relative;
  }

  /* Toggle button — injected by JS */
  .cbp-account-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 18px;
    background: #101828 !important;
    color: #fff !important;
    border: 1px solid #ddd;
    font-family: "Teko", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
  }

  .cbp-account-nav-toggle:hover,
  .cbp-account-nav-toggle:focus {
    background: #101828 !important;
    color: #fff !important;
    outline: 2px solid #c8291a;
    outline-offset: -2px;
  }

  .cbp-account-nav-toggle__arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #fff;
    transition: transform 0.25s ease;
    flex-shrink: 0;
    margin-left: 12px;
  }

  .cbp-account-nav-toggle[aria-expanded="true"] .cbp-account-nav-toggle__arrow {
    transform: rotate(180deg);
  }

  /* Hide the nav list by default on mobile */
  .woocommerce-MyAccount-navigation ul {
    display: none;
    margin: 0;
    padding: 0;
    list-style: none;
    border: 1px solid #ddd;
    border-top: none;
  }

  .woocommerce-MyAccount-navigation.cbp-nav-open ul {
    display: block;
  }

  /* Nav items styling in accordion */
  .woocommerce-MyAccount-navigation ul li {
    margin: 0 !important;
    border-bottom: 1px solid #ddd;
  }

  .woocommerce-MyAccount-navigation ul li:last-child {
    border-bottom: none;
  }

  .woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 12px 18px;
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.15s ease, color 0.15s ease;
  }

  .woocommerce-MyAccount-navigation ul li a:hover,
  .woocommerce-MyAccount-navigation ul li a:focus {
    background: #222;
    color: #fff;
  }

  .woocommerce-MyAccount-navigation ul li.is-active a {
    color: #c8291a;
    font-weight: 700;
  }
}

/* ── Hide toggle on desktop ── */
@media (min-width: 768px) {
  .cbp-account-nav-toggle {
    display: none !important;
  }
}
