/* ==========================
   MOBILE FLOATING CART (INLINE WITH FILTER BUTTON)
========================== */

#nav-cart {
  position: fixed;
  top: 110px; 
  right: 18px;
  z-index: 9999;

  background: transparent !important;
  pointer-events: auto;
  background-color: none !important;
}

/* Anchor context */
#nav-cart > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 6px;
  border-radius: 15%;
  background: transparent;

  transition: transform 0.15s ease;
}

/* Tap feedback */
#nav-cart > a:active {
  transform: scale(0.92);
}

/* Cart icon */
#nav-cart i {
  font-size: 22px;
  color: #111;
}

/* Badge */
#cart-count {
  position: absolute;
  top: -6px;
  right: -6px;

  font-size: 10px;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 50%;
}

/* Hide on tablet & desktop */
@media (min-width: 768px) {
  #nav-cart {
    display: none !important;
  }
}

/* Smaller phones */
@media (max-width: 360px) {
  #nav-cart i {
    font-size: 24px;
  }
}
