/* AF Floating Cart Badge - centrado abajo en móvil/tablet */
.af-floating-cart { display: none !important; }

@media (max-width: 1024px) {
  .af-floating-cart {
    display: inline-flex !important;
    position: fixed;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    border-radius: 9999px;
    background: #111;
    color: #fff;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    cursor: pointer;
    border: none;
    outline: none;
    z-index: 999999;
    transition: transform .15s ease, box-shadow .15s ease;
  }
  .af-floating-cart:hover { transform: translateX(-50%) translateY(-2px); }
  .af-floating-cart:active { transform: translateX(-50%) translateY(0); }

  .af-floating-cart .af-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 9999px;
    background: #ff4136;
    color: #fff;
    font-size: 12px;
    line-height: 22px;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  }
}
