/* ═══════════════════════════════════════
   JELDEEX — Mobile Floating Action Button
   Shoe icon + cart counter
   ═══════════════════════════════════════ */

/* Only visible on mobile (≤ 768px) */
#jlx-mobile-fab {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999990;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #111111;
  color: #ffffff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
#jlx-mobile-fab:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
}
#jlx-mobile-fab:active {
  transform: scale(0.95);
}

/* Shoe icon SVG */
#jlx-mobile-fab .jlx-fab-icon {
  width: 26px;
  height: 26px;
  display: block;
}
#jlx-mobile-fab .jlx-fab-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

/* Counter badge */
#jlx-mobile-fab .jlx-fab-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #ffffff;
  color: #111111;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 2px solid #111111;
  line-height: 1;
}

/* Hide badge when count is 0 */
#jlx-mobile-fab .jlx-fab-badge:empty,
#jlx-mobile-fab .jlx-fab-badge[data-count="0"] {
  display: none;
}

/* Show on mobile */
@media (max-width: 768px) {
  #jlx-mobile-fab {
    display: flex;
  }
}
