/* ══ ALFEO ARREDO BAGNO — Mobile Bar CSS ══ */

#alfeo-mobile-bar { display: none; }

@media (max-width: 768px) {
  #alfeo-mobile-bar {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    height: 62px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.10);
    padding-bottom: env(safe-area-inset-bottom);
    pointer-events: all;
  }

  #alfeo-mobile-bar .amb-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-decoration: none;
    color: #666666;
    font-size: 10px;
    font-weight: 500;
    border-right: 0.5px solid #eeeeee;
    padding: 6px 0;
    pointer-events: all;
    position: relative;
    z-index: 99999;
    cursor: pointer;
  }

  #alfeo-mobile-bar .amb-item:last-child { border-right: none; }

  #alfeo-mobile-bar .amb-item.active { color: #0073aa; }

  /* Il div interno non deve bloccare i click sul link */
  #alfeo-mobile-bar .amb-item > div {
    pointer-events: none;
  }

  #alfeo-mobile-bar .amb-cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #e74c3c;
    color: #fff;
    font-size: 8px;
    font-weight: 700;
    border-radius: 10px;
    padding: 1px 4px;
    min-width: 14px;
    text-align: center;
    line-height: 1.4;
    pointer-events: none;
  }

  #alfeo-mobile-bar .amb-cart-total {
    font-size: 10px;
    font-weight: 600;
    pointer-events: none;
  }

  body { padding-bottom: 62px !important; }

  /* Nasconde il contatore fly cart (sostituito dalla barra) */
  #woofc-count { display: none !important; }

  /* Nasconde completamente il fly cart su mobile */
  .woofc-area { display: none !important; }
}
