/* Cart floating button (force styling + top position) */
#dmCartFab{
  position: fixed !important;
  top: 92px !important;              /* άλλαξέ το αν το navbar σου είναι πιο ψηλό */
  right: 18px !important;
  z-index: 99999 !important;

  height: 50px !important;
  min-width: 120px !important;
  padding: 0 14px !important;

  display: none;                      /* το JS το γυρίζει σε inline-flex όταν έχει items */
  align-items: center !important;
  gap: 10px !important;

  border-radius: 14px !important;
  border: 1px solid #1f4bff !important;
  background: #1f4bff !important;
  color: #ffffff !important;

  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1 !important;

  box-shadow: 0 12px 26px rgba(31,75,255,.22) !important;
  cursor: pointer !important;
  user-select: none !important;
}

#dmCartFab:hover{
  background: #0b19ff !important;
  border-color: #0b19ff !important;
  transform: translateY(-1px) !important;
}

#dmCartFab i{
  font-size: 18px !important;
  line-height: 1 !important;
  color: #fff !important;
}

#dmCartFab .badge{
  margin-left: 2px !important;
  background: rgba(255,255,255,.18) !important;
  border: 1px solid rgba(255,255,255,.35) !important;
  color: #fff !important;
  font-weight: 900 !important;
  padding: 6px 10px !important;
}

@media (max-width: 575.98px){
  #dmCartFab{
    top: 70px !important;
    right: 12px !important;
    height: 46px !important;
    min-width: 110px !important;
  }
}